styles.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. :root {
  2. --bs-app-header-height: 64px;
  3. --bs-app-header-height-actual: 64px;
  4. }
  5. *{
  6. margin: 0;
  7. padding: 0;
  8. box-sizing: border-box;
  9. }
  10. .app-container {
  11. padding: 0!important;
  12. }
  13. .app-body-header{
  14. display: flex;
  15. align-items: center;
  16. padding: 0 30px;
  17. border-bottom: 2px solid var(--bs-border-color);
  18. }
  19. .app-body-header h3{
  20. margin-bottom: 0;
  21. padding: 3px 15px;
  22. border-right: 2px solid #666;
  23. }
  24. .app-footer{
  25. border-top: 2px solid var(--bs-border-color);
  26. background: #f9f9f9;
  27. }
  28. .nav-tabs.nav-line-tabs .nav-link.active {
  29. color: var(--bs-primary);
  30. }
  31. body > .container, body > .container-fluid{
  32. padding: 0;
  33. margin: 0;
  34. }
  35. .header
  36. .table-box{
  37. position: relative;
  38. width: 100%;
  39. height: 100%;
  40. min-height: 300px;
  41. }
  42. .table-box, .table-box .table {
  43. width: 100%;
  44. }
  45. .table-box th,.table-box td{
  46. text-align: center;
  47. vertical-align: middle;
  48. height: 40px;
  49. padding: 3px 5px;
  50. }
  51. .table-box th{
  52. font-weight: 600;
  53. font-size: 16px;
  54. height: 45px;
  55. }
  56. .table-box td > .link:hover{
  57. border-bottom: 2px solid;
  58. }
  59. .table-box td > .btn{
  60. padding: calc(.2rem + 1px) calc(.4rem + 1px)!important;
  61. margin: 0 5px;
  62. --bs-btn-border-radius: .3rem;
  63. }
  64. .table-box td > .btn-icon{
  65. width: 25px!important;
  66. height: 25px!important;
  67. }
  68. .table-box td > .link:hover{
  69. border-bottom: 2px solid;
  70. }
  71. .table-box .table-loading{
  72. position: absolute;
  73. top:0;
  74. bottom: 0;
  75. left:0;
  76. right: 0;
  77. display: flex;
  78. align-items: center;
  79. justify-content: center;
  80. /*background: rgba(0,0,0,.15);*/
  81. min-height: 300px;
  82. }
  83. .table-box .table-loading span{
  84. font-size: 16px;
  85. color: #666;
  86. }
  87. .pagination-row{
  88. width: 100%;
  89. display: flex;
  90. justify-content: space-between;
  91. }
  92. .form-check-input,.form-check-label{
  93. cursor: pointer;
  94. }
  95. .form-check-input:disabled, .form-check-input:disabled + .form-check-label{
  96. cursor: not-allowed;
  97. }