2017-11-18 20:05:23 +01:00
|
|
|
@mixin fullwidth-gallery {
|
|
|
|
&.full-width {
|
2018-09-03 21:25:41 +02:00
|
|
|
margin-left: -14px;
|
|
|
|
margin-right: -14px;
|
2017-11-18 20:05:23 +01:00
|
|
|
width: inherit;
|
2017-11-22 04:00:07 +01:00
|
|
|
max-width: none;
|
2023-02-25 21:20:01 +01:00
|
|
|
border-radius: 0;
|
2017-11-18 20:05:23 +01:00
|
|
|
}
|
|
|
|
}
|
2018-12-18 17:56:08 +01:00
|
|
|
|
|
|
|
@mixin search-input() {
|
|
|
|
outline: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 100%;
|
|
|
|
box-shadow: none;
|
|
|
|
font-family: inherit;
|
|
|
|
background: $ui-base-color;
|
|
|
|
color: $darker-text-color;
|
2022-09-29 04:39:33 +02:00
|
|
|
border-radius: 4px;
|
2024-08-08 11:21:54 +02:00
|
|
|
border: 1px solid var(--background-border-color);
|
2024-01-25 16:41:31 +01:00
|
|
|
font-size: 17px;
|
|
|
|
line-height: normal;
|
2018-12-18 17:56:08 +01:00
|
|
|
margin: 0;
|
|
|
|
}
|
2019-02-15 18:21:00 +01:00
|
|
|
|
|
|
|
@mixin search-popout() {
|
|
|
|
background: $simple-background-color;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding: 10px 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
margin-top: 10px;
|
|
|
|
color: $light-text-color;
|
|
|
|
box-shadow: 2px 4px 15px rgba($base-shadow-color, 0.4);
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
text-transform: uppercase;
|
|
|
|
color: $light-text-color;
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: 500;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 4px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
em {
|
|
|
|
font-weight: 500;
|
|
|
|
color: $inverted-text-color;
|
|
|
|
}
|
|
|
|
}
|