mirror of
https://github.com/plankanban/planka.git
synced 2025-07-20 05:39:43 +02:00
52 lines
814 B
CSS
52 lines
814 B
CSS
|
.menuItem {
|
||
|
border: none;
|
||
|
display: block;
|
||
|
margin: 0;
|
||
|
outline: 0;
|
||
|
padding: 4px;
|
||
|
text-align: left;
|
||
|
width: 100%;
|
||
|
}
|
||
|
|
||
|
.menuItem:hover {
|
||
|
background: rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
|
||
|
.menuItemActive {
|
||
|
background: transparent;
|
||
|
border-width: 0;
|
||
|
}
|
||
|
|
||
|
.menuItemActive:hover {
|
||
|
background: rgba(0, 0, 0, 0.05);
|
||
|
}
|
||
|
|
||
|
.menuItemText {
|
||
|
display: inline-block;
|
||
|
line-height: 32px;
|
||
|
position: relative;
|
||
|
width: calc(100% - 40px);
|
||
|
}
|
||
|
|
||
|
.menuItemTextActive:before {
|
||
|
bottom: 2px;
|
||
|
color: #798d99;
|
||
|
content: "Г";
|
||
|
font-size: 18px;
|
||
|
font-weight: normal;
|
||
|
line-height: 36px;
|
||
|
position: absolute;
|
||
|
right: 2px;
|
||
|
text-align: center;
|
||
|
text-shadow: -1px 1px 0 rgba(0, 0, 0, 0.2);
|
||
|
transform: rotate(-135deg);
|
||
|
width: 36px;
|
||
|
}
|
||
|
|
||
|
.user {
|
||
|
display: inline-block;
|
||
|
line-height: 32px;
|
||
|
padding-right: 8px;
|
||
|
width: 40px;
|
||
|
}
|