1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 13:19:44 +02:00
planka/client/src/components/DueDate/DueDate.module.scss

65 lines
941 B
SCSS
Raw Normal View History

:global(#app) {
.button {
background: transparent;
border: none;
cursor: pointer;
display: inline-block;
outline: none;
padding: 0;
}
2024-08-12 23:17:17 +02:00
.statusIcon {
line-height: 1;
margin: 0 0 0 8px;
}
.wrapper {
background: #dce0e4;
border-radius: 3px;
color: #6a808b;
display: inline-block;
transition: background 0.3s ease;
}
.wrapperHoverable:hover {
background: #d2d8dc;
color: #17394d;
}
/* Sizes */
.wrapperTiny {
font-size: 12px;
line-height: 20px;
padding: 0px 6px;
}
.wrapperSmall {
font-size: 12px;
line-height: 20px;
padding: 2px 6px;
}
.wrapperMedium {
line-height: 20px;
padding: 6px 12px;
}
2024-08-12 23:17:17 +02:00
/* Statuses */
.wrapperDueSoon {
background: #f2711c;
color: #fff;
}
2024-08-12 23:17:17 +02:00
.wrapperOverdue {
background: #db2828;
color: #fff;
}
2024-08-12 23:17:17 +02:00
.wrapperCompleted {
background: #21ba45;
color: #fff;
}
}