2020-03-19 12:54:30 +01:00
|
|
|
.editable-label {
|
2022-01-12 11:27:43 +01:00
|
|
|
display: flex;
|
2020-03-19 12:54:30 +01:00
|
|
|
|
2022-01-12 11:27:43 +01:00
|
|
|
&.is-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-03-19 12:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.editable-label-input {
|
2022-01-12 11:27:43 +01:00
|
|
|
border: 0;
|
|
|
|
height: 30px;
|
|
|
|
padding: 5px;
|
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
|
|
background-color: $color-white;
|
2020-03-19 12:54:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.editable-label-close {
|
2022-01-12 11:27:43 +01:00
|
|
|
background-color: $color-white;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 3px 5px;
|
2020-03-19 12:54:30 +01:00
|
|
|
|
2022-01-12 11:27:43 +01:00
|
|
|
& svg {
|
|
|
|
fill: $color-gray-30;
|
|
|
|
height: 15px;
|
|
|
|
transform: rotate(45deg) translateY(7px);
|
|
|
|
width: 15px;
|
|
|
|
margin: 0;
|
|
|
|
}
|
2020-03-19 12:54:30 +01:00
|
|
|
}
|