2025-05-10 02:09:06 +02:00
|
|
|
/*!
|
|
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
|
|
*/
|
|
|
|
|
|
|
|
:global(#app) {
|
|
|
|
.menu {
|
|
|
|
margin: -7px -12px -5px;
|
|
|
|
width: calc(100% + 24px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menuItem {
|
|
|
|
margin: 0;
|
|
|
|
padding-left: 14px;
|
|
|
|
}
|
2025-07-17 15:23:53 +02:00
|
|
|
|
|
|
|
.menuItemIcon {
|
|
|
|
float: left;
|
|
|
|
margin: 0 0.5em 0 0;
|
|
|
|
}
|
2025-05-10 02:09:06 +02:00
|
|
|
}
|
2025-06-11 14:17:12 +03:00
|
|
|
|
|
|
|
.boardSelectStep {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boardButton {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
padding: 9px 0;
|
|
|
|
border: none;
|
|
|
|
border-radius: 0.28571429rem !important;
|
|
|
|
font-size: 15px;
|
|
|
|
color: #234;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
background: none;
|
|
|
|
transition: background 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.boardButton:hover,
|
|
|
|
.boardButton:focus {
|
|
|
|
background: #f4f6f8;
|
|
|
|
color: #16324a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.noBoards {
|
|
|
|
color: #888;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|