Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

139 строки
2.2 KiB

  1. .table-responsive {
  2. display: block;
  3. width: 100%;
  4. overflow-x: auto;
  5. }
  6. table {
  7. width: 100%;
  8. img {
  9. width: 40px;
  10. height: auto;
  11. }
  12. }
  13. th.mat-sort-header-sorted {
  14. color: black;
  15. }
  16. .mat-mdc-table {
  17. .mdc-data-table__cell,
  18. .mdc-data-table__header-cell {
  19. padding-top: 8px;
  20. padding-bottom: 8px;
  21. @include transition();
  22. }
  23. .mat-mdc-row {
  24. &:hover {
  25. .mdc-data-table__cell {
  26. background: #f6f6f6;
  27. }
  28. }
  29. }
  30. }
  31. .mat-elevation-z8,
  32. .mat-mdc-elevation-specific.mat-elevation-z8 {
  33. box-shadow: none;
  34. th {
  35. background: #f2f2f2 !important;
  36. border-top: 1px solid #304049;
  37. font-weight: 600;
  38. }
  39. }
  40. .spt-tools {
  41. display: flex;
  42. justify-content: space-between;
  43. align-items: center;
  44. border-top: 1px solid #2b3a44;
  45. min-height: 57px;
  46. &.single {
  47. justify-content: flex-end;
  48. }
  49. }
  50. .spt-clear {
  51. position: absolute;
  52. right: 10px;
  53. top: 50%;
  54. background: #fff;
  55. width: 20px;
  56. height: 30px;
  57. cursor: pointer;
  58. transform: translate(0, -50%);
  59. &:before, &:after {
  60. content: "";
  61. position: absolute;
  62. left: 50%;
  63. top: 50%;
  64. width: 10px;
  65. height: 2px;
  66. background: #000;
  67. }
  68. &:before {
  69. transform: translate(-50%, -50%) rotate(45deg);
  70. }
  71. &:after {
  72. transform: translate(-50%, -50%) rotate(-45deg);
  73. }
  74. }
  75. .spt-no-entries {
  76. padding: 20px 16px;
  77. }
  78. .mat-mdc-paginator {
  79. background: transparent !important;
  80. .mat-mdc-paginator-container {
  81. display: flex;
  82. justify-content: flex-start;
  83. }
  84. .mat-mdc-paginator-page-size-label,
  85. .mat-mdc-paginator-range-label {
  86. color: #C1C1C1;
  87. }
  88. .mat-mdc-text-field-wrapper {
  89. border-radius: 0;
  90. }
  91. .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__leading,
  92. .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__notch,
  93. .mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline .mdc-notched-outline__trailing {
  94. border: none;
  95. }
  96. .mat-mdc-header-cell {
  97. border: none;
  98. }
  99. .mat-mdc-cell {
  100. border-bottom: 1px solid #c1c1c1;
  101. }
  102. tbody {
  103. tr:first-child {
  104. td {
  105. }
  106. }
  107. }
  108. }
  109. app-paging > .mat-mdc-paginator:first-child {
  110. border-width: 4px;
  111. }
  112. .spt-button-td {
  113. width: 85px;
  114. }