mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-02 17:48:50 -04:00
35 lines
594 B
SCSS
35 lines
594 B
SCSS
// Details
|
|
// ==========================================================================
|
|
|
|
details {
|
|
display: block;
|
|
|
|
summary {
|
|
display: inline-block;
|
|
color: $govuk-blue;
|
|
cursor: pointer;
|
|
position: relative;
|
|
margin-bottom: em(5);
|
|
|
|
&:hover {
|
|
color: $link-hover-colour;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 3px solid $focus-colour;
|
|
}
|
|
}
|
|
|
|
// Underline only summary text (not the arrow)
|
|
.summary {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
// Match fallback arrow spacing with -webkit default
|
|
.arrow {
|
|
margin-right: .35em;
|
|
font-style: normal;
|
|
}
|
|
|
|
}
|