2017-11-21 14:47:49 +00:00
|
|
|
.tabnav-control {
|
2017-12-07 19:43:46 +00:00
|
|
|
padding: 0 !important;
|
|
|
|
margin: 0 !important;
|
|
|
|
font-size: 0;
|
2017-11-21 14:47:49 +00:00
|
|
|
|
|
|
|
> .tab {
|
|
|
|
@include ease-in();
|
2018-08-21 13:00:36 +01:00
|
|
|
@extend .text-truncate;
|
2017-11-21 14:47:49 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin: 0;
|
|
|
|
padding: 5px 15px;
|
|
|
|
background-color: $color-white;
|
|
|
|
color: $color-primary;
|
2017-12-07 19:43:46 +00:00
|
|
|
border: 1px solid $color-border;
|
2018-05-24 18:09:38 +01:00
|
|
|
font-weight: 500;
|
2017-11-21 14:47:49 +00:00
|
|
|
font-size: 1.1rem;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
2017-12-07 19:43:46 +00:00
|
|
|
line-height: 26px;
|
|
|
|
list-style-type: none;
|
|
|
|
margin-left: -4px; // remove whitespace inline block
|
2017-12-19 14:00:53 +00:00
|
|
|
margin-top: -1px; // ensure no double-border when tabs are stacked vertically on mobile device
|
2017-11-21 14:47:49 +00:00
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
@include border-radius-left(3px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
@include border-radius-right(3px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $color-primary-light;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-23 12:37:21 +01:00
|
|
|
> .tab-vertical {
|
|
|
|
display: block;
|
|
|
|
margin-left: 0;
|
|
|
|
|
|
|
|
&:first-of-type {
|
|
|
|
@include border-radius-top(3px);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
@include border-radius-bottom(3px);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-21 14:47:49 +00:00
|
|
|
> .selected {
|
|
|
|
background-color: $color-primary-light;
|
2018-05-24 18:09:38 +01:00
|
|
|
font-weight: 700;
|
2017-11-21 14:47:49 +00:00
|
|
|
}
|
|
|
|
}
|
2018-05-23 12:37:21 +01:00
|
|
|
|
|
|
|
.tabnav-control-centered {
|
|
|
|
margin: 0 auto !important;
|
|
|
|
}
|