jsketcher/modules/ui/components/TabSwitcher.less
2018-01-29 01:21:46 -08:00

35 lines
463 B
Text

@import "../styles/theme";
.root {
color: @font-color-suppressed;
}
.tab {
@border: 1px solid @border-color;
padding: 0.4rem 0.4rem 0.4rem 0.7rem;
cursor: pointer;
border-right: @border;
display: inline-block;
&:hover {
color: @font-color;
}
&.active {
background-color: @bg-color-alt;
color: @font-color;
}
&:first-child {
border-left: @border;
}
}
.expand:hover {
color: green;
}
.close:hover {
color: red;
}