40 lines
563 B
Plaintext
40 lines
563 B
Plaintext
![]() |
// TabPanel
|
||
|
|
||
|
.mce-tabs {
|
||
|
display: block;
|
||
|
border-bottom: 1px solid @tab-border;
|
||
|
}
|
||
|
|
||
|
.mce-tab {
|
||
|
.inline-block();
|
||
|
border: 1px solid @tab-border;
|
||
|
border-width: 0 1px 0 0;
|
||
|
background: @tab-bg;
|
||
|
padding: 8px;
|
||
|
text-shadow: @text-shadow;
|
||
|
height: 13px;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.mce-tab:hover {
|
||
|
background: @tab-bg-hover;
|
||
|
}
|
||
|
|
||
|
.mce-tab.mce-active {
|
||
|
background: @tab-bg-active;
|
||
|
border-bottom-color: transparent;
|
||
|
margin-bottom: -1px;
|
||
|
height: 14px;
|
||
|
}
|
||
|
|
||
|
// RTL
|
||
|
|
||
|
.mce-rtl .mce-tabs {
|
||
|
text-align: right;
|
||
|
direction: rtl;
|
||
|
}
|
||
|
|
||
|
.mce-rtl .mce-tab {
|
||
|
border-width: 0 0 0 1px;
|
||
|
}
|