You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.6 KiB
76 lines
1.6 KiB
.app-tab-navigation { |
|
@include govuk-font(19, $weight: bold); |
|
@include govuk-responsive-margin(6, "bottom"); |
|
} |
|
|
|
.app-tab-navigation__list { |
|
@include govuk-clearfix; |
|
left: govuk-spacing(-3); |
|
list-style: none; |
|
margin: 0; |
|
padding: 0; |
|
position: relative; |
|
right: govuk-spacing(-3); |
|
width: calc(100% + #{govuk-spacing(6)}); |
|
|
|
@include govuk-media-query($from: tablet) { |
|
box-shadow: inset 0 -1px 0 $govuk-border-colour; |
|
} |
|
} |
|
|
|
.app-tab-navigation__item { |
|
box-sizing: border-box; |
|
display: block; |
|
line-height: 40px; |
|
height: 40px; |
|
padding: 0 govuk-spacing(3); |
|
|
|
@include govuk-media-query($from: tablet) { |
|
box-shadow: none; |
|
display: block; |
|
float: left; |
|
line-height: 50px; |
|
height: 50px; |
|
padding: 0 govuk-spacing(3); |
|
position: relative; |
|
} |
|
} |
|
|
|
.app-tab-navigation__item--current { |
|
@include govuk-media-query($until: tablet) { |
|
border-left: 4px solid $govuk-link-colour; |
|
padding-left: 11px; |
|
} |
|
|
|
@include govuk-media-query($from: tablet) { |
|
border-bottom: 4px solid $govuk-link-colour; |
|
padding-left: govuk-spacing(3); |
|
} |
|
} |
|
|
|
.app-tab-navigation__link { |
|
@include govuk-link-common; |
|
@include govuk-link-style-no-visited-state; |
|
@include govuk-link-style-no-underline; |
|
@include govuk-typography-weight-bold; |
|
|
|
&:not(:focus):hover { |
|
color: $govuk-link-colour; |
|
} |
|
|
|
// Extend the touch area of the link to the list |
|
&:after { |
|
bottom: 0; |
|
content: ""; |
|
left: 0; |
|
position: absolute; |
|
right: 0; |
|
top: 0; |
|
} |
|
} |
|
|
|
.app-tab-navigation__item--current .app-tab-navigation__link { |
|
&:hover { |
|
text-decoration: none; |
|
} |
|
}
|
|
|