_override.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. // TODO: activate (https://redmine.weseek.co.jp/issues/128307)
  2. // * {
  3. // outline: none !important;
  4. // }
  5. // .container,
  6. // .container-sm,
  7. // .container-md,
  8. // .container-lg,
  9. // .container-xl,
  10. // .container-fluid {
  11. // @include media-breakpoint-down(xs) {
  12. // padding-right: 10px;
  13. // padding-left: 10px;
  14. // }
  15. // @include media-breakpoint-up(md) {
  16. // padding-right: 30px;
  17. // padding-left: 30px;
  18. // }
  19. // }
  20. // h1 {
  21. // font-size: 36px;
  22. // line-height: 48px;
  23. // }
  24. // h2 {
  25. // font-size: 24px;
  26. // line-height: 36px;
  27. // }
  28. // h3 {
  29. // font-size: 21px;
  30. // line-height: 30px;
  31. // }
  32. // h4 {
  33. // font-size: 18px;
  34. // line-height: 22px;
  35. // }
  36. // h5 {
  37. // font-size: 16px;
  38. // line-height: 18px;
  39. // }
  40. // h6 {
  41. // font-size: 12px;
  42. // line-height: 18px;
  43. // }
  44. // // Navs
  45. // .nav-tabs {
  46. // .nav-item {
  47. // margin-right: 0.15rem;
  48. // a.active {
  49. // cursor: default;
  50. // }
  51. // }
  52. // }
  53. // // Custom Control
  54. // .form-check {
  55. // .form-check-input,
  56. // .form-check-input + .form-check-label {
  57. // cursor: pointer;
  58. // }
  59. // }
  60. // // card (substitute panel of bootstrap3)
  61. // .card {
  62. // margin-bottom: 20px;
  63. // }
  64. // .card-header {
  65. // font-weight: 700;
  66. // text-transform: none;
  67. // }
  68. // .card-header:first-child {
  69. // }
  70. // // Well (substitute Well of bootstrap3)
  71. // .card.well {
  72. // min-height: 20px;
  73. // padding: $card-spacer-y $card-spacer-x;
  74. // }
  75. // // Dropdowns
  76. // .dropdown-toggle {
  77. // &.btn.disabled {
  78. // pointer-events: auto;
  79. // cursor: not-allowed;
  80. // }
  81. // // hide caret
  82. // &.dropdown-toggle-no-caret::after {
  83. // content: none;
  84. // }
  85. // }
  86. // Badges
  87. .badge {
  88. @extend .rounded-pill;
  89. }
  90. // //Modals
  91. // .modal-open {
  92. // width: 100%;
  93. // padding-right: 0 !important;
  94. // }
  95. // .modal-content {
  96. // box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.1);
  97. // }
  98. // .modal-header {
  99. // border-bottom: 1px solid #e5e5e5;
  100. // }
  101. // .modal-footer {
  102. // border-top: 1px solid #e5e5e5;
  103. // }
  104. // // When fading in the modal, animate it to slide down
  105. // .modal.fade .modal-dialog {
  106. // @include transition($modal-transition);
  107. // transform: $modal-fade-transform;
  108. // }
  109. // .modal.show .modal-dialog {
  110. // transform: $modal-show-transform;
  111. // }
  112. // // When trying to close, animate focus to scale
  113. // .modal.modal-static .modal-dialog {
  114. // transform: $modal-scale-transform;
  115. // }
  116. // // col-form-label (substitute for control-label of bootstrap3)
  117. // .col-form-label {
  118. // text-align: right;
  119. // }
  120. // // label
  121. // label {
  122. // // add with-no-font-weight class in case you do not want to apply font-weight 700 to label
  123. // :not(.with-no-font-weight) {
  124. // font-weight: 700;
  125. // }
  126. // }
  127. // // disabled button (reproduction from bootstrap3.)
  128. // // see https://cccabinet.jpn.org/bootstrap4/components/buttons#disabled-state
  129. // .btn.disabled,
  130. // .btn[disabled],
  131. // fieldset[disabled] .btn {
  132. // cursor: not-allowed;
  133. // }
  134. // // progress bar
  135. // .progress {
  136. // margin-bottom: 18px;
  137. // overflow: hidden;
  138. // }
  139. // .text-break {
  140. // word-break: break-word;
  141. // overflow-wrap: break-word;
  142. // }
  143. // // prevent tooltip flickering (flashing) on hover
  144. // .tooltip {
  145. // pointer-events: none;
  146. // }