Sha256: f74c721d0445029338e52009d8441c19938317a83be9eb0c060b54c5de871eef
Contents?: true
Size: 1.21 KB
Versions: 4
Compression:
Stored size: 1.21 KB
Contents
/** * MUI Tabs module */ .mui-tabs { list-style: none; padding-left: 0; margin-bottom: 0; background-color: transparent; white-space: nowrap; > li { display: inline-block; > a { display: block; white-space: nowrap; text-transform: uppercase; font-weight: 500; font-size: 14px; color: $mui-tab-font-color; cursor: default; height: 48px; line-height: 48px; padding-left: 24px; padding-right: 24px; &:hover { text-decoration: none; } } &.mui-active { border-bottom: 2px solid $mui-tab-border-color-active; > a { @if $mui-tab-font-color-active == null { color: $mui-tab-font-color; } @else { color: $mui-tab-font-color-active; } } } } &.mui-tabs-justified { display: table; width: 100%; table-layout: fixed; > li { display: table-cell; > a { text-align: center; padding-left: 0px; padding-right: 0px; } } } } .mui-tab-content { > .mui-tab-pane { display: none; &.mui-active { display: block; } } } [data-mui-toggle="tab"] { @include mui-node-inserted(); }
Version data entries
4 entries across 4 versions & 1 rubygems