mirror of
https://github.com/wagtail/wagtail.git
synced 2024-11-28 17:13:31 +01:00
149 lines
3.1 KiB
SCSS
149 lines
3.1 KiB
SCSS
.tab-nav {
|
|
@include row();
|
|
padding: 0;
|
|
background: $color-grey-4;
|
|
|
|
li {
|
|
list-style-type: none;
|
|
width: 33%;
|
|
float: left;
|
|
padding: 0;
|
|
position: relative;
|
|
margin-right: 1px;
|
|
|
|
&:first-of-type {
|
|
padding-left: 1.2em;
|
|
}
|
|
}
|
|
|
|
a {
|
|
@include transition(border-color 0.2s ease);
|
|
background-color: $color-teal-darker;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
font-size: 1.2em;
|
|
text-decoration: none;
|
|
display: block;
|
|
padding: 0.7em;
|
|
color: $color-white;
|
|
border-top: 0.3em solid $color-teal-darker;
|
|
max-height: 1.2em;
|
|
overflow: hidden;
|
|
|
|
&:hover {
|
|
color: $color-white;
|
|
border-top-color: darken($color-teal-darker, 8);
|
|
}
|
|
}
|
|
|
|
a.errors {
|
|
&:after {
|
|
border-radius: 50px;
|
|
box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
|
|
position: absolute;
|
|
right: -0.5em;
|
|
top: -0.5em;
|
|
z-index: 5;
|
|
min-width: 0.9em;
|
|
color: $color-white;
|
|
background: $color-red;
|
|
content: attr(data-count);
|
|
padding: 0 0.3em;
|
|
line-height: 1.4em;
|
|
text-align: center;
|
|
font-size: 0.8em;
|
|
}
|
|
}
|
|
|
|
li.active a {
|
|
box-shadow: none;
|
|
color: $color-grey-1;
|
|
background-color: $color-white;
|
|
border-top: 0.3em solid $color-grey-1;
|
|
}
|
|
|
|
li.settings a {
|
|
&:before {
|
|
@include font-smoothing;
|
|
font-family: wagtail;
|
|
vertical-align: middle;
|
|
text-transform: none;
|
|
content: 'w';
|
|
margin-right: 0.5em;
|
|
font-size: 1.2em;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
|
|
// For cases where tab-nav should merge with header
|
|
&.merged {
|
|
margin-top: 0;
|
|
background-color: $color-header-bg;
|
|
}
|
|
}
|
|
|
|
.tab-content {
|
|
section {
|
|
display: none;
|
|
padding-top: 1em;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.page-locked & {
|
|
cursor: not-allowed;
|
|
user-select: none;
|
|
|
|
> * {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
.tab-nav {
|
|
// For cases where tab-nav should merge with header
|
|
&.merged {
|
|
background-color: $color-header-bg;
|
|
}
|
|
|
|
li {
|
|
width: auto;
|
|
padding: 0;
|
|
margin-left: 0.7em;
|
|
}
|
|
|
|
a {
|
|
padding-left: $desktop-nice-padding - 10;
|
|
padding-right: $desktop-nice-padding - 10;
|
|
}
|
|
|
|
li.settings a {
|
|
padding-left: 2em;
|
|
padding-right: 2em;
|
|
}
|
|
}
|
|
|
|
.modal-content .tab-nav li {
|
|
padding: 0;
|
|
min-width: 0;
|
|
|
|
&:first-of-type {
|
|
padding-left: 2.5em;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(xs) {
|
|
// To allow tabs on the edit page to be editable
|
|
.tab-nav li:first-of-type {
|
|
padding-left: 1.6em;
|
|
}
|
|
|
|
.tab-nav li {
|
|
width: 25%;
|
|
}
|
|
}
|