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.
25 lines
498 B
25 lines
498 B
3 years ago
|
// mixins
|
||
|
.segmented-disabled-item {
|
||
|
&,
|
||
|
&:hover,
|
||
|
&:focus {
|
||
|
color: @disabled-color;
|
||
|
cursor: not-allowed;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.segmented-item-selected {
|
||
|
background-color: @segmented-selected-bg;
|
||
|
border-radius: @border-radius-base;
|
||
|
box-shadow: 0 2px 8px -2px fade(@black, 5%), 0 1px 4px -1px fade(@black, 7%),
|
||
|
0 0 1px 0 fade(@black, 8%);
|
||
|
}
|
||
|
|
||
|
.segmented-text-ellipsis {
|
||
|
overflow: hidden;
|
||
|
// handle text ellipsis
|
||
|
white-space: nowrap;
|
||
|
text-overflow: ellipsis;
|
||
|
word-break: keep-all;
|
||
|
}
|