48 lines
867 B
SCSS
48 lines
867 B
SCSS
@import "../common/PredefinedMixins.scss";
|
|
@import "./partial.scss";
|
|
@import "./Variables.scss";
|
|
|
|
.editor-radio-tab-btn {
|
|
@include partial-column-center;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
-webkit-tap-highlight-color: transparent;
|
|
cursor: pointer;
|
|
|
|
.content {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
input {
|
|
display: none;
|
|
}
|
|
|
|
.tab {
|
|
@include partial-ellipsis;
|
|
width: 100%;
|
|
height: 100%;
|
|
padding: 4px 8px;
|
|
font-size: 14px;
|
|
font-weight: 300;
|
|
line-height: 18px;
|
|
|
|
font-size: 14px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 20px;
|
|
letter-spacing: 0;
|
|
text-align: center;
|
|
|
|
color: $radio_tab_fg;
|
|
background-color: $radio_tab_bg;
|
|
border-bottom: 5px solid $radio_tab_border_color;
|
|
|
|
&.checked {
|
|
border-bottom-color: $radio_tab_border_color_checked;
|
|
}
|
|
|
|
}
|
|
}
|