mirror of
https://github.com/dbgate/dbgate
synced 2024-11-08 04:35:58 +00:00
23 lines
692 B
CSS
23 lines
692 B
CSS
:root {
|
|
--dim-widget-icon-size: 60px;
|
|
--dim-statusbar-height: 20px;
|
|
--dim-left-panel-width: 300px;
|
|
--dim-tabs-panel-height: 53px;
|
|
--dim-tabs-height: 33px;
|
|
--dim-splitter-thickness: 3px;
|
|
|
|
--dim-visible-left-panel: 1; /* set from JS */
|
|
--dim-content-left: calc(
|
|
var(--dim-widget-icon-size) + var(--dim-visible-left-panel) *
|
|
(var(--dim-left-panel-width) + var(--dim-splitter-thickness))
|
|
);
|
|
|
|
--dim-visible-toolbar: 1; /* set from JS */
|
|
|
|
--dim-toolbar-height: 30px;
|
|
--dim-header-top: calc(var(--dim-toolbar-height) * var(--dim-visible-toolbar));
|
|
--dim-content-top: calc(var(--dim-header-top) + var(--dim-tabs-panel-height));
|
|
|
|
--dim-large-form-margin: 20px;
|
|
}
|