mediawiki-skins-Citizen/resources/skins.citizen.styles.search/search.less

185 lines
2.8 KiB
Plaintext
Raw Normal View History

2020-06-07 19:54:42 +00:00
//
// Citizen - Search styles
// https://starcitizen.tools
//
@import '../variables.less';
@import '../mixins.less';
@suggestion-max-width: 400px + @icon-box-size + @icon-padding * 2; // 454px
#typeahead-suggestions {
position: absolute;
top: @header-height;
z-index: 99999;
}
.suggestions-dropdown {
width: @suggestion-max-width;
max-width: calc( ~'100vw -'@icon-box-size + @icon-padding * 2 + @margin-side );
2020-06-08 05:13:24 +00:00
display: flex; // Needed to show margin
2020-06-08 05:14:17 +00:00
flex-direction: column;
2020-06-08 05:13:24 +00:00
background: @base-100;
.boxshadow(4);
2020-06-07 19:54:42 +00:00
}
.suggestion {
&-link {
2020-06-08 05:13:24 +00:00
padding: 8px 20px;
display: flex;
align-items: center;
2020-06-07 19:54:42 +00:00
&.active {
background-color: @accent-90;
.suggestion-title {
color: @accent-50;
}
}
}
2020-06-08 05:13:24 +00:00
&-text {
margin-left: 20px;
}
2020-06-07 19:54:42 +00:00
&-title {
margin: 0 0 0.78rem * @content-scaling 0;
2020-06-07 21:44:42 +00:00
color: @base-10;
font-size: @content-h6-size;
2020-06-07 19:54:42 +00:00
line-height: 1.872rem * @content-scaling;
}
&-highlight {
2020-06-07 21:44:42 +00:00
color: @base-30;
2020-06-07 19:54:42 +00:00
font-style: normal;
}
&-description {
color: @base-30;
margin: 0;
font-family: @fonts;
font-size: @content-caption-size;
2020-06-07 19:54:42 +00:00
line-height: 1.43rem * @content-scaling;
}
&-thumbnail {
2020-06-08 05:13:24 +00:00
width: 70px;
height: 60px;
2020-06-07 19:54:42 +00:00
background-color: @base-80;
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
}
2020-06-08 05:13:24 +00:00
#suggestion {
&-link {
&-first {
margin-top: 8px;
}
2020-06-08 05:13:24 +00:00
&-last {
margin-bottom: 8px;
}
}
2020-06-08 05:14:17 +00:00
2020-06-08 05:13:24 +00:00
&-special {
padding: 1rem;
border-top: 1px solid @base-80;
display: flex;
color: @base-10;
align-items: center;
2020-06-08 05:13:24 +00:00
&-icon {
margin: 0 14px 0 10px;
width: 20px;
height: 20px;
background-repeat: no-repeat;
}
2020-06-08 05:13:24 +00:00
&-text {
padding: 5px 0; // make it looks more center aligned
font-size: @content-caption-size;
font-family: @fonts;
font-weight: bold;
}
&:hover {
background-color: @accent-90;
}
}
}
2020-06-07 19:54:42 +00:00
/* using element selector to override default anchor styles */
a.suggestion-link:hover {
text-decoration: none;
}
// RTL tweaks
.rtl {
#searchform {
left: @icon-box-size + @margin-side + @icon-padding;
right: unset;
}
}
@media only screen and ( max-width: @suggestion-max-width ) {
.suggestions-dropdown {
position: fixed;
left: 0;
top: @header-height + 1px;
max-width: 100vw;
&:after {
content: '';
width: 100vw;
height: 100vh;
background: #000;
display: block;
opacity: 0.7;
position: fixed;
}
}
}
@media ( prefers-color-scheme: dark ) {
.suggestions-dropdown {
background: @dark-bg-50;
}
.suggestion {
&-link {
&.active {
background-color: @accent-10;
.suggestion-title {
color: @accent-90;
}
}
}
&-title {
2020-06-07 21:44:42 +00:00
color: @dark-text-90;
2020-06-07 19:54:42 +00:00
}
&-highlight {
2020-06-07 21:44:42 +00:00
color: @dark-text-70;
2020-06-07 19:54:42 +00:00
}
&-description {
2020-06-07 21:44:42 +00:00
color: @dark-text-70;
2020-06-07 19:54:42 +00:00
}
}
2020-06-08 05:13:24 +00:00
#suggestion {
&-special {
border-color: @dark-bg-40;
color: @dark-text-90;
2020-06-08 05:13:24 +00:00
&:hover {
background-color: @accent-10;
}
}
}
2020-06-07 19:54:42 +00:00
}