app-invoice-list.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // ================================================================================================
  2. // File Name: app-invoice-list.scss
  3. // Description: Invoice Layout page layouts SCSS.
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy HTML Admin Template
  6. // Version: 1.0
  7. // Author: PIXINVENT
  8. // Author URL: http://www.themeforest.net/user/pixinvent
  9. // ================================================================================================
  10. @import '../bootstrap-extended/include'; // Bootstrap includes
  11. @import '../components/include'; // Components includes
  12. .invoice-list-wrapper {
  13. .dataTables_wrapper {
  14. .dataTables_length,
  15. .dataTables_filter {
  16. label {
  17. margin-top: 0.55rem;
  18. }
  19. }
  20. .dataTables_length {
  21. select {
  22. margin-left: 0.5rem;
  23. }
  24. }
  25. .invoice-list-table {
  26. thead {
  27. th {
  28. &:before,
  29. &:after {
  30. left: auto;
  31. }
  32. &:last-child {
  33. &:before,
  34. &:after {
  35. display: none;
  36. }
  37. }
  38. }
  39. }
  40. tbody {
  41. .control:before {
  42. background-color: $primary;
  43. line-height: 1rem;
  44. font-family: $font-family-base;
  45. }
  46. .col-actions {
  47. a:not(.dropdown-item) {
  48. color: $body-color;
  49. }
  50. .dropdown {
  51. .dropdown-item {
  52. display: flex;
  53. align-items: center;
  54. }
  55. }
  56. }
  57. }
  58. }
  59. }
  60. @media (max-width: 470px) {
  61. .invoice_status {
  62. margin-top: 1rem;
  63. width: 100%;
  64. select {
  65. margin-left: 0 !important;
  66. }
  67. }
  68. }
  69. }
  70. // Datatables Responsive Modal
  71. .dtr-bs-modal {
  72. .modal-header {
  73. flex-direction: row-reverse;
  74. }
  75. .modal-body {
  76. padding-left: 0;
  77. padding-right: 0;
  78. .table {
  79. tr {
  80. td {
  81. border-color: $border-color;
  82. .col-actions {
  83. a:not(.dropdown-item) {
  84. color: $body-color;
  85. }
  86. }
  87. }
  88. }
  89. }
  90. }
  91. }