More actions
No edit summary |
No edit summary |
||
(12 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/** DARK MODE **/ | |||
@media screen and (prefers-color-scheme: dark) { | @media screen and (prefers-color-scheme: dark) { | ||
html.skin-theme-clientpref-os .lua-type-explicit > a { | 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%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
Line 12: | Line 16: | ||
html.skin-theme-clientpref-night .lua-type-explicit > a { | 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%); | filter: invert() hue-rotate(180deg) brightness(110%); | ||
} | } | ||
Line 21: | Line 28: | ||
} | } | ||
/** TYPES **/ | |||
.lua-type-union { | .lua-type-union { | ||
display: inline-flex; | display: inline-flex; | ||
Line 32: | Line 39: | ||
.lua-type-union > .lua-type-union-bar { | .lua-type-union > .lua-type-union-bar { | ||
display: block; | display: block; | ||
width: | width: 1px; | ||
margin: 3px 0; | margin: 3px 0; | ||
align-self: stretch; | align-self: stretch; | ||
Line 39: | 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 */ | ||
} | } | ||
.lua-type-explicit > .external::after { | .lua-type-explicit > .external.external::after { | ||
display: none; | display: none; | ||
} | } | ||
Line 51: | 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 { | |||
color: #000000; | |||
text-decoration: underline; | |||
} | } | ||
.lua-type-explicit > a:visited { | .lua-type-explicit > a:visited { | ||
color: #000000; | 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; | |||
} | } |
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;
}