aa294eb773
* Popover: fixed a bug that a node value was not being set * PlatformUtils: fixed a bug that MacOS can be an OS with name darwin * Optimized switch statements * Code formatting and cleanup * Removed unused imports * Reformat markdown tables * Use try-with-resources * Improve Javadoc * Enforce Git compliance * Better NPE error messages * Fixed spelling errors
29 lines
845 B
SCSS
Executable File
29 lines
845 B
SCSS
Executable File
// SPDX-License-Identifier: MIT
|
|
|
|
// Any module variable can be customized at compile time.
|
|
// Note that SASS is only loading any module just once so customization order does matter.
|
|
// E.g. if A module uses B and B uses C then we should override C variables first, then B,
|
|
// then A. Otherwise there will be an exception that we are attempting to change a variable
|
|
// in a module that has been already loaded.
|
|
//
|
|
// Color customization.
|
|
// @forward "settings/color-vars" with (
|
|
// ...
|
|
// );
|
|
//
|
|
// Shared property customization.
|
|
// @forward "settings/config" with (
|
|
// ...
|
|
// );
|
|
|
|
// This should precede components customization, as it guarantees
|
|
// that .root styles will precede components styles.
|
|
@use "general";
|
|
|
|
// Individual component property customization.
|
|
// @forward "components/split-pane" with (
|
|
// ...
|
|
// );
|
|
|
|
@use "components";
|