variables.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. //== Read status colors
  34. //
  35. @category-read-color: @gray-light;
  36. @category-new-color: @brand-success;
  37. @thread-read-color: @gray-light;
  38. @thread-new-color: @text-color;
  39. @thread-read-icon-color: @gray-light;
  40. @thread-new-icon-color: @brand-success;
  41. //== Threads list
  42. //
  43. @thread-icon-padding: 7px;
  44. @thread-icon-column: 54px;
  45. @thread-icon-width: 28px;
  46. //-- Z-index master list
  47. //
  48. // Warning: Avoid customizing these values. They're used for a bird's eye view
  49. // of components dependent on the z-axis and are designed to all work together.
  50. //
  51. // Note: These variables are not generated into the Customizer.
  52. @zindex-navbar: 1000;
  53. @zindex-dropdown: 1000;
  54. @zindex-popover: 1060;
  55. @zindex-tooltip: 1070;
  56. @zindex-navbar-fixed: 1030;
  57. @zindex-modal-background: 1040;
  58. @zindex-modal: 1050;
  59. @zindex-auth-message: 1070;