changelists.css 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  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. padding: 2px 10px;
  81. margin: 0;
  82. vertical-align: middle;
  83. background: #fff;
  84. box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
  85. cursor: pointer;
  86. color: #333;
  87. }
  88. #changelist #toolbar form input[type="submit"]:focus,
  89. #changelist #toolbar form input[type="submit"]:hover {
  90. border-color: #999;
  91. }
  92. #changelist #changelist-search img {
  93. vertical-align: middle;
  94. margin-right: 4px;
  95. }
  96. /* FILTER COLUMN */
  97. #changelist-filter {
  98. position: absolute;
  99. top: 0;
  100. right: 0;
  101. z-index: 1000;
  102. width: 240px;
  103. background: #f8f8f8;
  104. border-left: none;
  105. margin: 0;
  106. }
  107. #changelist-filter h2 {
  108. font-size: 14px;
  109. text-transform: uppercase;
  110. letter-spacing: 0.5px;
  111. padding: 5px 15px;
  112. margin-bottom: 12px;
  113. border-bottom: none;
  114. }
  115. #changelist-filter h3 {
  116. font-weight: 400;
  117. font-size: 14px;
  118. padding: 0 15px;
  119. margin-bottom: 10px;
  120. }
  121. #changelist-filter ul {
  122. margin: 5px 0;
  123. padding: 0 15px 15px;
  124. border-bottom: 1px solid #eaeaea;
  125. }
  126. #changelist-filter ul:last-child {
  127. border-bottom: none;
  128. padding-bottom: none;
  129. }
  130. #changelist-filter li {
  131. list-style-type: none;
  132. margin-left: 0;
  133. padding-left: 0;
  134. }
  135. #changelist-filter a {
  136. display: block;
  137. color: #999;
  138. text-overflow: ellipsis;
  139. overflow-x: hidden;
  140. }
  141. #changelist-filter li.selected {
  142. border-left: 5px solid #eaeaea;
  143. padding-left: 10px;
  144. margin-left: -15px;
  145. }
  146. #changelist-filter li.selected a {
  147. color: #5b80b2;
  148. }
  149. #changelist-filter a:focus, #changelist-filter a:hover,
  150. #changelist-filter li.selected a:focus,
  151. #changelist-filter li.selected a:hover {
  152. color: #036;
  153. }
  154. /* DATE DRILLDOWN */
  155. .change-list ul.toplinks {
  156. display: block;
  157. float: left;
  158. padding: 0;
  159. margin: 0;
  160. width: 100%;
  161. }
  162. .change-list ul.toplinks li {
  163. padding: 3px 6px;
  164. font-weight: bold;
  165. list-style-type: none;
  166. display: inline-block;
  167. }
  168. .change-list ul.toplinks .date-back a {
  169. color: #999;
  170. }
  171. .change-list ul.toplinks .date-back a:focus,
  172. .change-list ul.toplinks .date-back a:hover {
  173. color: #036;
  174. }
  175. /* PAGINATOR */
  176. .paginator {
  177. font-size: 13px;
  178. padding-top: 10px;
  179. padding-bottom: 10px;
  180. line-height: 22px;
  181. margin: 0;
  182. border-top: 1px solid #ddd;
  183. }
  184. .paginator a:link, .paginator a:visited {
  185. padding: 2px 6px;
  186. background: #79aec8;
  187. text-decoration: none;
  188. color: #fff;
  189. }
  190. .paginator a.showall {
  191. padding: 0;
  192. border: none;
  193. background: none;
  194. color: #5b80b2;
  195. }
  196. .paginator a.showall:focus, .paginator a.showall:hover {
  197. background: none;
  198. color: #036;
  199. }
  200. .paginator .end {
  201. margin-right: 6px;
  202. }
  203. .paginator .this-page {
  204. padding: 2px 6px;
  205. font-weight: bold;
  206. font-size: 13px;
  207. vertical-align: top;
  208. }
  209. .paginator a:focus, .paginator a:hover {
  210. color: white;
  211. background: #036;
  212. }
  213. /* ACTIONS */
  214. .filtered .actions {
  215. margin-right: 280px;
  216. border-right: none;
  217. }
  218. #changelist table input {
  219. margin: 0;
  220. vertical-align: baseline;
  221. }
  222. #changelist table tbody tr.selected {
  223. background-color: #FFFFCC;
  224. }
  225. #changelist .actions {
  226. padding: 10px;
  227. background: #fff;
  228. border-top: none;
  229. border-bottom: none;
  230. line-height: 24px;
  231. color: #999;
  232. }
  233. #changelist .actions.selected {
  234. background: #fffccf;
  235. border-top: 1px solid #fffee8;
  236. border-bottom: 1px solid #edecd6;
  237. }
  238. #changelist .actions span.all,
  239. #changelist .actions span.action-counter,
  240. #changelist .actions span.clear,
  241. #changelist .actions span.question {
  242. font-size: 13px;
  243. margin: 0 0.5em;
  244. display: none;
  245. }
  246. #changelist .actions:last-child {
  247. border-bottom: none;
  248. }
  249. #changelist .actions select {
  250. vertical-align: top;
  251. height: 24px;
  252. background: none;
  253. color: #000;
  254. border: 1px solid #ccc;
  255. border-radius: 4px;
  256. font-size: 14px;
  257. padding: 0 0 0 4px;
  258. margin: 0;
  259. margin-left: 10px;
  260. }
  261. #changelist .actions select:focus {
  262. border-color: #999;
  263. }
  264. #changelist .actions label {
  265. display: inline-block;
  266. vertical-align: middle;
  267. font-size: 13px;
  268. }
  269. #changelist .actions .button {
  270. font-size: 13px;
  271. border: 1px solid #ccc;
  272. border-radius: 4px;
  273. background: #fff;
  274. box-shadow: 0 -15px 20px -10px rgba(0, 0, 0, 0.15) inset;
  275. cursor: pointer;
  276. height: 24px;
  277. line-height: 1;
  278. padding: 4px 8px;
  279. margin: 0;
  280. color: #333;
  281. }
  282. #changelist .actions .button:focus, #changelist .actions .button:hover {
  283. border-color: #999;
  284. }