You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_common.scss 2.3KB

3 years ago
3 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. nav.main-header {
  2. ul.navbar-nav {
  3. li.nav-item-user-menu {
  4. .dropdown-menu {
  5. position: absolute;
  6. z-index: 1000;
  7. }
  8. }
  9. li.nav-item {
  10. margin-left: 10px;
  11. .btn {
  12. margin-top: 7px;
  13. }
  14. }
  15. }
  16. }
  17. .main-sidebar p {
  18. font-size: 0.8rem;
  19. }
  20. .nav-link {
  21. padding: 0.5rem 0.5rem;
  22. }
  23. .nav-treeview .nav-link {
  24. padding: 0.2rem 0.5rem 0.2rem 1.2rem;
  25. }
  26. //TODO à réecrire correctement
  27. .table.datatable-simple .highlight {
  28. background: var(--teal);
  29. }
  30. .datatable-field-search.small {
  31. width: 50px;
  32. }
  33. .dataTables_length, .dataTables_filter {
  34. padding: .75rem 1.25rem 0.25rem;
  35. }
  36. table.fixedHeader-floating {
  37. margin-top: 0px !important;
  38. }
  39. .card-body table.lc-table-list th.filtered {
  40. border-top: 2px solid var(--primary);
  41. }
  42. .card-body table.lc-table-list th.sorted, table th.sorting_asc, table th.sorting_desc {
  43. border-top: 2px solid var(--success);
  44. }
  45. .card-body table.lc-table-list th.sorted.filtered {
  46. border-top: 0px;
  47. position: relative;
  48. }
  49. .card-body table.lc-table-list th.sorted.filtered:after {
  50. content: '';
  51. height: 2px;
  52. position: absolute;
  53. left: 0;
  54. width: 100%;
  55. right: 0;
  56. top: -1px;
  57. background: linear-gradient(to right, var(--success) 0%, var(--success) 50%, var(--primary) 50%, var(--primary) 100%);
  58. }
  59. .table-filters-line th {
  60. font-weight: 400;
  61. position: relative;
  62. }
  63. .table-filters-line th input {
  64. }
  65. #list_filter_id {
  66. width: 60px;
  67. }
  68. .delivery-field .form-group {
  69. display: inline-block;
  70. margin-bottom: 0px;
  71. margin-right: 15px;
  72. }
  73. .delivery-field .form-group .form-control {
  74. width: 90px;
  75. }
  76. .table {
  77. thead a {
  78. color: #212529
  79. }
  80. .date-range {
  81. width: 130px;
  82. }
  83. th, td {
  84. padding: 0.35rem;
  85. }
  86. th input {
  87. width: 100%;
  88. }
  89. th.filtered {
  90. border-top: 2px solid var(--primary);
  91. }
  92. th.actions, td.actions {
  93. white-space: nowrap;
  94. text-align: right;
  95. }
  96. th .select2-container--default .select2-selection--single {
  97. padding: 0.3rem 0.4rem;
  98. }
  99. th.sorting_asc, th.sorting_desc {
  100. border-top: 2px solid var(--success);
  101. }
  102. .actions .btn-sm {
  103. margin-right: 3px;
  104. }
  105. }
  106. .select2-container--bootstrap4 .select2-results__option[aria-disabled="true"] {
  107. color: #777;
  108. cursor: not-allowed;
  109. display: none;
  110. }
  111. .hidden {
  112. display: none;
  113. }
  114. .badge.stripped{background-image: url('../img/stripped.png');}