154 lines
No EOL
2.6 KiB
SCSS
154 lines
No EOL
2.6 KiB
SCSS
#composer.zoom-in #framer {
|
|
-webkit-animation: ease-over 0.2s;
|
|
-moz-animation: ease-over 0.2s;
|
|
-ms-animation: ease-over 0.2s;
|
|
}
|
|
|
|
#composer.zoom-out #framer {
|
|
-webkit-animation: ease-out 0.2s;
|
|
-moz-animation: ease-out 0.2s;
|
|
-ms-animation: ease-out 0.2s;
|
|
}
|
|
|
|
#composer #framer {
|
|
padding-top : 100px;
|
|
}
|
|
|
|
#framer {
|
|
color : #fff;
|
|
background-color : rgba(0,0,0,0.8);
|
|
z-index : 200;
|
|
|
|
position : absolute;
|
|
left : 0;
|
|
top : 0;
|
|
|
|
height : 100%;
|
|
width : 100%;
|
|
|
|
overflow : auto;
|
|
|
|
.new_picture{
|
|
margin-top: 4%;
|
|
}
|
|
|
|
.photos{
|
|
margin-top: 5px;
|
|
}
|
|
|
|
legend {
|
|
color : #fff;
|
|
text-align : left;
|
|
}
|
|
|
|
textarea#post_text{
|
|
height: 200px;
|
|
padding : 10px;
|
|
}
|
|
|
|
.flow-controls {
|
|
padding: 20px 0;
|
|
max-height: 68px;
|
|
|
|
.aspect-selector {
|
|
float: left;
|
|
|
|
i, input {
|
|
display: none;
|
|
}
|
|
|
|
input:checked + label i {
|
|
display: inline-block;
|
|
position: absolute;
|
|
left : 3px;
|
|
margin-top : 1px;
|
|
}
|
|
|
|
label {
|
|
span:not(.caret) {
|
|
padding-left: 21px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.service-selector {
|
|
float: left;
|
|
margin-left: 100px;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
text-align: left;
|
|
}
|
|
|
|
a.mood {
|
|
@include border-radius();
|
|
margin-right: 11px;
|
|
padding: 7px;
|
|
color: #999;
|
|
font-size: 14px;
|
|
line-height: 2em;
|
|
|
|
&#selected_mood {
|
|
background-color: #222;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: #222;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
// this is about the service toggle icons, there is a jasmine test that tests this in service_selector spec
|
|
// if you change this, check toggling the new publisher service broadcasts is still sensible
|
|
// the checkbox should be hidden, and in the off state the service icons should be lighter
|
|
// when the service icons are clicked they should be lighter, and toggle the hidden checkbox.
|
|
.magic-service-selector {
|
|
label { display : inline; }
|
|
|
|
img {
|
|
@include transition(opacity);
|
|
|
|
cursor : pointer;
|
|
height : 28px;
|
|
width : 28px;
|
|
}
|
|
|
|
input:not(:checked) + label {
|
|
img {
|
|
@include opacity(0.4);
|
|
}
|
|
}
|
|
|
|
input:checked + label {
|
|
&:hover img {
|
|
@include opacity(1);
|
|
}
|
|
}
|
|
|
|
input {
|
|
display : none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.new_photo .photo{
|
|
display: inline;
|
|
max-width: 200px;
|
|
max-height: 75px;
|
|
padding: 2px;
|
|
}
|
|
|
|
#photo_upload_button {
|
|
position: relative;
|
|
margin-bottom : 9px;
|
|
|
|
input{
|
|
@include opacity(0);
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
height:100%;
|
|
cursor : pointer;
|
|
}
|
|
} |