2017-07-18 02:21:45 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
2017-04-06 00:20:32 +08:00
|
|
|
|
|
|
|
.actionsbar,
|
|
|
|
.left,
|
2018-12-15 04:16:15 +08:00
|
|
|
.center,
|
|
|
|
.right {
|
2017-04-06 00:20:32 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left,
|
2018-12-15 04:16:15 +08:00
|
|
|
.center,
|
|
|
|
.right {
|
2017-04-06 00:20:32 +08:00
|
|
|
flex: 1;
|
2018-01-13 00:32:33 +08:00
|
|
|
justify-content: center;
|
2017-04-06 00:20:32 +08:00
|
|
|
|
|
|
|
> * {
|
2018-10-19 04:37:14 +08:00
|
|
|
margin: 0 var(--sm-padding-x);
|
2018-01-10 05:13:31 +08:00
|
|
|
|
|
|
|
@include mq($small-only) {
|
2018-10-19 04:37:14 +08:00
|
|
|
margin: 0 var(--sm-padding-y);
|
2018-01-10 05:13:31 +08:00
|
|
|
}
|
2017-04-06 00:20:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-13 20:58:47 +08:00
|
|
|
.left {
|
2017-04-06 00:20:32 +08:00
|
|
|
position: absolute;
|
2018-01-10 05:13:31 +08:00
|
|
|
@include mq($small-only) {
|
2018-10-19 04:37:14 +08:00
|
|
|
bottom: var(--sm-padding-x);
|
|
|
|
left: var(--sm-padding-x);
|
2018-01-10 05:13:31 +08:00
|
|
|
}
|
2017-04-06 00:20:32 +08:00
|
|
|
}
|
|
|
|
|
2018-12-15 04:16:15 +08:00
|
|
|
.right {
|
|
|
|
position: absolute;
|
|
|
|
bottom: var(--sm-padding-x);
|
|
|
|
right: var(--sm-padding-x);
|
|
|
|
}
|
|
|
|
|
2018-01-10 23:44:21 +08:00
|
|
|
.centerWithActions {
|
2018-01-10 05:13:31 +08:00
|
|
|
@include mq($xsmall-only) {
|
2018-04-13 20:58:47 +08:00
|
|
|
justify-content: flex-end;
|
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 {
|
|
|
|
span:first-child {
|
|
|
|
box-shadow: 0 2px 5px 0 rgb(0, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
2018-11-28 20:59:03 +08:00
|
|
|
|
|
|
|
.btn {
|
|
|
|
span {
|
|
|
|
box-shadow: none;
|
|
|
|
background-color: transparent !important;
|
2019-03-23 06:45:44 +08:00
|
|
|
border-color: var(--color-white) !important;
|
2018-11-28 20:59:03 +08:00
|
|
|
}
|
2018-12-15 04:16:15 +08:00
|
|
|
}
|