ComunicWeb/assets/css/components/posts/form.css

86 lines
1.3 KiB
CSS
Raw Normal View History

2018-01-04 17:51:49 +00:00
/**
* Posts creation form
*
* @author Pierre HUBERT
*/
2018-01-05 10:23:07 +00:00
/**
* Message text form
*/
2018-01-04 17:51:49 +00:00
.post-form .new-message {
width: 100%;
min-height: 100px;
font-size: 14px;
line-height: 18px;
border: 1px solid #dddddd;
padding: 10px;
margin-bottom: 10px;
2018-01-04 18:39:22 +00:00
}
2018-01-05 10:23:07 +00:00
/**
* Message type chooser
*/
2018-01-05 08:11:41 +00:00
.post-form .post-types {
text-align: center;
}
.post-form .post-types label {
margin: 5px;
}
.post-form .post-form-choice input {
display: none;
}
2018-01-05 08:41:27 +00:00
.post-form .post-form-choice input:checked ~ span {
2018-01-05 08:11:41 +00:00
color: #72afd2;
font-size: 110%;
2018-01-05 08:41:27 +00:00
}
2018-01-05 10:23:07 +00:00
/**
* Post-types specific
*/
.post-form .post-image,
.post-form .post-youtube,
2018-01-05 16:44:42 +00:00
.post-form .post-movie,
.post-form .post-weblink,
.post-form .post-pdf,
.post-form .post-countdown,
.post-form .post-survey {
2018-01-05 10:23:07 +00:00
display: none;
}
2018-01-05 16:03:40 +00:00
.post-form .post-movie button {
margin-right: 5px;
}
.post-form .post-survey .select2-dropdown {
/* Hide select2 suggestions*/
display: none;
}
2018-01-05 10:23:07 +00:00
/**
* Visibility choice
*/
2018-01-05 08:41:27 +00:00
.post-form .post-visiblity-contener {
display: inline-block;
margin-right: 10px;
}
.post-form .post-visiblity-contener label {
margin-left: 5px;
}
.post-form .post-visiblity-contener input {
display: none;
}
.post-form .post-visiblity-contener span {
color: #b5bbc8;
}
.post-form .post-visiblity-contener input:checked ~ span {
color: #111111;
2018-01-04 17:51:49 +00:00
}