mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 16:57:00 -06:00
0f46f070ed
1. Make use of MUI styles and remove SCSS. 2. Use the new common components for buttons and tooltips, so that they are consistent. 3. UI design should be aligned with the query tool. 4. Remove tippyjs and Alertify dependencies.
40 lines
1.1 KiB
SCSS
40 lines
1.1 KiB
SCSS
$theme-colors: (
|
|
"primary": $color-primary,
|
|
"danger": $color-danger,
|
|
"success": $color-success,
|
|
"warning": $color-warning,
|
|
);
|
|
|
|
/* Certain variables are required in JS directly */
|
|
:root {
|
|
--color-fg: #{$color-fg};
|
|
--color-bg: #{$color-bg};
|
|
--border-color: #{$border-color};
|
|
--psql-background: #{$psql-background};
|
|
--psql-foreground: #{$psql-foreground};
|
|
--psql-cursor: #{$psql-cursor};
|
|
--psql-cursorAccent: #{$psql-cursorAccent};
|
|
--psql-selection: #{$psql-selection};
|
|
}
|
|
|
|
@import "bootstrap/scss/bootstrap";
|
|
@import 'webcabin.pgadmin';
|
|
@import 'bootstrap.overrides';
|
|
@import 'backgrid.overrides';
|
|
@import 'tree.overrides';
|
|
@import 'select2.overrides';
|
|
@import 'codemirror.overrides';
|
|
@import 'alert';
|
|
@import 'alertify.overrides';
|
|
@import 'backform.overrides';
|
|
@import 'pgadmin.grid';
|
|
@import 'pgadmin.style';
|
|
@import 'bootstrap4-toggle.overrides';
|
|
@import 'pickr.overrides';
|
|
@import 'jsoneditor.overrides';
|
|
@import 'pgadmin4-tree.overrides';
|
|
@import 'pgadmin4-tree/src/css/styles';
|
|
@import 'slickgrid.overrides';
|
|
@import 'rc-dock/dist/rc-dock.css';
|
|
@import '@szhsin/react-menu/dist/index.css';
|