admin.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  1. body {
  2. font-size: 14px;
  3. }
  4. video::-internal-media-controls-download-button {
  5. display:none;
  6. }
  7. video::-webkit-media-controls-enclosure {
  8. overflow:hidden;
  9. }
  10. video::-webkit-media-controls-panel {
  11. width: calc(100% + 30px); /* Adjust as needed */
  12. }
  13. .btn, .input-group .input-group-btn .btn {
  14. border-width: 1px;
  15. }
  16. .webui-popover i.icon-refresh {
  17. background: none !important;
  18. }
  19. .modal-confirm-message {
  20. font-size: 16px;
  21. margin: 10px 0;
  22. }
  23. .actions-bar {
  24. margin-bottom: 10px;
  25. }
  26. .search-form .input-group input[type=text] {
  27. width: 100%;
  28. }
  29. .search-form .input-group-btn .fa {
  30. line-height: 20px;
  31. }
  32. .status.bordered {
  33. border-width: 2px;
  34. border-style: solid;
  35. padding: 2px 10px;
  36. }
  37. .status-pending, .status-withdrawing {
  38. color: orange;
  39. border-color: orange;
  40. }
  41. .status-paid {
  42. color: #5cb85c;
  43. border-color: #5cb85c;
  44. }
  45. .required {
  46. color: red;
  47. margin-left: 3px;
  48. }
  49. .link-buttons {
  50. padding: 5px;
  51. background: #f9f9f9;
  52. }
  53. .link-buttons > a {
  54. display: inline-block;
  55. margin: 0 10px;
  56. }
  57. .pager {
  58. text-align: right;
  59. }
  60. .pager .pager-summary {
  61. display: inline-block;
  62. margin: 20px;
  63. vertical-align: bottom;
  64. }
  65. .pager .pager-summary em {
  66. font-style: normal;
  67. font-weight: bold;
  68. }
  69. .loading-panel {
  70. color: #ddd;
  71. font-size: 18px;
  72. text-align: center;
  73. padding: 50px 0;
  74. }
  75. .loading-panel .fa {
  76. font-size: 46px;
  77. }
  78. .no-record {
  79. text-align: center;
  80. padding: 50px 0;
  81. }
  82. .no-record .no-record-icon {
  83. font-size: 60px;
  84. color: #ddd;
  85. }
  86. .no-record .no-record-text {
  87. color: #aaa;
  88. margin-top: 10px;
  89. }
  90. .form-control-static {
  91. padding-top: 4px;
  92. }
  93. .btn-pending, .btn-pending:focus {
  94. background-color: #ffb752 !important;
  95. border-color: #ffb752;
  96. }
  97. .btn-pending:hover {
  98. background-color: #e59729 !important;
  99. border-color: #ffb752;
  100. }
  101. .btn-paid, .btn-paid:focus {
  102. background-color: #87b87f !important;
  103. border-color: #87b87f;
  104. }
  105. .btn-paid:hover {
  106. background-color: #629b58 !important;
  107. border-color: #87b87f;
  108. }
  109. .btn-closed {
  110. background-color: #abbac3!important;
  111. border-color: #abbac3;
  112. }
  113. .btn-closed:hover {
  114. background-color: #8b9aa3!important;
  115. border-color: #abbac3;
  116. }
  117. .btn-group>.btn {
  118. border-width: 0;
  119. }
  120. .btn-group>.btn>.caret, .btn-group>.btn.btn-xs>.caret {
  121. margin-top: 0;
  122. }
  123. .field-validation-error {
  124. color: red !important;
  125. }
  126. .popover {
  127. max-width: 400px;
  128. }
  129. .nav-pills > li > a {
  130. padding: 7px 12px 8px;
  131. }
  132. .nav-pills-sm > li > a {
  133. padding: 4px 12px;
  134. }
  135. .label-sm {
  136. height: 17px;
  137. }
  138. #view-chapter-modal .chapter-content p {
  139. font-size: 14px;
  140. line-height: 1.7em;
  141. }
  142. .bill-detail {
  143. border: #ddd 1px solid;
  144. padding: 10px;
  145. }
  146. .bill-detail label {
  147. font-size: 14px;
  148. font-weight: bold;
  149. }
  150. .bill-detail .value {
  151. font-size: 16px;
  152. margin: 10px 0;
  153. }
  154. .bill-detail .amount {
  155. color: #00a0e9;
  156. font-size: 32px;
  157. }
  158. .bill-detail .bill-cell {
  159. padding: 10px;
  160. }
  161. .bill-detail .remark-lines {
  162. line-height: 1.7em;
  163. color: #666;
  164. }
  165. .bill-detail .bill-bank-info {
  166. line-height: 1.7em;
  167. }
  168. .bill-detail .bill-bank-info label {
  169. margin-right: 5px;
  170. }
  171. .bill-detail .status {
  172. font-size: 32px;
  173. display: inline-block;
  174. margin-bottom: 10px;
  175. }
  176. /* Template Message */
  177. .template-msg-editor {
  178. border: #ddd 1px solid;
  179. border-radius: 4px;
  180. padding: 8px;
  181. background: white;
  182. width: 400px;
  183. }
  184. .template-msg-title {
  185. font-weight:bold;
  186. }
  187. .template-msg-meta {
  188. color: #999;
  189. font-size: 12px;
  190. }
  191. .template-msg-main {
  192. margin: 10px 0 5px;
  193. font-size: 13px;
  194. line-height: 1.7em;
  195. vertical-align: middle;
  196. }
  197. .template-msg-main .btn-edit {
  198. color: red;
  199. cursor: pointer;
  200. }