2022-02-04 11:57:55 +00:00
|
|
|
@use 'sass:math';
|
2022-04-08 00:33:48 +00:00
|
|
|
@use 'sass:color';
|
2021-12-23 02:42:22 +00:00
|
|
|
|
2015-09-25 13:17:39 +00:00
|
|
|
header {
|
2022-04-08 16:36:47 +00:00
|
|
|
@apply w-bg-grey-50 w-text-primary w-border-b w-border-grey-100 w-py-4 w-mb-8;
|
2022-02-04 11:57:55 +00:00
|
|
|
|
|
|
|
a {
|
2022-04-08 16:36:47 +00:00
|
|
|
@apply w-text-primary w-underline;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
h1,
|
|
|
|
h2 {
|
2022-04-08 16:36:47 +00:00
|
|
|
@apply w-text-primary;
|
2022-02-04 11:57:55 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2022-04-08 16:36:47 +00:00
|
|
|
display: inline-flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
2014-06-10 13:33:08 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.icon:before {
|
|
|
|
width: 1em;
|
|
|
|
display: none;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 0.4em;
|
2022-02-04 11:57:55 +00:00
|
|
|
font-size: 1.5em;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-04-08 16:36:47 +00:00
|
|
|
|
|
|
|
span {
|
|
|
|
margin-inline-start: 0.3125rem;
|
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col {
|
|
|
|
float: left;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 2em;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.left {
|
|
|
|
float: left;
|
2022-04-08 16:36:47 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
flex-wrap: wrap;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.hasform &:first-child {
|
|
|
|
padding-bottom: 0.5em;
|
|
|
|
float: none;
|
2017-08-18 00:28:38 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.right {
|
2022-03-15 13:21:06 +00:00
|
|
|
text-align: end;
|
2022-02-04 11:57:55 +00:00
|
|
|
float: right;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-03-07 17:06:19 +00:00
|
|
|
.search-form .icon {
|
|
|
|
@include svg-icon(1.3rem);
|
2022-04-08 00:33:48 +00:00
|
|
|
color: color.adjust($color-white, $lightness: -20%);
|
2022-03-07 17:06:19 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0.3em;
|
2022-03-15 13:21:06 +00:00
|
|
|
// Remove once we drop support for Safari 13.
|
|
|
|
// stylelint-disable-next-line property-disallowed-list
|
2022-03-07 17:06:19 +00:00
|
|
|
left: 0.5em;
|
2022-03-15 13:21:06 +00:00
|
|
|
inset-inline-start: 0.5em;
|
2022-03-07 17:06:19 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
// For case where content below header should merge with it
|
|
|
|
&.merged {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.header-with-breadcrumb {
|
|
|
|
padding-top: 0;
|
2022-01-14 17:14:19 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.breadcrumb {
|
|
|
|
margin-bottom: 1rem;
|
2022-03-15 13:21:06 +00:00
|
|
|
padding-inline-start: math.div(
|
2022-02-04 11:57:55 +00:00
|
|
|
$desktop-nice-padding,
|
|
|
|
2
|
2022-03-15 13:21:06 +00:00
|
|
|
); // rather than padding-inline-start: revert;
|
2020-06-15 17:02:32 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2020-06-15 17:02:32 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.no-border {
|
|
|
|
border: 0;
|
2021-12-21 11:13:08 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
@include media-breakpoint-down(xs) {
|
|
|
|
// To all hamburger menu to be visible
|
2022-03-15 13:21:06 +00:00
|
|
|
padding-inline-start: 1.6em;
|
|
|
|
padding-inline-end: 1.6em;
|
2022-02-04 11:57:55 +00:00
|
|
|
padding-top: 11px;
|
2021-12-21 11:13:08 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.nice-padding {
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-start: -$desktop-nice-padding;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-27 07:28:43 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.merged.no-border {
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2020-06-15 17:02:32 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&.no-v-padding {
|
|
|
|
padding-top: 0;
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
2016-10-27 07:28:43 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.button {
|
|
|
|
background-color: $color-teal-darker;
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&:hover {
|
|
|
|
background-color: $color-teal-dark;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
label {
|
|
|
|
@include visuallyhidden();
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
input[type='text'],
|
|
|
|
select {
|
|
|
|
border-width: 0;
|
2018-01-08 14:09:54 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&:focus {
|
|
|
|
background-color: $color-white;
|
2018-01-08 14:09:54 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2018-01-08 14:09:54 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.error-message {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.fields {
|
|
|
|
margin-top: -0.5em;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
li {
|
|
|
|
padding-bottom: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.field {
|
|
|
|
padding: 0;
|
2019-05-23 14:55:14 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2019-05-23 14:55:14 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.field-content {
|
|
|
|
width: auto;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.last-updated {
|
|
|
|
ul {
|
|
|
|
padding: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2014-05-13 16:03:31 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
li {
|
|
|
|
display: inline;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 2em;
|
2014-05-13 16:03:31 +00:00
|
|
|
}
|
2021-08-18 14:55:11 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.avatar.small {
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-start: 0;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2021-08-18 14:55:11 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
a {
|
|
|
|
font-weight: bold;
|
2021-08-18 14:55:11 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 07:28:14 +00:00
|
|
|
// Media for Windows High Contrast
|
|
|
|
@media (forced-colors: $media-forced-colours) {
|
2022-02-04 11:57:55 +00:00
|
|
|
header .field-content {
|
|
|
|
border: 0.1em solid $system-color-link-text;
|
|
|
|
}
|
2021-10-06 07:28:14 +00:00
|
|
|
}
|
|
|
|
|
2018-11-04 21:46:42 +00:00
|
|
|
@include media-breakpoint-up(sm) {
|
2022-02-04 11:57:55 +00:00
|
|
|
header {
|
|
|
|
.left {
|
|
|
|
float: left;
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 0;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
&:first-child {
|
|
|
|
padding-bottom: 0;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.second {
|
|
|
|
clear: none;
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.right,
|
|
|
|
.left {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
h1.icon:before {
|
|
|
|
display: inline-block;
|
|
|
|
}
|
2014-05-13 14:51:28 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col3 {
|
|
|
|
@include column(3);
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col3.actionbutton {
|
|
|
|
width: auto;
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col6 {
|
|
|
|
@include column(6);
|
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
|
2022-02-04 11:57:55 +00:00
|
|
|
.col9 {
|
|
|
|
@include column(9);
|
2014-05-13 14:51:28 +00:00
|
|
|
}
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2015-11-03 12:15:33 +00:00
|
|
|
}
|
2017-07-11 13:20:14 +00:00
|
|
|
|
|
|
|
.header-title {
|
2022-02-04 11:57:55 +00:00
|
|
|
@include media-breakpoint-down(xs) {
|
2022-03-15 13:21:06 +00:00
|
|
|
padding-inline-start: $mobile-nav-indent;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
@include svg-icon();
|
2022-03-15 13:21:06 +00:00
|
|
|
margin-inline-end: 0.5em;
|
2022-02-04 11:57:55 +00:00
|
|
|
}
|
2017-07-11 13:20:14 +00:00
|
|
|
}
|