changelists.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. /* CHANGELISTS */
  2. #changelist {
  3. position: relative;
  4. width: 100%;
  5. }
  6. #changelist table {
  7. width: 100%;
  8. }
  9. .change-list .hiddenfields { display:none; }
  10. .change-list .filtered table {
  11. border-right: none;
  12. }
  13. .change-list .filtered {
  14. min-height: 400px;
  15. }
  16. .change-list .filtered .results, .change-list .filtered .paginator,
  17. .filtered #toolbar, .filtered div.xfull {
  18. margin-right: 280px;
  19. width: auto;
  20. }
  21. .change-list .filtered table tbody th {
  22. padding-right: 1em;
  23. }
  24. #changelist-form .results {
  25. overflow-x: auto;
  26. }
  27. #changelist .toplinks {
  28. border-bottom: 1px solid #ddd;
  29. }
  30. #changelist .paginator {
  31. color: #666;
  32. border-bottom: 1px solid #eee;
  33. background: #fff;
  34. overflow: hidden;
  35. }
  36. /* CHANGELIST TABLES */
  37. #changelist table thead th {
  38. padding: 0;
  39. white-space: nowrap;
  40. vertical-align: middle;
  41. }
  42. #changelist table thead th.action-checkbox-column {
  43. width: 1.5em;
  44. text-align: center;
  45. }
  46. #changelist table tbody td.action-checkbox {
  47. text-align: center;
  48. }
  49. #changelist table tfoot {
  50. color: #666;
  51. }
  52. /* TOOLBAR */
  53. #changelist #toolbar {
  54. padding: 8px 10px;
  55. margin-bottom: 15px;
  56. border-top: 1px solid #eee;
  57. border-bottom: 1px solid #eee;
  58. background: #f8f8f8;
  59. color: #666;
  60. }
  61. #changelist #toolbar form input {
  62. border-radius: 4px;
  63. font-size: 14px;
  64. padding: 5px;
  65. color: #333;
  66. }
  67. #changelist #toolbar form #searchbar {
  68. height: 19px;
  69. border: 1px solid #ccc;
  70. padding: 2px 5px;
  71. margin: 0;
  72. vertical-align: top;
  73. font-size: 13px;
  74. }
  75. #changelist #toolbar form #searchbar:focus {
  76. border-color: #999;
  77. }
  78. #changelist #toolbar form input[type="submit"] {
  79. border: 1px solid #ccc;
  80. font-size: 13px;
  81. padding: 4px 8px;
  82. margin: 0;
  83. vertical-align: middle;
  84. background: #fff;
  85. box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
  86. cursor: pointer;
  87. color: #333;
  88. }
  89. #changelist #toolbar form input[type="submit"]:focus,
  90. #changelist #toolbar form input[type="submit"]:hover {
  91. border-color: #999;
  92. }
  93. #changelist #changelist-search img {
  94. vertical-align: middle;
  95. margin-right: 4px;
  96. }
  97. /* FILTER COLUMN */
  98. #changelist-filter {
  99. position: absolute;
  100. top: 0;
  101. right: 0;
  102. z-index: 1000;
  103. width: 240px;
  104. background: #f8f8f8;
  105. border-left: none;
  106. margin: 0;
  107. }
  108. #changelist-filter h2 {
  109. font-size: 14px;
  110. text-transform: uppercase;
  111. letter-spacing: 0.5px;
  112. padding: 5px 15px;
  113. margin-bottom: 12px;
  114. border-bottom: none;
  115. }
  116. #changelist-filter h3 {
  117. font-weight: 400;
  118. font-size: 14px;
  119. padding: 0 15px;
  120. margin-bottom: 10px;
  121. }
  122. #changelist-filter ul {
  123. margin: 5px 0;
  124. padding: 0 15px 15px;
  125. border-bottom: 1px solid #eaeaea;
  126. }
  127. #changelist-filter ul:last-child {
  128. border-bottom: none;
  129. padding-bottom: none;
  130. }
  131. #changelist-filter li {
  132. list-style-type: none;
  133. margin-left: 0;
  134. padding-left: 0;
  135. }
  136. #changelist-filter a {
  137. display: block;
  138. color: #999;
  139. text-overflow: ellipsis;
  140. overflow-x: hidden;
  141. }
  142. #changelist-filter li.selected {
  143. border-left: 5px solid #eaeaea;
  144. padding-left: 10px;
  145. margin-left: -15px;
  146. }
  147. #changelist-filter li.selected a {
  148. color: #5b80b2;
  149. }
  150. #changelist-filter a:focus, #changelist-filter a:hover,
  151. #changelist-filter li.selected a:focus,
  152. #changelist-filter li.selected a:hover {
  153. color: #036;
  154. }
  155. /* DATE DRILLDOWN */
  156. .change-list ul.toplinks {
  157. display: block;
  158. float: left;
  159. padding: 0;
  160. margin: 0;
  161. width: 100%;
  162. }
  163. .change-list ul.toplinks li {
  164. padding: 3px 6px;
  165. font-weight: bold;
  166. list-style-type: none;
  167. display: inline-block;
  168. }
  169. .change-list ul.toplinks .date-back a {
  170. color: #999;
  171. }
  172. .change-list ul.toplinks .date-back a:focus,
  173. .change-list ul.toplinks .date-back a:hover {
  174. color: #036;
  175. }
  176. /* PAGINATOR */
  177. .paginator {
  178. font-size: 13px;
  179. padding-top: 10px;
  180. padding-bottom: 10px;
  181. line-height: 22px;
  182. margin: 0;
  183. border-top: 1px solid #ddd;
  184. }
  185. .paginator a:link, .paginator a:visited {
  186. padding: 2px 6px;
  187. background: #79aec8;
  188. text-decoration: none;
  189. color: #fff;
  190. }
  191. .paginator a.showall {
  192. padding: 0;
  193. border: none;
  194. background: none;
  195. color: #5b80b2;
  196. }
  197. .paginator a.showall:focus, .paginator a.showall:hover {
  198. background: none;
  199. color: #036;
  200. }
  201. .paginator .end {
  202. margin-right: 6px;
  203. }
  204. .paginator .this-page {
  205. padding: 2px 6px;
  206. font-weight: bold;
  207. font-size: 13px;
  208. vertical-align: top;
  209. }
  210. .paginator a:focus, .paginator a:hover {
  211. color: white;
  212. background: #036;
  213. }
  214. /* ACTIONS */
  215. .filtered .actions {
  216. margin-right: 280px;
  217. border-right: none;
  218. }
  219. #changelist table input {
  220. margin: 0;
  221. vertical-align: baseline;
  222. }
  223. #changelist table tbody tr.selected {
  224. background-color: #FFFFCC;
  225. }
  226. #changelist .actions {
  227. padding: 10px;
  228. background: #fff;
  229. border-top: none;
  230. border-bottom: none;
  231. line-height: 24px;
  232. color: #999;
  233. }
  234. #changelist .actions.selected {
  235. background: #fffccf;
  236. border-top: 1px solid #fffee8;
  237. border-bottom: 1px solid #edecd6;
  238. }
  239. #changelist .actions span.all,
  240. #changelist .actions span.action-counter,
  241. #changelist .actions span.clear,
  242. #changelist .actions span.question {
  243. font-size: 13px;
  244. margin: 0 0.5em;
  245. display: none;
  246. }
  247. #changelist .actions:last-child {
  248. border-bottom: none;
  249. }
  250. #changelist .actions select {
  251. vertical-align: top;
  252. height: 24px;
  253. background: none;
  254. color: #000;
  255. border: 1px solid #ccc;
  256. border-radius: 4px;
  257. font-size: 14px;
  258. padding: 0 0 0 4px;
  259. margin: 0;
  260. margin-left: 10px;
  261. }
  262. #changelist .actions select:focus {
  263. border-color: #999;
  264. }
  265. #changelist .actions label {
  266. display: inline-block;
  267. vertical-align: middle;
  268. font-size: 13px;
  269. }
  270. #changelist .actions .button {
  271. font-size: 13px;
  272. border: 1px solid #ccc;
  273. border-radius: 4px;
  274. background: #fff;
  275. box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
  276. cursor: pointer;
  277. height: 24px;
  278. line-height: 1;
  279. padding: 4px 8px;
  280. margin: 0;
  281. color: #333;
  282. }
  283. #changelist .actions .button:focus, #changelist .actions .button:hover {
  284. border-color: #999;
  285. }