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,
|
|
|
|
.post-form .post-movie {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-01-05 16:03:40 +00:00
|
|
|
.post-form .post-movie button {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|