style.css 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  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 .nav-item .nav-link:hover:not(.disabled) {
  14. color: #009ef7;
  15. }
  16. .nav-line-tabs .nav-item .nav-link.active, .nav-line-tabs .nav-item.show .nav-link {
  17. color: #009ef7;
  18. border-bottom: 2px solid #009ef7;
  19. }
  20. .nav-line-tabs .nav-item .nav-link.active:hover, .nav-line-tabs .nav-item.show .nav-link:hover {
  21. border-bottom: 2px solid #009ef7;
  22. }
  23. .tooltip {
  24. z-index: 1112;
  25. }
  26. .dl-line {
  27. display: flex;
  28. margin-bottom: 0;
  29. }
  30. .dl-line dt {
  31. white-space: nowrap;
  32. }
  33. .dl-line dl {
  34. white-space: normal;
  35. word-break: break-all;
  36. }
  37. .form-group.required .col-form-label:after {
  38. color: #d00;
  39. content: "*";
  40. position: absolute;
  41. margin-left: 3px;
  42. }
  43. .form-control.valid, .was-validated .form-control:valid {
  44. border-color: #50cd89 !important;
  45. background-color: #e8fff3 !important;
  46. }
  47. .valid + .select2-container .select2-selection {
  48. border-color: #50cd89 !important;
  49. background-color: #e8fff3 !important;
  50. }
  51. .form-control.invalid, .was-validated .form-control:invalid {
  52. border-color: #f1416c !important;
  53. background-color: #fff5f8 !important;
  54. }
  55. .invalid + .select2-container .select2-selection {
  56. border-color: #f1416c !important;
  57. background-color: #fff5f8 !important;
  58. }
  59. .nav-user-menu .user-image {
  60. width: 20px;
  61. margin-right: 4px;
  62. margin-top: -4px;
  63. }
  64. .table .row-selected {
  65. background: #f1faff;
  66. }
  67. .table .row-selected td {
  68. color: var(--bs-primary);
  69. }
  70. .table tr td {
  71. min-height: 45px;
  72. }
  73. .table-action {
  74. color: #009ef7;
  75. font-size: 14px;
  76. font-weight: 600;
  77. cursor: pointer;
  78. margin: 0 8px;
  79. }
  80. .table-action i {
  81. color: #009ef7 !important;
  82. padding-left: 3px;
  83. padding-right: 3px;
  84. }
  85. .table-action:hover {
  86. border-bottom: 2px solid #009ef7;
  87. padding-bottom: 2px;
  88. }
  89. .invalid-feedback-show.invalid-feedback {
  90. display: block;
  91. font-weight: 400;
  92. }
  93. .required:after {
  94. color: transparent;
  95. }
  96. label.required:after {
  97. color: #f1416c;
  98. }
  99. .form-control.form-control-solid:disabled, .form-control.form-control-solid[readonly] {
  100. background-color: #eff2f5;
  101. color: #999;
  102. }
  103. .swal-modal {
  104. width: 100%;
  105. max-width: 300px;
  106. min-width: 200px;
  107. min-height: 125px;
  108. }
  109. .swal-modal .swal-icon {
  110. transform: scale(0.5);
  111. position: absolute;
  112. margin: 0;
  113. left: 0;
  114. top: 0;
  115. animation: none;
  116. }
  117. .swal-modal .swal-icon .swal-icon--success__ring {
  118. border: 4px solid rgba(164, 219, 132, 0.6);
  119. }
  120. .swal-modal .swal-title {
  121. position: absolute;
  122. margin: 0;
  123. left: 80px;
  124. top: 40px;
  125. transform: translateY(-50%);
  126. font-weight: 600;
  127. padding: 0;
  128. font-size: 1.5rem;
  129. }
  130. .swal-modal .swal-text {
  131. position: absolute;
  132. margin: 0;
  133. left: 80px;
  134. top: 40px;
  135. transform: translateY(-50%);
  136. font-weight: 600;
  137. padding-left: 0;
  138. padding-right: 1.5rem;
  139. }
  140. .swal-modal .swal-title ~ .swal-text {
  141. position: static;
  142. left: 0;
  143. margin: 75px 0 55px;
  144. transform: translateY(0);
  145. float: left;
  146. text-indent: 2em;
  147. padding: 0 1rem;
  148. font-weight: 400;
  149. }
  150. .swal-modal .swal-footer {
  151. position: absolute;
  152. bottom: 0;
  153. right: 0;
  154. margin: 0;
  155. padding: 0.75rem 1rem;
  156. }
  157. .swal-modal .swal-button {
  158. padding: 0.25rem 1.5rem;
  159. }
  160. .jstree-default .jstree-wholerow.jstree-wholerow-clicked {
  161. background: #f1faff;
  162. background: linear-gradient(to bottom, #d8fff3 0, #e8fff3 100%);
  163. }
  164. .fadeIn-down {
  165. animation-name: fadeInDown;
  166. animation-duration: 1s;
  167. animation-fill-mode: none;
  168. }
  169. .fadeIn {
  170. opacity: 0;
  171. animation: fadeIn ease-in 1;
  172. animation-fill-mode: forwards;
  173. animation-duration: 1s;
  174. }
  175. .fadeIn.fadeIn-1 {
  176. animation-delay: 0.4s;
  177. }
  178. .fadeIn.fadeIn-2 {
  179. animation-delay: 0.6s;
  180. }
  181. .fadeIn.fadeIn-3 {
  182. animation-delay: 0.8s;
  183. }
  184. .fadeIn.fadeIn-4 {
  185. animation-delay: 1s;
  186. }
  187. .fadeIn.fadeIn-5 {
  188. animation-delay: 1.2s;
  189. }
  190. .fadeIn.fadeIn-6 {
  191. animation-delay: 1.4s;
  192. }
  193. .fadeIn.fadeIn-7 {
  194. animation-delay: 1.5s;
  195. }
  196. .fadeIn.fadeIn-8 {
  197. animation-delay: 1.6s;
  198. }
  199. @keyframes fadeInDown {
  200. from {
  201. opacity: 0;
  202. transform: translate3d(0, -100%, 0);
  203. }
  204. to {
  205. opacity: 1;
  206. transform: none;
  207. }
  208. }
  209. @keyframes fadeIn {
  210. from {
  211. opacity: 0;
  212. }
  213. to {
  214. opacity: 1;
  215. }
  216. }
  217. .timeline-box {
  218. margin: 0 0 45px;
  219. padding: 0;
  220. position: relative;
  221. }
  222. .timeline-box:before {
  223. border-radius: 0.25rem;
  224. background-color: #dee2e6;
  225. bottom: 0;
  226. content: "";
  227. left: 31px;
  228. margin: 0;
  229. position: absolute;
  230. top: 0;
  231. width: 4px;
  232. }
  233. .timeline-box > div {
  234. margin-bottom: 15px;
  235. margin-right: 10px;
  236. position: relative;
  237. }
  238. .timeline-box > div:before, .timeline-box > div:after {
  239. content: "";
  240. display: table;
  241. }
  242. .timeline-box > div.timeline-label > span {
  243. border-radius: 4px;
  244. background-color: #fff;
  245. display: inline-block;
  246. font-weight: 600;
  247. padding: 5px;
  248. }
  249. .timeline-box > div.timeline-label:before {
  250. width: 0;
  251. }
  252. .timeline-box > div .timeline-item {
  253. box-shadow: 0 0 1px rgba(0, 0, 0, 0.13), 0 1px 3px rgba(0, 0, 0, 0.2);
  254. border-radius: 0.25rem;
  255. background-color: #fff;
  256. color: #495057;
  257. margin-left: 60px;
  258. margin-right: 15px;
  259. margin-top: 0;
  260. padding: 0;
  261. position: relative;
  262. }
  263. .timeline-box > div .timeline-item:not(:last-child) {
  264. margin-bottom: 15px;
  265. }
  266. .timeline-box > div .timeline-item .time {
  267. color: #999;
  268. float: right;
  269. font-size: 12px;
  270. padding: 10px;
  271. }
  272. .timeline-box > div .timeline-item .timeline-header {
  273. border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  274. color: #495057;
  275. font-size: 16px;
  276. line-height: 1.1;
  277. margin: 0;
  278. padding: 10px;
  279. }
  280. .timeline-box > div .timeline-item .timeline-body, .timeline-box > div .timeline-item .timeline-footer {
  281. padding: 10px;
  282. }