bootstrap-table.css 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .table {
  2. margin-bottom: 0;
  3. border-bottom: 1px solid #dddddd;
  4. border-collapse: separate;
  5. *border-collapse: collapse;
  6. }
  7. .fixed-table-container {
  8. position: relative;
  9. padding-top: 38px;
  10. border: 1px solid #dddddd;
  11. border-radius: 4px;
  12. -webkit-border-radius: 4px;
  13. -moz-border-radius: 4px;
  14. }
  15. .fixed-table-header {
  16. height: 37px;
  17. position: absolute;
  18. top: 0;
  19. right: 0;
  20. left: 0;
  21. border-bottom: 1px solid #dddddd;
  22. border-radius: 4px 4px 0 0;
  23. -webkit-border-radius: 4px 4px 0 0;
  24. -moz-border-radius: 4px 4px 0 0;
  25. }
  26. .fixed-table-body {
  27. overflow-x: hidden;
  28. overflow-y: auto;
  29. height: 100%;
  30. }
  31. .fixed-table-body table {
  32. width: 100%;
  33. overflow-x: hidden;
  34. overflow-y: auto;
  35. }
  36. .fixed-table-body thead th {
  37. height: 0;
  38. padding: 0;
  39. margin: 0;
  40. border: none;
  41. }
  42. .fixed-table-body thead th .th-inner {
  43. position: absolute;
  44. top: 0;
  45. padding: 8px;
  46. line-height: 22px;
  47. vertical-align: top;
  48. border-left: 1px solid #dddddd;
  49. }
  50. .fixed-table-body thead th:first-child .th-inner {
  51. border-left: none;
  52. border-top-left-radius: 4px;
  53. -webkit-border-top-left-radius: 4px;
  54. -moz-border-radius-topleft: 4px;
  55. }
  56. .fixed-table-body tbody td {
  57. border-left: 1px solid #dddddd;
  58. }
  59. .fixed-table-body tbody td:first-child {
  60. border-left: none;
  61. }