panel.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. body {
  2. padding: 0;
  3. margin: 0;
  4. font-family: 'Open Sans', sans-serif;
  5. }
  6. #sidebar {
  7. display: none;
  8. float: left;
  9. width: 200px;
  10. height: 100%;
  11. background: #d6dde5;
  12. border-right: #B3B3B3;
  13. border-right-width: 1px;
  14. border-right-style: solid;
  15. }
  16. #main {
  17. float: none;
  18. width: auto;
  19. height: 100%;
  20. margin-bottom: 30px;
  21. background: #ffffff;
  22. }
  23. .datagrid table {
  24. border-collapse: collapse;
  25. text-align: left;
  26. width: 100%;
  27. margin: 0;
  28. }
  29. .datagrid {
  30. background: #fff;
  31. overflow: hidden;
  32. -webkit-border-radius: 3px;
  33. -moz-border-radius: 3px;
  34. border-radius: 3px;
  35. }
  36. .datagrid table td, .datagrid table th {
  37. padding: 3px 10px;
  38. }
  39. .datagrid table thead th {
  40. background: 0;
  41. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E7E7E7', endColorstr='#FFFFFF');
  42. background-color: #E7E7E7;
  43. color: #000;
  44. font-size: 12px;
  45. font-weight: 700;
  46. border-left: 1px solid #B3B3B3;
  47. }
  48. .datagrid table thead th:first-child {
  49. border: none;
  50. }
  51. .datagrid table tbody td {
  52. color: #000;
  53. border-left: 1px solid #B3B3B3;
  54. font-size: 12px;
  55. font-weight: 400;
  56. }
  57. .datagrid table tbody tr:nth-child(even) {
  58. background: #FAFAFA !important;
  59. color: #000;
  60. }
  61. .datagrid table tbody td:first-child {
  62. border-left: none;
  63. }
  64. .datagrid table tbody tr:last-child td {
  65. border-bottom: none;
  66. }
  67. .minColumn {
  68. width: 1px;
  69. }
  70. .medColumn {
  71. width: 200px;
  72. }
  73. form {
  74. margin: 0;
  75. padding: 0;
  76. }
  77. .hiddenColumn {
  78. display: none;
  79. }
  80. tr td {
  81. width: auto;
  82. max-width: 1px;
  83. /* Fix for tablesorter not resizing well columns */
  84. overflow: hidden;
  85. white-space: nowrap;
  86. text-overflow: ellipsis;
  87. background-color: transparent !important;
  88. }
  89. tr td:nth-of-type(3) textarea {
  90. min-height: 50px;
  91. }
  92. tr td:nth-of-type(6) textarea {
  93. min-height: 50px;
  94. }
  95. textarea {
  96. resize: vertical;
  97. }
  98. .disabled {
  99. color: #919191 !important;
  100. }
  101. .datagrid table tbody tr:hover {
  102. background: #DEECFF !important;
  103. }
  104. #beta_alter {
  105. position: fixed;
  106. display: table;
  107. vertical-align: middle;
  108. bottom: 0;
  109. left: 0;
  110. right: 0;
  111. width: 100%;
  112. height: 30px;
  113. background-color: #FFC2C2;
  114. text-align: center;
  115. color: #000;
  116. }
  117. #beta_alter>div {
  118. display: table-cell;
  119. vertical-align: middle;
  120. }
  121. #beta_alter a {
  122. color: red;
  123. }