More actions
No edit summary |
No edit summary |
||
Line 3: | Line 3: | ||
flex-flow: row nowrap; | flex-flow: row nowrap; | ||
padding: 1px 1px; | padding: 1px 1px; | ||
gap: | gap: 2px; | ||
border-radius: 4px; | border-radius: 4px; | ||
border: 1px solid #404040; /* FIXME: theming */ | border: 1px solid #404040; /* FIXME: theming */ | ||
} | |||
.lua-type-union > .lua-type-union-bar { | |||
display: block; | |||
width: 2px; | |||
align-self: stretch; | |||
background-color: #404040; /* FIXME: theming */ | |||
} | } | ||
Line 18: | Line 24: | ||
border-radius: 4px; | border-radius: 4px; | ||
border: 1px solid #404040; /* FIXME: theming */ | border: 1px solid #404040; /* FIXME: theming */ | ||
padding: | padding: 0 4px; | ||
} | } |
Revision as of 01:19, 31 March 2025
.lua-type-union {
display: inline-flex;
flex-flow: row nowrap;
padding: 1px 1px;
gap: 2px;
border-radius: 4px;
border: 1px solid #404040; /* FIXME: theming */
}
.lua-type-union > .lua-type-union-bar {
display: block;
width: 2px;
align-self: stretch;
background-color: #404040; /* FIXME: theming */
}
.lua-type-explicit {
font-family: monospace;
display: contents;
}
.lua-type-explicit > .external::after {
display: none;
}
.lua-type-explicit > a {
border-radius: 4px;
border: 1px solid #404040; /* FIXME: theming */
padding: 0 4px;
}