You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
554 B
40 lines
554 B
.network-display {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
padding: 0 10px;
|
|
border-radius: 4px;
|
|
min-height: 25px;
|
|
user-select: none;
|
|
|
|
&--disabled {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&.chip {
|
|
margin: 0;
|
|
max-width: 100%;
|
|
}
|
|
|
|
& .chip__label {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
& .chip__left-icon {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
& .chip__right-icon {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
&__icon {
|
|
display: block;
|
|
}
|
|
|
|
&--clickable {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|