_custom.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /* prevent the drop down icon going onto a new line for the top bar language link */
  2. .top-bar-language-nav-link {
  3. min-width: 65px;
  4. }
  5. /* bootstrap model showing two scroll bars */
  6. html {
  7. overflow: visible;
  8. }
  9. /* main sidebar not under model */
  10. .modal {
  11. z-index: 1110;
  12. }
  13. .nav-line-tabs {
  14. .nav-item {
  15. .nav-link {
  16. &:hover:not(.disabled) {
  17. color: #009ef7;
  18. }
  19. }
  20. .nav-link.active, &.show .nav-link {
  21. color: #009ef7;
  22. border-bottom: 2px solid #009ef7;
  23. &:hover {
  24. border-bottom: 2px solid #009ef7;
  25. }
  26. }
  27. }
  28. }
  29. .tooltip {
  30. z-index: 1112;
  31. }
  32. .dl-line{
  33. display:flex;
  34. margin-bottom:0;
  35. dt{
  36. white-space:nowrap;
  37. }
  38. dl{
  39. white-space:normal;
  40. word-break:break-all;
  41. }
  42. }
  43. .form-group.required .col-form-label:after {
  44. color: #d00;
  45. content: "*";
  46. position: absolute;
  47. margin-left: 3px;
  48. }
  49. .form-control.valid, .was-validated .form-control:valid {
  50. border-color: #50cd89 !important;
  51. background-color: #e8fff3 !important;
  52. }
  53. .valid + .select2-container {
  54. .select2-selection {
  55. border-color: #50cd89 !important;
  56. background-color: #e8fff3 !important;
  57. }
  58. }
  59. .form-control.invalid, .was-validated .form-control:invalid {
  60. border-color: #f1416c !important;
  61. background-color: #fff5f8 !important;
  62. }
  63. .invalid + .select2-container {
  64. .select2-selection {
  65. border-color: #f1416c !important;
  66. background-color: #fff5f8 !important;
  67. }
  68. }
  69. .nav-user-menu .user-image {
  70. width: 20px;
  71. margin-right: 4px;
  72. margin-top: -4px;
  73. }
  74. .table .row-selected {
  75. background: #f1faff;
  76. }
  77. .table .row-selected td {
  78. color: var(--bs-primary);
  79. }
  80. .table tr td {
  81. min-height: 45px;
  82. }
  83. .table-action {
  84. color: #009ef7;
  85. font-size: 14px;
  86. font-weight: 600;
  87. cursor: pointer;
  88. margin: 0 8px;
  89. i {
  90. color: #009ef7 !important;
  91. padding-left: 3px;
  92. padding-right: 3px;
  93. }
  94. &:hover {
  95. border-bottom: 2px solid #009ef7;
  96. padding-bottom: 2px;
  97. }
  98. }
  99. .invalid-feedback-show.invalid-feedback {
  100. display: block;
  101. font-weight: 400;
  102. }
  103. .required:after {
  104. color: transparent;
  105. }
  106. label.required:after {
  107. color: #f1416c;
  108. }
  109. .form-control.form-control-solid:disabled, .form-control.form-control-solid[readonly] {
  110. background-color: #eff2f5;
  111. color: #999;
  112. }
  113. .swal-modal {
  114. width: 100%;
  115. max-width: 300px;
  116. min-width: 200px;
  117. min-height: 125px;
  118. .swal-icon {
  119. transform: scale(0.5);
  120. position: absolute;
  121. margin: 0;
  122. left: 0;
  123. top: 0;
  124. animation: none;
  125. .swal-icon--success__ring {
  126. border: 4px solid hsla(98,55%,69%,.6);
  127. }
  128. }
  129. .swal-title {
  130. position: absolute;
  131. margin: 0;
  132. left: 80px;
  133. top: 40px;
  134. transform: translateY(-50%);
  135. font-weight: 600;
  136. padding: 0;
  137. font-size: 1.5rem;
  138. }
  139. .swal-text {
  140. position: absolute;
  141. margin: 0;
  142. left: 80px;
  143. top: 40px;
  144. transform: translateY(-50%);
  145. font-weight: 600;
  146. padding-left: 0;
  147. padding-right: 1.5rem;
  148. }
  149. .swal-title ~ .swal-text {
  150. position: static;
  151. left: 0;
  152. margin: 75px 0 55px;
  153. transform: translateY(0);
  154. float: left;
  155. text-indent: 2em;
  156. padding: 0 1rem;
  157. font-weight: 400;
  158. }
  159. .swal-footer {
  160. position: absolute;
  161. bottom: 0;
  162. right: 0;
  163. margin: 0;
  164. padding: 0.75rem 1rem;
  165. }
  166. .swal-button {
  167. padding: .25rem 1.5rem
  168. }
  169. }
  170. .jstree-default .jstree-wholerow.jstree-wholerow-clicked {
  171. background: #f1faff;
  172. background: linear-gradient(to bottom,#d8fff3 0,#e8fff3 100%);
  173. }