mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-23 22:25:09 -04:00
6e38df366f
* New: Native Theme Engine Co-Authored-By: Zak Saunders <thezak48@users.noreply.github.com> (cherry picked from commit 2291f3e00eb2ff9268a0b2f49da8dde82ee13c04) * Update CSS for themes * Fixup CSS values * Fixup remove duped Color-Impaired setting * Fixup Link Colors Co-Authored-By: Qstick <qstick@gmail.com>
75 lines
1023 B
CSS
75 lines
1023 B
CSS
.option {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
margin: 3px;
|
|
border: 1px solid var(--borderColor);
|
|
|
|
&:hover {
|
|
.token {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.example {
|
|
background-color: #ccc;
|
|
}
|
|
}
|
|
}
|
|
|
|
.small {
|
|
width: 460px;
|
|
}
|
|
|
|
.large {
|
|
width: 100%;
|
|
}
|
|
|
|
.token {
|
|
flex: 0 0 50%;
|
|
padding: 6px 16px;
|
|
background-color: var(--popoverTitleBackgroundColor);
|
|
font-family: $monoSpaceFontFamily;
|
|
}
|
|
|
|
.example {
|
|
display: flex;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
flex: 0 0 50%;
|
|
padding: 6px 16px;
|
|
background-color: var(--popoverBodyBackgroundColor);
|
|
|
|
.footNote {
|
|
padding: 2px;
|
|
color: #aaa;
|
|
}
|
|
}
|
|
|
|
.lower {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.upper {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.isFullFilename {
|
|
.token,
|
|
.example {
|
|
flex: 1 0 auto;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointSmall) {
|
|
.option.small {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
@media only screen and (max-width: $breakpointExtraSmall) {
|
|
.token,
|
|
.example {
|
|
flex: 1 0 auto;
|
|
}
|
|
}
|