bootstrap-table-wr.css 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. .bootstrap-table .table thead > tr > th {
  2. opacity: 0.7;
  3. background: #EBEEF7;
  4. height: 40px;
  5. border-radius: 4px;
  6. border: none;
  7. }
  8. .fixed-table-container tbody td .th-inner, .fixed-table-container thead th .th-inner {
  9. font-size: 14px;
  10. color: #333333;
  11. letter-spacing: 0;
  12. line-height: 14px;
  13. padding: 13px 8px;
  14. }
  15. .table > tbody > tr > td {
  16. font-size: 14px;
  17. color: #666666;
  18. letter-spacing: 0;
  19. line-height: 20px;
  20. border: none;
  21. }
  22. .bootstrap-table .table:not(.table-condensed) > tbody > tr > td {
  23. padding: 10px 8px 5px;
  24. }
  25. .table-striped > tbody > tr:nth-of-type(2n) {
  26. background-color: #EBEEF7;
  27. background-color: rgba(235, 238, 247,.5);
  28. }
  29. .table-striped > tbody > tr:nth-of-type(2n+1) {
  30. background-color: #f9f9f9;
  31. }
  32. .bootstrap-table .table-hover > tbody > tr:hover {
  33. background-color: #D1DCF9;
  34. }
  35. .fixed-table-container tbody .selected td,
  36. .fixed-table-container tbody .selected td:hover {
  37. background-color: transparent;
  38. }
  39. .fixed-table-pagination > .pagination-detail .dropdown-toggle.btn-primary {
  40. color: #3c3c3c;
  41. background: #FFFFFF;
  42. border: 1px solid #DDDDDD;
  43. border-radius: 2px;
  44. }
  45. .fixed-table-pagination > .pagination-detail .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
  46. color: #3c3c3c;
  47. background: #FFFFFF;
  48. border: 1px solid #DDDDDD;
  49. border-radius: 2px;
  50. }
  51. .fixed-table-pagination > .pagination-detail .dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
  52. color: #fff;
  53. text-decoration: none;
  54. background-color: #678CEB;
  55. outline: 0;
  56. }
  57. .fixed-table-pagination > .pagination-detail .dropdown-menu > li > a:hover {
  58. background-color: #D1DCF9;
  59. color: #333;
  60. }
  61. .fixed-table-pagination > .pagination .pagination > li > a {
  62. font-size: 14px;
  63. text-align: center;
  64. margin: 0 3px;
  65. border-radius: 2px;
  66. color: #333333;
  67. }
  68. .fixed-table-pagination > .pagination .pagination > li > a:hover {
  69. background: #D1DCF9;
  70. }
  71. .fixed-table-pagination > .pagination .pagination > li.active > a {
  72. color: #FFFFFF;
  73. background: #678CEB;
  74. border: 1px solid #678CEB;
  75. }