custom.css.scss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. .roundtop {
  2. -moz-border-radius: 5px 5px 0 0;
  3. -webkit-border-radius: 5px 5px 0 0;
  4. border-radius: 5px 5px 0 0;
  5. }
  6. .settingscontainer {
  7. border: 1px solid #ccc;
  8. padding: 5px;
  9. margin-bottom: 5px;
  10. width: 738px !important;
  11. }
  12. .noticecontainer, .errorcontainer {
  13. border: none;
  14. padding: 5px 5px 0px 5px;
  15. width: 738px;
  16. }
  17. input[disabled] {
  18. background-color: #ededed !important;
  19. }
  20. input[readonly] {
  21. background-color: #ededed !important;
  22. }
  23. th {
  24. background-color: #ccc !important;
  25. }
  26. .field_with_errors {
  27. float: left !important;
  28. margin-right: 10px !important;
  29. padding: 0px !important;
  30. input {
  31. background-color: #ffc7c7 !important;
  32. }
  33. }
  34. #error_explanation {
  35. width: 738px !important;
  36. border: 1px solid #c00 !important;
  37. padding: 5px !important;
  38. padding-bottom: 0;
  39. margin-bottom: 20px;
  40. background-color: #f0f0f0;
  41. h2 {
  42. text-align: left;
  43. font-weight: bold;
  44. padding: 5px 5px 5px 15px;
  45. font-size: 12px;
  46. margin: 0px !important;
  47. margin-bottom: 0px;
  48. background-color: #ff9497;
  49. color: #fff;
  50. }
  51. ul li {
  52. font-size: 12px;
  53. list-style: square;
  54. }
  55. }
  56. input[type=number] {
  57. background-color: #fff;
  58. border:1px solid #bbb !important;
  59. color:#000;
  60. margin:0.5em 0;
  61. }
  62. input[type=number]:focus {
  63. border-color:#666 !important;
  64. }
  65. input {
  66. font-size: 12px;
  67. }
  68. select {
  69. font-size: 12px;
  70. }
  71. body {
  72. font-family: Arial,Helvetica,sans-serif !important;
  73. font-size: 12px !important;
  74. }
  75. .view_details {
  76. td {
  77. border: 1px solid #ccc;
  78. height: 35px;
  79. }
  80. .col1 {
  81. width: 45%;
  82. font-weight: bold;
  83. text-align: right;
  84. }
  85. }
  86. table.view_details tbody tr td {
  87. background-color: #ffffe0;
  88. }
  89. table.view_details tbody tr.actions td {
  90. background-color: #ffffff;
  91. }
  92. div.settingsbackground {
  93. background-color: #ffffe0 !important;
  94. }
  95. #tabs {
  96. font-family: Arial,Helvetica,sans-serif !important;
  97. font-size: 12px !important;
  98. a:hover {
  99. background-color: #ffffe0;
  100. }
  101. }
  102. #progressbar {
  103. height: 15px;
  104. margin-bottom: 10px;
  105. }
  106. .progress-label {
  107. float: left;
  108. left: 50%;
  109. top: 0px;
  110. font-weight: bold;
  111. text-shadow: 1px 1px 0 #fff;
  112. font-size: 9px !important;
  113. padding-left: 5px;
  114. }
  115. #progressbar .ui-progressbar-value {
  116. background-color: #f0f0f0;
  117. }
  118. div.processing {
  119. background-color: #f0f0f0;
  120. }
  121. .create_button {
  122. background-color: #f0f0f0;
  123. text-decoration: none;
  124. padding: 2px 6px 2px 6px;
  125. border-top: 1px solid #CCCCCC;
  126. border-right: 1px solid #333333;
  127. border-bottom: 1px solid #333333;
  128. border-left: 1px solid #CCCCCC;
  129. }
  130. .create_button:hover {
  131. background-color: #ffffe0;
  132. }
  133. .list_table {
  134. table-layout: fixed;
  135. }
  136. .list_table td {
  137. overflow: hidden;
  138. white-space: nowrap;
  139. text-overflow: ellipsis;
  140. }
  141. .span-half {
  142. width: 18px;
  143. float: left;
  144. margin-right: 10px;
  145. }
  146. .span-9-half {
  147. width: 364px;
  148. float: left;
  149. margin-right: 10px;
  150. }