More actions
No edit summary |
No edit summary |
||
Line 40: | Line 40: | ||
.lua-type-explicit { | .lua-type-explicit { | ||
font-family: monospace; | font-family: monospace; | ||
display: contents; | display: contents; /* flatten 'a' as flex element */ | ||
} | } | ||
.lua-type-explicit > .external::after { | .lua-type-explicit > .external::after { | ||
Line 48: | Line 48: | ||
border-radius: 4px; | border-radius: 4px; | ||
border: 1px solid #b0b0b0; | border: 1px solid #b0b0b0; | ||
color: #000000; | |||
text-decoration: none; | |||
padding: 0 4px; | padding: 0 4px; | ||
} | |||
.lua-type-explicit > a:visited { | |||
color: #000000; | |||
} | } |
Revision as of 02:08, 31 March 2025
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .lua-type-explicit {
filter: invert() hue-rotate(180deg) brightness(110%);
}
html.skin-theme-clientpref-os .lua-type-recolor-border {
border: 1px solid #404040 !important;
}
html.skin-theme-clientpref-os .lua-type-recolor-bar {
background-color: #b0b0b0 !important;
}
}
html.skin-theme-clientpref-night .lua-type-explicit {
filter: invert() hue-rotate(180deg) brightness(110%);
}
html.skin-theme-clientpref-night .lua-type-recolor-border {
border: 1px solid #404040 !important;
}
html.skin-theme-clientpref-night .lua-type-recolor-bar {
background-color: #b0b0b0 !important;
}
.lua-type-union {
display: inline-flex;
flex-flow: row nowrap;
padding: 1px 1px;
gap: 3px;
border-radius: 4px;
border: 1px solid #b0b0b0;
}
.lua-type-union > .lua-type-union-bar {
display: block;
width: 2px;
margin: 3px 0;
align-self: stretch;
background-color: #404040;
}
.lua-type-explicit {
font-family: monospace;
display: contents; /* flatten 'a' as flex element */
}
.lua-type-explicit > .external::after {
display: none;
}
.lua-type-explicit > a {
border-radius: 4px;
border: 1px solid #b0b0b0;
color: #000000;
text-decoration: none;
padding: 0 4px;
}
.lua-type-explicit > a:visited {
color: #000000;
}