variables.less 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. //
  2. // Misago Default Theme Variables
  3. // --------------------------------------------------
  4. //== Loaders
  5. //
  6. //## Loaders appearance and spacing.
  7. //** Full loader size (both width and height)
  8. @loader-size: 80px;
  9. //** Loader color
  10. @loader-color: @gray-light;
  11. //** UI preview colors
  12. @ui-preview-light: darken(@body-bg, 2%);
  13. @ui-preview-dark: darken(@ui-preview-light, 10%);
  14. //== Navbar
  15. //
  16. //## Extra navbar configurability
  17. //** Full navbar avatar padding
  18. @navbar-avatar-size: 34px;
  19. //** Compact navbar
  20. @navbar-compact-item-size: 24px;
  21. //== Error pages
  22. //
  23. @message-page-icon-size: 80px;
  24. //== Auth Changed message
  25. //
  26. @auth-changed-bg: @gray-lighter;
  27. @auth-changed-color: @gray-darker;
  28. //== User status colors
  29. //
  30. @user-status-banned: @brand-danger;
  31. @user-status-online: @brand-success;
  32. @user-status-offline: @gray-light;
  33. //== User status colors
  34. //
  35. @read-status-old: @gray-light;
  36. @read-status-new: @brand-success;
  37. //-- Z-index master list
  38. //
  39. // Warning: Avoid customizing these values. They're used for a bird's eye view
  40. // of components dependent on the z-axis and are designed to all work together.
  41. //
  42. // Note: These variables are not generated into the Customizer.
  43. @zindex-navbar: 1000;
  44. @zindex-dropdown: 1000;
  45. @zindex-popover: 1060;
  46. @zindex-tooltip: 1070;
  47. @zindex-navbar-fixed: 1030;
  48. @zindex-modal-background: 1040;
  49. @zindex-modal: 1050;
  50. @zindex-auth-message: 1070;