_2nd.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. $table-border-color: #eff3f8;
  2. body.dcat-2nd {
  3. table.dataTable {
  4. border-collapse:collapse!important;
  5. margin-top: 0!important;
  6. }
  7. .custom-data-table.dcat-box {
  8. background: $white;
  9. box-shadow: $shadow;
  10. .box-footer {
  11. border-top: 1px solid $table-border-color;
  12. padding-bottom: 10px!important;
  13. }
  14. }
  15. .custom-data-table-header {
  16. padding: 10px;
  17. .btn {
  18. background-color: transparent !important;
  19. border-color: transparent !important;
  20. box-shadow: none!important;
  21. color: $dark80!important;
  22. font-weight: bold;
  23. //font-size: 14px;
  24. }
  25. .btn-group {
  26. box-shadow: none!important;
  27. }
  28. }
  29. table.custom-data-table.dataTable tbody tr td:first-child {
  30. border-top-left-radius: 0;
  31. border-bottom-left-radius: 0;
  32. }
  33. table.custom-data-table.dataTable tbody tr td:last-child{
  34. border-top-right-radius: 0;
  35. border-bottom-right-radius: 0;
  36. }
  37. table.dataTable thead tr {
  38. background: $white;
  39. }
  40. table.custom-data-table.dataTable thead th {
  41. border-top: 1px solid #e3e7eb;
  42. border-bottom: 1px solid #e3e7eb;
  43. background: $dark30;
  44. }
  45. table.custom-data-table.dataTable tbody td {
  46. border-top: 1px solid $table-border-color;
  47. height: 38px;
  48. }
  49. table.custom-data-table.dataTable tbody tr {
  50. box-shadow: none;
  51. }
  52. .custom-data-table-header .table-responsive .top .dataTables_filter .form-control {
  53. box-shadow: none;
  54. border-radius: 0;
  55. border-bottom: 2px solid $input-border-color;
  56. }
  57. }
  58. body.dcat-2nd.dark-mode {
  59. }