mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
52 lines
886 B
SCSS
52 lines
886 B
SCSS
|
:global(#app) {
|
||
|
.editButton {
|
||
|
background: transparent;
|
||
|
box-shadow: none;
|
||
|
flex: 0 0 auto;
|
||
|
font-weight: normal;
|
||
|
margin: 0;
|
||
|
padding: 8px 10px;
|
||
|
text-decoration: underline;
|
||
|
|
||
|
&:hover {
|
||
|
background: #e9e9e9;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.labelButton {
|
||
|
color: #fff;
|
||
|
flex: 1 1 auto;
|
||
|
font-size: 14px;
|
||
|
font-weight: bold;
|
||
|
overflow: hidden;
|
||
|
padding: 8px 32px 8px 10px;
|
||
|
position: relative;
|
||
|
text-align: left;
|
||
|
text-overflow: ellipsis;
|
||
|
|
||
|
&:hover {
|
||
|
opacity: 0.9;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.labelButtonActive:before {
|
||
|
bottom: 1px;
|
||
|
content: "Г";
|
||
|
font-size: 18px;
|
||
|
font-weight: normal;
|
||
|
line-height: 36px;
|
||
|
position: absolute;
|
||
|
right: 2px;
|
||
|
text-align: center;
|
||
|
transform: rotate(-135deg);
|
||
|
width: 36px;
|
||
|
}
|
||
|
|
||
|
.wrapper {
|
||
|
display: flex;
|
||
|
margin-bottom: 4px;
|
||
|
max-width: 280px;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|