Spaces:
Sleeping
Sleeping
File size: 2,068 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | @import '../styles/z-index';
.ValueSelector {
width: 100%;
border-radius: var(--default-rad);
color: rgb(var(--center-channel-color-rgb));
display: flex;
min-width: 180px;
> .Label {
margin: 0 10px;
max-width: calc(100% - 10px);
&.empty {
color: rgba(var(--center-channel-color-rgb), 0.6);
}
}
.Label {
display: flex;
text-overflow: ellipsis;
overflow: hidden;
border-radius: var(--default-rad);
max-width: 100%;
.Label-text {
flex-grow: 1;
}
.IconButton.delete-value {
@include z-index(value-selector-delete);
width: 16px;
height: 16px;
flex: 0 0 auto;
i {
font-size: 16px;
}
}
}
.Label-no-padding {
padding-top: 0;
padding-bottom: 0;
}
.Label-no-margin {
margin: 0;
}
.Label-single-select {
margin-bottom: 0;
}
.Label-text {
display: inline-block;
text-overflow: ellipsis;
overflow: hidden;
max-width: 250px;
}
.value-menu-option {
display: flex;
width: 100%;
justify-content: center;
align-items: center;
.label-container {
flex-grow: 1;
display: flex;
}
.MenuWrapper {
display: flex;
align-self: flex-end;
.IconButton {
background-color: unset;
&:hover {
background-color: rgba(var(--center-channel-color-rgb), 0.1);
}
}
}
}
.ValueSelector__menu-list {
overflow-y: unset;
overflow-x: unset;
}
}
.label-container > .Label {
max-width: 600px;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
}
.octo-property-value > .Label {
max-width: 200px;
overflow: hidden;
text-overflow: ellipsis;
display: inline-block;
}
|