2017-07-18 02:21:45 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
2017-04-06 00:20:32 +08:00
|
|
|
|
|
|
|
.actionsbar,
|
|
|
|
.left,
|
|
|
|
.center {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left,
|
|
|
|
.center {
|
|
|
|
flex: 1;
|
2018-01-13 00:32:33 +08:00
|
|
|
justify-content: center;
|
2017-04-06 00:20:32 +08:00
|
|
|
|
|
|
|
> * {
|
2018-01-10 04:30:38 +08:00
|
|
|
margin: 0 $sm-padding-x;
|
2018-01-10 05:13:31 +08:00
|
|
|
|
|
|
|
@include mq($small-only) {
|
2018-01-10 23:44:21 +08:00
|
|
|
margin: 0 $sm-padding-y;
|
2018-01-10 05:13:31 +08:00
|
|
|
}
|
2017-04-06 00:20:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.left{
|
|
|
|
position: absolute;
|
2018-01-10 05:13:31 +08:00
|
|
|
@include mq($small-only) {
|
|
|
|
bottom: $sm-padding-x;
|
|
|
|
left: $sm-padding-x;
|
|
|
|
}
|
2017-04-06 00:20:32 +08:00
|
|
|
}
|
|
|
|
|
2018-01-10 23:44:21 +08:00
|
|
|
.centerWithActions {
|
2018-01-10 05:13:31 +08:00
|
|
|
@include mq($xsmall-only) {
|
2018-01-10 23:44:21 +08:00
|
|
|
position: absolute;
|
|
|
|
bottom: $sm-padding-x;
|
|
|
|
right: $sm-padding-x;
|
2018-01-10 05:13:31 +08:00
|
|
|
}
|
2017-04-06 00:20:32 +08:00
|
|
|
}
|
2017-11-13 20:24:06 +08:00
|
|
|
|
|
|
|
.button {
|
|
|
|
&:focus {
|
|
|
|
outline: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
span:first-child {
|
|
|
|
box-shadow: 0 2px 5px 0 rgb(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2017-11-21 18:50:20 +08:00
|
|
|
|
|
|
|
.emojiSelected {
|
|
|
|
span, i::before{
|
|
|
|
color: $color-primary;
|
|
|
|
}
|
|
|
|
}
|