_variables.scss 3.4 KB

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