More actions
No edit summary |
No edit summary |
||
(6 intermediate revisions by the same user not shown) | |||
Line 4: | Line 4: | ||
filter: invert() hue-rotate(180deg) brightness(110%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
html.skin-theme-clientpref-os .lua-type-explicit > a:: | html.skin-theme-clientpref-os .lua-type-explicit > a::before { | ||
filter: invert() hue-rotate(180deg) brightness(110%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
Line 18: | Line 18: | ||
filter: invert() hue-rotate(180deg) brightness(110%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
html.skin-theme-clientpref-night .lua-type-explicit > a:: | html.skin-theme-clientpref-night .lua-type-explicit > a::before { | ||
filter: invert() hue-rotate(180deg) brightness(110%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
Line 46: | Line 46: | ||
.lua-type-explicit { | .lua-type-explicit { | ||
font-family: monospace; | font-family: 'Roboto Mono','Menlo','Consolas','Liberation Mono','Fira Code','Courier New',monospace; | ||
display: contents; /* flatten 'a' as flex element */ | display: contents; /* flatten 'a' as flex element */ | ||
} | } | ||
Line 58: | Line 58: | ||
text-decoration: none; | text-decoration: none; | ||
padding: 0 4px; | padding: 0 4px; | ||
display: flex; | |||
flex-flow: row nowrap; | |||
} | } | ||
.lua-type-explicit > .external.external:hover { | .lua-type-explicit > .external.external:hover { | ||
Line 69: | Line 72: | ||
/** TYPE COLORS **/ | /** TYPE COLORS **/ | ||
.lua-type-explicit.-lua-typedef a:: | .lua-type-explicit.-lua-typedef a::before { | ||
content: ""; | content: ""; | ||
width: | width: 2px; | ||
margin: 4px 0; | |||
margin-right: 4px; | |||
display: inline-block; | |||
align-self: stretch; | |||
background-color: #c891ff; | |||
} | } | ||
Latest revision as of 03:57, 31 March 2025
/** DARK MODE **/
@media screen and (prefers-color-scheme: dark) {
html.skin-theme-clientpref-os .lua-type-explicit > a {
filter: invert() hue-rotate(180deg) brightness(110%);
}
html.skin-theme-clientpref-os .lua-type-explicit > a::before {
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 > a {
filter: invert() hue-rotate(180deg) brightness(110%);
}
html.skin-theme-clientpref-night .lua-type-explicit > a::before {
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;
}
/** TYPES **/
.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: 1px;
margin: 3px 0;
align-self: stretch;
background-color: #404040;
}
.lua-type-explicit {
font-family: 'Roboto Mono','Menlo','Consolas','Liberation Mono','Fira Code','Courier New',monospace;
display: contents; /* flatten 'a' as flex element */
}
.lua-type-explicit > .external.external::after {
display: none;
}
.lua-type-explicit > a {
border-radius: 4px;
border: 1px solid #b0b0b0;
color: #000000;
text-decoration: none;
padding: 0 4px;
display: flex;
flex-flow: row nowrap;
}
.lua-type-explicit > .external.external:hover {
color: #000000;
text-decoration: underline;
}
.lua-type-explicit > a:visited {
color: #000000;
}
/** TYPE COLORS **/
.lua-type-explicit.-lua-typedef a::before {
content: "";
width: 2px;
margin: 4px 0;
margin-right: 4px;
display: inline-block;
align-self: stretch;
background-color: #c891ff;
}
.lua-type-explicit[data-name="nil"] a {
background-color: #ffffff;
border: 1px solid #808080;
}
.lua-type-explicit[data-name="any"] a {
background-color: #ffffff;
border: 1px dotted #808080;
}
.lua-type-explicit[data-name="table"] a {
background-color: #ffffdd;
}
.lua-type-explicit[data-name="function"] a {
background-color: #eeddff;
}
.lua-type-explicit[data-name="string"] a {
background-color: #ddffdd;
}
.lua-type-explicit[data-name="boolean"] a {
background-color: #ffddff;
}
.lua-type-explicit[data-name="number"] a, .lua-type-explicit[data-name="integer"] {
background-color: #ddddff;
}
.lua-type-explicit[data-name^="Vector"] a {
background-color: #ffeedd;
}
.lua-type-explicit[data-name^="Matrix"] a {
background-color: #ffddee;
}