mirror of
https://github.com/plankanban/planka.git
synced 2025-07-25 08:09:44 +02:00
54 lines
869 B
SCSS
54 lines
869 B
SCSS
:global(#app) {
|
|
.button {
|
|
background: transparent;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
outline: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.wrapper {
|
|
background: #dce0e4;
|
|
border-radius: 3px;
|
|
color: #6a808b;
|
|
display: inline-block;
|
|
font-variant-numeric: tabular-nums;
|
|
transition: background 0.3s ease;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.wrapperActive {
|
|
background: #21ba45;
|
|
color: #fff;
|
|
|
|
&.wrapperHoverable:hover {
|
|
background: #16ab39;
|
|
color: #fff;
|
|
}
|
|
}
|
|
|
|
.wrapperHoverable:hover {
|
|
background: #d2d8dc;
|
|
color: #17394d;
|
|
}
|
|
|
|
/* Sizes */
|
|
|
|
.wrapperTiny {
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
padding: 0 6px;
|
|
}
|
|
|
|
.wrapperSmall {
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
padding: 2px 6px;
|
|
}
|
|
|
|
.wrapperMedium {
|
|
line-height: 20px;
|
|
padding: 6px 12px;
|
|
}
|
|
}
|