webui/src/Sass/global.scss

43 lines
1.3 KiB
SCSS

// Enable Bootstrap color modes
$color-mode-type: media-query; // or "class" if you prefer manual control
@import "bootstrap/scss/bootstrap";
//default variable overrides
@import "./_esuiteVariables.scss";
//@import "../../node_modules/bootstrap/scss/functions";
//@import "../../node_modules/bootstrap/scss/variables";
//@import "../../node_modules/bootstrap/scss/variables-dark";
@import "../../node_modules/bootstrap/scss/maps";
@import "../../node_modules/bootstrap/scss/mixins";
@import "../../node_modules/bootstrap/scss/root";
// main bootstrap import
//@import "~bootstrap/scss/bootstrap.scss";
@import "../../node_modules/react-toastify/dist/ReactToastify";
@import "../../node_modules/bootstrap/dist/css/bootstrap";
@import "../../node_modules/@ckeditor/ckeditor5-theme-lark/theme/theme";
@import "./_domains.scss";
@import "./general.scss";
@import "./login.scss";
@import "./ckEditor.scss";
@import "./autoComplete.scss";
@import "./pill.scss";
@import "./multiSelect.scss";
@import "./horizionalTabs";
@import "./_expandableCell.scss";
@import "./_errorLogs.scss";
@import "./addTaskButton.scss";
@import "./selectableList.scss";
@import "./checklist.scss";
@import "./visualiser.scss";
//Changes needed to make MS Edge behave the same as other browsers
input::-ms-reveal {
display: none;
}