2020-04-07 12:18:10 +02:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2015-2016 Andrey Antukh <niwi@niwi.nz>
|
|
|
|
// Copyright (c) 2015-2016 Juan de la Cruz <delacruzgarciajuan@gmail.com>
|
|
|
|
|
|
|
|
.align-options {
|
|
|
|
display: flex;
|
|
|
|
border-bottom: solid 1px $color-gray-60;
|
2020-04-09 09:57:24 +02:00
|
|
|
height: 37px;
|
|
|
|
padding: 0 $x-small;
|
|
|
|
|
|
|
|
.align-group {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-evenly;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
border-right: solid 1px $color-gray-60;
|
|
|
|
}
|
|
|
|
}
|
2020-04-07 12:18:10 +02:00
|
|
|
|
|
|
|
.align-button {
|
|
|
|
cursor: pointer;
|
2020-04-09 09:57:24 +02:00
|
|
|
padding: $small $x-small;
|
2020-04-07 12:18:10 +02:00
|
|
|
svg {
|
|
|
|
height: 16px;
|
|
|
|
width: 16px;
|
|
|
|
fill: $color-gray-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-primary;
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-50;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
background-color: transparent;
|
|
|
|
cursor: default;
|
|
|
|
svg {
|
|
|
|
fill: $color-gray-dark;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|