mirror of
https://github.com/plankanban/planka.git
synced 2025-08-01 03:25:26 +02:00
51 lines
790 B
SCSS
51 lines
790 B
SCSS
:global(#app) {
|
|
.colorButton {
|
|
float: left;
|
|
height: 40px;
|
|
margin: 4px;
|
|
padding: 0;
|
|
position: relative;
|
|
width: 49.6px;
|
|
|
|
&:hover {
|
|
opacity: 0.9;
|
|
}
|
|
}
|
|
|
|
.colorButtonActive:before {
|
|
bottom: 3px;
|
|
color: #ffffff;
|
|
content: "Г";
|
|
font-size: 18px;
|
|
line-height: 36px;
|
|
position: absolute;
|
|
right: 6px;
|
|
text-align: center;
|
|
text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
|
|
top: 0;
|
|
transform: rotate(-135deg);
|
|
width: 36px;
|
|
}
|
|
|
|
.colorButtons {
|
|
margin: -4px;
|
|
padding-bottom: 16px;
|
|
|
|
&:after {
|
|
content: "";
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
}
|
|
|
|
.field {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.text {
|
|
color: #444444;
|
|
font-size: 12px;
|
|
font-weight: bold;
|
|
padding-bottom: 6px;
|
|
}
|
|
}
|