customer.component.css 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. tr .even{background:red !important;}
  2. tfoot input {
  3. width: 100%;
  4. padding: 3px;
  5. box-sizing: border-box;
  6. }
  7. tr.highlight {
  8. background-color: blue !important;
  9. }
  10. td,th {
  11. border: 1px solid #dad8d8 ;
  12. border-collapse: collapse;
  13. color: #0e0b0b;
  14. font-size: 15px;
  15. }
  16. table.dataTable {
  17. width: 100%;
  18. margin: 0 auto;
  19. clear: both;
  20. border-collapse: collapse;
  21. }
  22. table{ border-collapse: collapse}
  23. tr {
  24. border-right: 1px solid #dad8d8 !important;
  25. border-collapse: collapse;
  26. }
  27. table.dataTable tbody tr{ border-right: 1px solid #dad8d8 !important;}
  28. table.dataTable.display tbody tr:hover > .sorting_1, table.dataTable.display tbody tr.odd:hover > .sorting_1{background-color:#f5f5f5 !important}
  29. table.dataTable thead > tr > th.sorting{background: #ffe8cb;}
  30. table.dataTable.display > tbody > tr.odd > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.odd > .sorting_1 {
  31. box-shadow: none;
  32. }
  33. table.dataTable.display > tbody > tr.even > .sorting_1, table.dataTable.order-column.stripe > tbody > tr.even > .sorting_1 {
  34. box-shadow: none;
  35. }
  36. a > .current{padding:0px 10px 0px 10px !important}
  37. table.dataTable.row-border tbody th, table.dataTable.row-border tbody td, table.dataTable.display tbody th, table.dataTable.display tbody td {
  38. height: 28px;
  39. }
  40. .form-control:focus {
  41. border-color: #cacdd1 !important;
  42. }
  43. th{background: #ffe8cb !important;}
  44. .add-panel {
  45. position: fixed;
  46. top: 0;
  47. right: -400px;
  48. width: 380px;
  49. height: 100%;
  50. background: #ffffff;
  51. box-shadow: -4px 0 10px rgba(0,0,0,0.2);
  52. transition: right 0.3s ease-in-out;
  53. z-index: 1050;
  54. }
  55. .add-panel.open {
  56. right: 0;
  57. }
  58. .add-panel-header {
  59. padding: 15px;
  60. background: #f9b523;
  61. color: #000;
  62. display: flex;
  63. justify-content: space-between;
  64. align-items: center;
  65. }
  66. .add-panel-body {
  67. padding: 20px;
  68. }
  69. .close-btn {
  70. background: none;
  71. border: none;
  72. font-size: 22px;
  73. cursor: pointer;
  74. }
  75. .sort-btn {
  76. padding: 0 4px;
  77. background: none;
  78. border: none;
  79. cursor: pointer;
  80. font-size: 12px;
  81. }
  82. .sort-btn:hover, .filter-btn:hover {
  83. color: #007bff;
  84. }