zotero/scss/elements/_noteEditor.scss
Tom Najdek c7286194f8 Convert theme to css variables
* Opt-in for light and dark color schemes
* Convert scss variables in _light.scss to css variables
* Add _dark.scss for dark color scheme
* Remove unused, theme-related variables
2024-01-24 03:42:29 -05:00

30 lines
478 B
SCSS

#links-box {
.grid {
display: grid;
grid-template-columns: auto 1fr;
& > * {
margin-top: 1px !important;
margin-bottom: 1px !important;
padding: 0 2px 0 2px !important;
}
.label {
color: #7f7f7f;
text-align: right;
font-weight: bold;
min-width: 62px;
border: var(--material-border-transparent);
}
.value {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap
}
}
}
#related-popup, #tags-popup {
font: inherit;
}