deprecated-media.css 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430
  1. /* Styles for the media library iframe (not used on the Library screen) */
  2. div#media-upload-header {
  3. margin: 0;
  4. padding: 5px 5px 0;
  5. font-weight: 600;
  6. position: relative;
  7. border-bottom: 1px solid #dcdcde;
  8. background: #f6f7f7;
  9. }
  10. #sidemenu {
  11. overflow: hidden;
  12. float: none;
  13. position: relative;
  14. left: 0;
  15. bottom: -1px;
  16. margin: 0 5px;
  17. padding-left: 10px;
  18. list-style: none;
  19. font-size: 12px;
  20. font-weight: 400;
  21. }
  22. #sidemenu a {
  23. padding: 0 7px;
  24. display: block;
  25. float: left;
  26. line-height: 28px;
  27. border-top: 1px solid #f6f7f7;
  28. border-bottom: 1px solid #dcdcde;
  29. background-color: #f6f7f7;
  30. text-decoration: none;
  31. transition: none;
  32. }
  33. #sidemenu li {
  34. display: inline;
  35. line-height: 200%;
  36. list-style: none;
  37. text-align: center;
  38. white-space: nowrap;
  39. margin: 0;
  40. padding: 0;
  41. }
  42. #sidemenu a.current {
  43. font-weight: 400;
  44. padding-left: 6px;
  45. padding-right: 6px;
  46. border: 1px solid #dcdcde;
  47. border-bottom-color: #f0f0f1;
  48. background-color: #f0f0f1;
  49. color: #000;
  50. }
  51. #media-upload:after { /* clearfix */
  52. content: "";
  53. display: table;
  54. clear: both;
  55. }
  56. #media-upload .slidetoggle {
  57. border-top-color: #dcdcde;
  58. }
  59. #media-upload input[type="radio"] {
  60. padding: 0;
  61. }
  62. .media-upload-form label.form-help,
  63. td.help {
  64. color: #646970;
  65. }
  66. form {
  67. margin: 1em;
  68. }
  69. #search-filter {
  70. text-align: right;
  71. }
  72. th {
  73. position: relative;
  74. }
  75. .media-upload-form label.form-help, td.help {
  76. font-family: sans-serif;
  77. font-style: italic;
  78. font-weight: 400;
  79. }
  80. .media-upload-form p.help {
  81. margin: 0;
  82. padding: 0;
  83. }
  84. .media-upload-form fieldset {
  85. width: 100%;
  86. border: none;
  87. text-align: justify;
  88. margin: 0 0 1em;
  89. padding: 0;
  90. }
  91. /* specific to the image upload form */
  92. .image-align-none-label {
  93. background: url(../images/align-none.png) no-repeat center left;
  94. }
  95. .image-align-left-label {
  96. background: url(../images/align-left.png) no-repeat center left;
  97. }
  98. .image-align-center-label {
  99. background: url(../images/align-center.png) no-repeat center left;
  100. }
  101. .image-align-right-label {
  102. background: url(../images/align-right.png) no-repeat center left;
  103. }
  104. tr.image-size td {
  105. width: 460px;
  106. }
  107. tr.image-size div.image-size-item {
  108. margin: 0 0 5px;
  109. }
  110. #library-form .progress,
  111. #gallery-form .progress,
  112. .insert-gallery,
  113. .describe.startopen,
  114. .describe.startclosed {
  115. display: none;
  116. }
  117. .media-item .thumbnail {
  118. max-width: 128px;
  119. max-height: 128px;
  120. }
  121. thead.media-item-info tr {
  122. background-color: transparent;
  123. }
  124. .form-table thead.media-item-info {
  125. border: 8px solid #fff;
  126. }
  127. abbr.required,
  128. span.required {
  129. text-decoration: none;
  130. border: none;
  131. }
  132. .describe label {
  133. display: inline;
  134. }
  135. .describe td.error {
  136. padding: 2px 8px;
  137. }
  138. .describe td.A1 {
  139. width: 132px;
  140. }
  141. .describe input[type="text"],
  142. .describe textarea {
  143. width: 460px;
  144. border-width: 1px;
  145. border-style: solid;
  146. }
  147. /* Specific to Uploader */
  148. #media-upload p.ml-submit {
  149. padding: 1em 0;
  150. }
  151. #media-upload p.help,
  152. #media-upload label.help {
  153. font-family: sans-serif;
  154. font-style: italic;
  155. font-weight: 400;
  156. }
  157. #media-upload .ui-sortable .media-item {
  158. cursor: move;
  159. }
  160. #media-upload tr.image-size {
  161. margin-bottom: 1em;
  162. height: 3em;
  163. }
  164. #media-upload #filter {
  165. width: 623px;
  166. }
  167. #media-upload #filter .subsubsub {
  168. margin: 8px 0;
  169. }
  170. #media-upload .tablenav-pages a,
  171. #media-upload .tablenav-pages .current {
  172. display: inline-block;
  173. padding: 4px 5px 6px;
  174. font-size: 16px;
  175. line-height: 1;
  176. text-align: center;
  177. text-decoration: none;
  178. }
  179. #media-upload .tablenav-pages a {
  180. min-width: 17px;
  181. border: 1px solid #c3c4c7;
  182. background: #f6f7f7;
  183. }
  184. #filter .tablenav select {
  185. border-style: solid;
  186. border-width: 1px;
  187. padding: 2px;
  188. vertical-align: top;
  189. width: auto;
  190. }
  191. #media-upload .del-attachment {
  192. display: none;
  193. margin: 5px 0;
  194. }
  195. .menu_order {
  196. float: right;
  197. font-size: 11px;
  198. margin: 8px 10px 0;
  199. }
  200. .menu_order_input {
  201. border: 1px solid #dcdcde;
  202. font-size: 10px;
  203. padding: 1px;
  204. width: 23px;
  205. }
  206. .ui-sortable-helper {
  207. background-color: #fff;
  208. border: 1px solid #a7aaad;
  209. opacity: 0.6;
  210. filter: alpha(opacity=60);
  211. }
  212. #media-upload th.order-head {
  213. width: 20%;
  214. text-align: center;
  215. }
  216. #media-upload th.actions-head {
  217. width: 25%;
  218. text-align: center;
  219. }
  220. #media-upload a.wp-post-thumbnail {
  221. margin: 0 20px;
  222. }
  223. #media-upload .widefat {
  224. border-style: solid solid none;
  225. }
  226. .sorthelper {
  227. height: 37px;
  228. width: 623px;
  229. display: block;
  230. }
  231. #gallery-settings th.label {
  232. width: 160px;
  233. }
  234. #gallery-settings #basic th.label {
  235. padding: 5px 5px 5px 0;
  236. }
  237. #gallery-settings .title {
  238. clear: both;
  239. padding: 0 0 3px;
  240. font-size: 1.6em;
  241. border-bottom: 1px solid #dcdcde;
  242. }
  243. h3.media-title {
  244. font-size: 1.6em;
  245. }
  246. h4.media-sub-title {
  247. border-bottom: 1px solid #dcdcde;
  248. font-size: 1.3em;
  249. margin: 12px;
  250. padding: 0 0 3px;
  251. }
  252. #gallery-settings .title,
  253. h3.media-title,
  254. h4.media-sub-title {
  255. font-family: Georgia,"Times New Roman",Times,serif;
  256. font-weight: 400;
  257. color: #50575e;
  258. }
  259. #gallery-settings .describe td {
  260. vertical-align: middle;
  261. height: 3em;
  262. }
  263. #gallery-settings .describe th.label {
  264. padding-top: .5em;
  265. text-align: left;
  266. }
  267. #gallery-settings .describe {
  268. padding: 5px;
  269. width: 100%;
  270. clear: both;
  271. cursor: default;
  272. background: #fff;
  273. }
  274. #gallery-settings .describe select {
  275. width: 15em;
  276. }
  277. #gallery-settings .describe select option,
  278. #gallery-settings .describe td {
  279. padding: 0;
  280. }
  281. #gallery-settings label,
  282. #gallery-settings legend {
  283. font-size: 13px;
  284. color: #3c434a;
  285. margin-right: 15px;
  286. }
  287. #gallery-settings .align .field label {
  288. margin: 0 1em 0 3px;
  289. }
  290. #gallery-settings p.ml-submit {
  291. border-top: 1px solid #dcdcde;
  292. }
  293. #gallery-settings select#columns {
  294. width: 6em;
  295. }
  296. #sort-buttons {
  297. font-size: 0.8em;
  298. margin: 3px 25px -8px 0;
  299. text-align: right;
  300. max-width: 625px;
  301. }
  302. #sort-buttons a {
  303. text-decoration: none;
  304. }
  305. #sort-buttons #asc,
  306. #sort-buttons #showall {
  307. padding-left: 5px;
  308. }
  309. #sort-buttons span {
  310. margin-right: 25px;
  311. }
  312. p.media-types {
  313. margin: 0;
  314. padding: 1em;
  315. }
  316. p.media-types-required-info {
  317. padding-top: 0;
  318. }
  319. tr.not-image {
  320. display: none;
  321. }
  322. table.not-image tr.not-image {
  323. display: table-row;
  324. }
  325. table.not-image tr.image-only {
  326. display: none;
  327. }
  328. /**
  329. * HiDPI Displays
  330. */
  331. @media print,
  332. (-webkit-min-device-pixel-ratio: 1.25),
  333. (min-resolution: 120dpi) {
  334. .image-align-none-label {
  335. background-image: url(../images/align-none-2x.png?ver=20120916);
  336. background-size: 21px 15px;
  337. }
  338. .image-align-left-label {
  339. background-image: url(../images/align-left-2x.png?ver=20120916);
  340. background-size: 22px 15px;
  341. }
  342. .image-align-center-label {
  343. background-image: url(../images/align-center-2x.png?ver=20120916);
  344. background-size: 21px 15px;
  345. }
  346. .image-align-right-label {
  347. background-image: url(../images/align-right-2x.png?ver=20120916);
  348. background-size: 22px 15px;
  349. }
  350. }