2020-05-29 19:31:19 +05:00
|
|
|
:global(#app) {
|
|
|
|
.button {
|
|
|
|
background: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
outline: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
background: #dce0e4;
|
|
|
|
border: none;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #6a808b;
|
|
|
|
display: inline-block;
|
|
|
|
outline: none;
|
|
|
|
text-align: left;
|
|
|
|
transition: background 0.3s ease;
|
|
|
|
vertical-align: top;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapperHoverable:hover {
|
|
|
|
background: #d2d8dc;
|
|
|
|
color: #17394d;
|
|
|
|
}
|
|
|
|
|
2024-08-12 16:29:50 +00:00
|
|
|
.wrapperGroup {
|
|
|
|
display: flex;
|
|
|
|
align-items: stretch;
|
|
|
|
justify-content: stretch;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overdue {
|
|
|
|
background: #db2828;
|
|
|
|
color: #ffffff;
|
|
|
|
&.wrapperHoverable:hover {
|
|
|
|
background: #d01919;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.soon {
|
|
|
|
background: #fbbd08;
|
|
|
|
color: #ffffff;
|
|
|
|
&.wrapperHoverable:hover {
|
|
|
|
background: #eaae00;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.completed {
|
|
|
|
background: #21ba45;
|
|
|
|
color: #ffffff;
|
|
|
|
&.wrapperHoverable:hover {
|
|
|
|
background: #16ab39;
|
|
|
|
color: #ffffff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 19:31:19 +05:00
|
|
|
/* Sizes */
|
|
|
|
|
|
|
|
.wrapperTiny {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 0px 6px;
|
2024-08-12 16:29:50 +00:00
|
|
|
&.wrapperCheckbox {
|
|
|
|
padding-right: 6px;
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrapperSmall {
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 2px 6px;
|
2024-08-12 16:29:50 +00:00
|
|
|
&.wrapperCheckbox {
|
|
|
|
padding-right: 6px;
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
.wrapperMedium {
|
|
|
|
line-height: 20px;
|
|
|
|
padding: 6px 12px;
|
|
|
|
}
|
2024-08-12 16:29:50 +00:00
|
|
|
|
|
|
|
.wrapperCheckbox {
|
|
|
|
padding-right: 12px;
|
|
|
|
border-top-right-radius: 0;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.checkbox {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.wrapperButton {
|
|
|
|
border-top-left-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
}
|
2020-05-29 19:31:19 +05:00
|
|
|
}
|