2018-01-12 12:27:57 +01:00
|
|
|
core-tabs {
|
|
|
|
.core-tabs-bar {
|
|
|
|
@include position(null, null, 0, 0);
|
|
|
|
z-index: $z-index-toolbar;
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
background: $core-top-tabs-background;
|
|
|
|
|
|
|
|
> a {
|
|
|
|
@extend .tab-button;
|
|
|
|
|
|
|
|
background: $core-top-tabs-background;
|
|
|
|
color: $core-top-tabs-color !important;
|
|
|
|
border-bottom: 1px solid $core-top-tabs-border;
|
|
|
|
font-size: 1.6rem;
|
|
|
|
|
|
|
|
&[aria-selected=true] {
|
|
|
|
color: $core-top-tabs-color-active !important;
|
|
|
|
border-bottom: 2px solid $core-top-tabs-color-active;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-19 12:07:05 +01:00
|
|
|
.core-tabs-content-container {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-01-24 11:35:49 +01:00
|
|
|
&.tabs-hidden {
|
|
|
|
.core-tabs-bar {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.core-tabs-content-container {
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-12 12:27:57 +01:00
|
|
|
core-tab {
|
|
|
|
display: none;
|
2018-01-19 12:07:05 +01:00
|
|
|
height: 100%;
|
2018-01-12 12:27:57 +01:00
|
|
|
|
|
|
|
&.selected {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-24 11:35:49 +01:00
|
|
|
|
|
|
|
.scroll-content.no-scroll {
|
|
|
|
overflow: hidden !important;
|
|
|
|
}
|