wagtail/client/scss/components/_tabs.scss

140 wiersze
2.8 KiB
SCSS
Czysty Zwykły widok Historia

.tab-nav {
2014-06-19 11:25:53 +00:00
@include row();
padding: 0;
background: $color-grey-4;
li {
list-style-type: none;
width: 33%;
float: left;
padding: 0;
position: relative;
margin-right: 2px;
2016-10-25 18:22:38 +00:00
&:first-of-type {
padding-left: $desktop-nice-padding;
margin-left: 0;
2016-10-25 18:22:38 +00:00
}
}
2015-11-03 12:15:33 +00:00
h2 {
margin: 0;
font-size: inherit;
}
a {
@include transition(border-color 0.2s ease);
background-color: $color-teal-darker;
text-transform: uppercase;
2020-06-16 15:53:57 +00:00
font-weight: 600;
text-decoration: none;
display: block;
2020-06-18 16:18:08 +00:00
padding: 0.6em 0.7em 0.8em;
2015-11-03 12:15:33 +00:00
color: $color-white;
border-top: 0.3em solid $color-teal-darker;
2020-06-16 15:53:57 +00:00
max-height: 1.44em;
overflow: hidden;
&:hover {
2015-11-03 12:15:33 +00:00
color: $color-white;
border-top-color: rgba(0, 0, 0, 0.35);
}
}
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;
2015-11-03 12:15:33 +00:00
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;
}
2014-02-06 16:41:52 +00:00
}
li.active a {
box-shadow: none;
color: $color-grey-1;
2015-11-03 12:15:33 +00:00
background-color: $color-white;
border-top: 0.3em solid $color-grey-1;
}
2015-11-03 12:15:33 +00:00
// For cases where tab-nav should merge with header
&.merged {
margin-top: 0;
background-color: $color-header-bg;
}
}
2015-11-03 12:15:33 +00:00
.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;
}
a {
2020-06-16 15:53:57 +00:00
padding-left: $mobile-nice-padding;
padding-right: $mobile-nice-padding;
}
li.settings a {
padding-left: 2em;
padding-right: 2em;
2014-06-19 11:25:53 +00:00
}
}
.modal-content .tab-nav li {
padding: 0;
min-width: 0;
2016-10-25 18:22:38 +00:00
&:first-of-type {
2020-06-16 15:53:57 +00:00
padding-left: $desktop-nice-padding;
2016-10-25 18:22:38 +00:00
}
}
2015-11-03 12:15:33 +00:00
}
2016-10-27 19:27:35 +00:00
@include media-breakpoint-down(xs) {
2016-10-27 19:27:35 +00:00
// To allow tabs on the edit page to be editable
.tab-nav li:first-of-type {
padding-left: 1.6em;
}
.tab-nav li {
width: auto;
2016-10-27 19:27:35 +00:00
}
}