1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- //
- // Misago Default Theme Variables
- // --------------------------------------------------
- //== Loaders
- //
- //## Loaders appearance and spacing.
- //** Full loader size (both width and height)
- @loader-size: 80px;
- //** Loader color
- @loader-color: @gray-light;
- //** UI preview colors
- @ui-preview-light: darken(@body-bg, 2%);
- @ui-preview-dark: darken(@ui-preview-light, 10%);
- //== Navbar
- //
- //## Extra navbar configurability
- //** Full navbar avatar padding
- @navbar-avatar-size: 34px;
- //** Compact navbar
- @navbar-compact-item-size: 24px;
- //== Error pages
- //
- @message-page-icon-size: 80px;
- //== Auth Changed message
- //
- @auth-changed-bg: @gray-lighter;
- @auth-changed-color: @gray-darker;
- //== User status colors
- //
- @user-status-banned: @brand-danger;
- @user-status-online: @brand-success;
- @user-status-offline: @gray-light;
- //== User status colors
- //
- @read-status-old: @gray-light;
- @read-status-new: @brand-success;
- //-- Z-index master list
- //
- // Warning: Avoid customizing these values. They're used for a bird's eye view
- // of components dependent on the z-axis and are designed to all work together.
- //
- // Note: These variables are not generated into the Customizer.
- @zindex-navbar: 1000;
- @zindex-dropdown: 1000;
- @zindex-popover: 1060;
- @zindex-tooltip: 1070;
- @zindex-navbar-fixed: 1030;
- @zindex-modal-background: 1040;
- @zindex-modal: 1050;
- @zindex-auth-message: 1070;
|