_variables.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. // TODO: activate (https://redmine.weseek.co.jp/issues/128307)
  2. // Variables
  3. //
  4. // Variables should follow the `$component-state-property-size` formula for
  5. // consistent naming. Ex: $nav-link-disabled-color and $modal-content-box-shadow-xs.
  6. // Options
  7. //
  8. // Quickly modify global styling by enabling or disabling optional features.
  9. // $enable-shadows: true;
  10. // Links
  11. //
  12. // Style anchor elements.
  13. $link-decoration: none;
  14. // Grid breakpoints
  15. //
  16. // Define the minimum dimensions at which your layout will change,
  17. // adapting to different screen sizes, for use in media queries.
  18. // $grid-breakpoints: (
  19. // xs: 0,
  20. // sm: 576px,
  21. // md: 768px,
  22. // lg: 992px,
  23. // xl: 1200px,
  24. // xxl: 1480px,
  25. // );
  26. // Grid containers
  27. //
  28. // Define the maximum width of `.container` for different screen sizes.
  29. // $container-max-widths: (
  30. // sm: 540px,
  31. // md: 720px,
  32. // lg: 960px,
  33. // xl: 1140px,
  34. // xxl: 1320px,
  35. // );
  36. //== Typography
  37. //
  38. //## Font, line-height, and color for body text, headings, and more.
  39. $font-family-sans-serif: var(--font-family-sans-serif);
  40. $font-family-serif: var(--font-family-serif);
  41. $font-family-monospace: var(--font-family-monospace);
  42. $font-family-base: $font-family-sans-serif;
  43. // $font-size-base: 0.875rem; // 16px -> 14px
  44. // $line-height-base: 1.42857;
  45. // $blockquote-footer-color: $gray-500;
  46. //== Components
  47. //
  48. // $border-radius: 4px;
  49. // $border-radius-sm: 0;
  50. // $border-radius-lg: 8px;
  51. // Buttons
  52. //
  53. // For each of Bootstrap's buttons, define text, background, and border color.
  54. // $btn-focus-box-shadow: none;
  55. // $btn-active-box-shadow: none;
  56. //== Forms
  57. //
  58. // $input-border-color: $gray-300;
  59. // $input-placeholder-color: $gray-500;
  60. // $form-check-indicator-border-color: $gray-400;
  61. // $form-check-label-disabled-color: $gray-500;
  62. // $form-select-disabled-color: $gray-500;
  63. // $form-range-thumb-disabled-bg: $gray-400;
  64. //== Navs
  65. // $nav-link-padding-y: 0.75rem;
  66. // $nav-link-padding-x: 1rem;
  67. // $nav-link-disabled-color: $gray-500;
  68. //== Navbar
  69. // $navbar-padding-y: 0;
  70. // $navbar-brand-padding-y: 0;
  71. // $navbar-nav-link-padding-x: 1rem;
  72. //== Dropdowns
  73. // $dropdown-border-radius: $border-radius-lg;
  74. // $dropdown-link-disabled-color: $gray-500;
  75. // $dropdown-header-color: $gray-500;
  76. // $dropdown-box-shadow: 0 0.5rem 0.7rem rgba(black, 0.1);
  77. //== Popovers
  78. // $popover-border-radius: $border-radius;
  79. // $popover-box-shadow: 0 0.5rem 0.7rem rgba(black, 0.1);
  80. //== Pagination
  81. // $pagination-disabled-color: $gray-500;
  82. //== Cards
  83. // $card-spacer-y: 7px;
  84. // $card-spacer-x: 15px;
  85. //== Toasts
  86. // $toast-header-color: $gray-500;
  87. //== Modals
  88. // $modal-content-border-width: 0;
  89. // $modal-content-border-radius: $border-radius-lg;
  90. // $modal-header-padding-y: 0.75rem;
  91. // $modal-header-padding-x: 1rem;
  92. $modal-footer-border-width: 0;
  93. //== Alerts
  94. // $alert-bg-level: -2;
  95. // $alert-border-level: 0;
  96. // $alert-color-level: -10;
  97. //== Progress bar
  98. // $progress-height: 4px;
  99. // $progress-bg: $gray-100;
  100. // $progress-box-shadow: none;
  101. //== List group
  102. // $list-group-disabled-color: $gray-500;
  103. //== Figures
  104. // $figure-caption-color: $gray-500;
  105. //== Breadcrumbs
  106. // $breadcrumb-divider-color: $gray-500;
  107. // $breadcrumb-active-color: $gray-500;
  108. //== Code
  109. $pre-color: dummyinvalildcolor; // disable pre color specification with invalid value
  110. //== Custom Checkbox
  111. // $form-check-indicator-border-radius: 0px;
  112. // $form-check-indicator-focus-box-shadow: none;
  113. // $form-check-indicator-size: 1.2rem;