list-tables-rtl.css 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145
  1. .response-links {
  2. display: block;
  3. margin-bottom: 1em;
  4. }
  5. .response-links a {
  6. display: block;
  7. }
  8. .response-links a.comments-edit-item-link {
  9. font-weight: 600;
  10. }
  11. .response-links a.comments-view-item-link {
  12. font-size: 12px;
  13. }
  14. .post-com-count-wrapper strong {
  15. font-weight: 400;
  16. }
  17. .comments-view-item-link {
  18. display: inline-block;
  19. clear: both;
  20. }
  21. .column-response .post-com-count-wrapper,
  22. .column-comments .post-com-count-wrapper {
  23. white-space: nowrap;
  24. word-wrap: normal;
  25. }
  26. /* comments bubble common */
  27. .column-response .post-com-count,
  28. .column-comments .post-com-count {
  29. display: inline-block;
  30. vertical-align: top;
  31. }
  32. /* comments bubble approved */
  33. .column-response .post-com-count-no-comments,
  34. .column-response .post-com-count-approved,
  35. .column-comments .post-com-count-no-comments,
  36. .column-comments .post-com-count-approved {
  37. margin-top: 5px;
  38. }
  39. .column-response .comment-count-no-comments,
  40. .column-response .comment-count-approved,
  41. .column-comments .comment-count-no-comments,
  42. .column-comments .comment-count-approved {
  43. box-sizing: border-box;
  44. display: block;
  45. padding: 0 8px;
  46. min-width: 24px;
  47. height: 2em;
  48. border-radius: 5px;
  49. background-color: #72777c;
  50. color: #fff;
  51. font-size: 11px;
  52. line-height: 21px;
  53. text-align: center;
  54. }
  55. .ie8 .column-response .comment-count-no-comments,
  56. .ie8 .column-response .comment-count-approved,
  57. .ie8 .column-comments .comment-count-no-comments,
  58. .ie8 .column-comments .comment-count-approved {
  59. min-width: 0;
  60. }
  61. .column-response .post-com-count-no-comments:after,
  62. .column-response .post-com-count-approved:after,
  63. .column-comments .post-com-count-no-comments:after,
  64. .column-comments .post-com-count-approved:after {
  65. content: "";
  66. display: block;
  67. margin-right: 8px;
  68. width: 0;
  69. height: 0;
  70. border-top: 5px solid #72777c;
  71. border-left: 5px solid transparent;
  72. }
  73. .column-response .post-com-count-approved:hover .comment-count-approved,
  74. .column-response .post-com-count-approved:focus .comment-count-approved,
  75. .column-comments .post-com-count-approved:hover .comment-count-approved,
  76. .column-comments .post-com-count-approved:focus .comment-count-approved {
  77. background: #0073aa;
  78. }
  79. .column-response .post-com-count-approved:hover:after,
  80. .column-response .post-com-count-approved:focus:after,
  81. .column-comments .post-com-count-approved:hover:after,
  82. .column-comments .post-com-count-approved:focus:after {
  83. border-top-color: #0073aa;
  84. }
  85. /* @todo: consider to use a single rule for these counters and the admin menu counters. */
  86. .column-response .post-com-count-pending,
  87. .column-comments .post-com-count-pending {
  88. position: relative;
  89. right: -3px;
  90. padding: 0 5px;
  91. min-width: 7px;
  92. height: 17px;
  93. border: 2px solid #fff;
  94. border-radius: 11px;
  95. background: #ca4a1f;
  96. color: #fff;
  97. font-size: 9px;
  98. line-height: 17px;
  99. text-align: center;
  100. }
  101. .column-response .post-com-count-no-pending,
  102. .column-comments .post-com-count-no-pending {
  103. display: none;
  104. }
  105. /* comments */
  106. .commentlist li {
  107. padding: 1em 1em .2em;
  108. margin: 0;
  109. border-bottom: 1px solid #ccc;
  110. }
  111. .commentlist li li {
  112. border-bottom: 0;
  113. padding: 0;
  114. }
  115. .commentlist p {
  116. padding: 0;
  117. margin: 0 0 .8em;
  118. }
  119. #submitted-on,
  120. .submitted-on {
  121. color: #555d66;
  122. }
  123. /* reply to comments */
  124. #replyrow td {
  125. padding: 2px;
  126. }
  127. #replysubmit {
  128. margin: 0;
  129. padding: 5px 7px 10px;
  130. overflow: hidden;
  131. }
  132. #replysubmit .button {
  133. margin-left: 5px;
  134. }
  135. #replyrow.inline-edit-row fieldset.comment-reply {
  136. font-size: inherit;
  137. line-height: inherit;
  138. }
  139. #replyrow legend {
  140. margin: 0;
  141. padding: .2em 5px 0;
  142. font-size: 13px;
  143. line-height: 1.4;
  144. font-weight: 600;
  145. }
  146. #replyrow.inline-edit-row label {
  147. display: inline;
  148. vertical-align: baseline;
  149. line-height: inherit;
  150. }
  151. #edithead .inside,
  152. #commentsdiv #edithead .inside {
  153. float: right;
  154. padding: 3px 5px 2px 0;
  155. margin: 0;
  156. text-align: center;
  157. }
  158. #edithead .inside input {
  159. width: 180px;
  160. }
  161. #edithead label {
  162. padding: 2px 0;
  163. }
  164. #replycontainer {
  165. padding: 5px;
  166. }
  167. #replycontent {
  168. height: 120px;
  169. box-shadow: none;
  170. }
  171. #replyerror {
  172. border-color: #ddd;
  173. background-color: #f9f9f9;
  174. }
  175. /* @todo: is this used? */
  176. .commentlist .avatar {
  177. vertical-align: text-top;
  178. }
  179. #the-comment-list tr.undo,
  180. #the-comment-list div.undo {
  181. background-color: #f5f5f5;
  182. }
  183. #the-comment-list .unapproved th,
  184. #the-comment-list .unapproved td {
  185. background-color: #fef7f1;
  186. }
  187. #the-comment-list .unapproved th.check-column {
  188. border-right: 4px solid #d54e21;
  189. }
  190. #the-comment-list .unapproved th.check-column input {
  191. margin-right: 4px;
  192. }
  193. #the-comment-list .approve a {
  194. color: #006505;
  195. }
  196. #the-comment-list .unapprove a {
  197. color: #d98500;
  198. }
  199. #the-comment-list th,
  200. #the-comment-list td {
  201. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  202. }
  203. #the-comment-list tr:last-child th,
  204. #the-comment-list tr:last-child td {
  205. box-shadow: none;
  206. }
  207. #the-comment-list tr.unapproved + tr.approved th,
  208. #the-comment-list tr.unapproved + tr.approved td {
  209. border-top: 1px solid rgba(0, 0, 0, 0.03);
  210. }
  211. /* table vim shortcuts */
  212. .vim-current,
  213. .vim-current th,
  214. .vim-current td {
  215. background-color: #e4f2fd !important;
  216. }
  217. th .comment-grey-bubble {
  218. height: 16px;
  219. width: 16px;
  220. }
  221. th .comment-grey-bubble:before {
  222. content: "\f101";
  223. font: normal 20px/.5 dashicons;
  224. speak: none;
  225. display: inline-block;
  226. padding: 0;
  227. top: 4px;
  228. right: -4px;
  229. position: relative;
  230. vertical-align: top;
  231. -webkit-font-smoothing: antialiased;
  232. -moz-osx-font-smoothing: grayscale;
  233. text-decoration: none !important;
  234. color: #444;
  235. }
  236. /*------------------------------------------------------------------------------
  237. 10.0 - List Posts (/Pages/etc)
  238. ------------------------------------------------------------------------------*/
  239. table.fixed {
  240. table-layout: fixed;
  241. }
  242. .fixed .column-rating,
  243. .fixed .column-visible {
  244. width: 8%;
  245. }
  246. .fixed .column-posts,
  247. .fixed .column-date,
  248. .fixed .column-parent,
  249. .fixed .column-links,
  250. .fixed .column-author,
  251. .fixed .column-format {
  252. width: 10%;
  253. }
  254. .fixed .column-posts {
  255. width: 74px;
  256. }
  257. .fixed .column-comment .comment-author {
  258. display: none;
  259. }
  260. .fixed .column-response,
  261. .fixed .column-categories,
  262. .fixed .column-tags,
  263. .fixed .column-rel,
  264. .fixed .column-role {
  265. width: 15%;
  266. }
  267. .fixed .column-slug {
  268. width: 25%;
  269. }
  270. .fixed .column-locations {
  271. width: 35%;
  272. }
  273. .fixed .column-comments {
  274. width: 5.5em;
  275. padding: 8px 0;
  276. text-align: right;
  277. }
  278. .fixed .column-comments .vers {
  279. padding-right: 3px;
  280. }
  281. td.column-title strong,
  282. td.plugin-title strong {
  283. display: block;
  284. margin-bottom: .2em;
  285. font-size: 14px;
  286. }
  287. td.column-title p,
  288. td.plugin-title p {
  289. margin: 6px 0;
  290. }
  291. /* Media file column */
  292. table.media .column-title .media-icon {
  293. float: right;
  294. min-height: 60px;
  295. margin: 0 0 0 9px;
  296. }
  297. table.media .column-title .media-icon img {
  298. max-width: 60px;
  299. height: auto;
  300. vertical-align: top; /* Remove descender white-space. */
  301. }
  302. table.media .column-title .has-media-icon ~ .row-actions {
  303. margin-right: 70px; /* 60px image + margin */
  304. }
  305. table.media .column-title .filename {
  306. margin-bottom: 0.2em;
  307. }
  308. /* @todo: pick a consistent list table selector */
  309. .wp-list-table a {
  310. transition: none;
  311. }
  312. #the-list tr:last-child td,
  313. #the-list tr:last-child th {
  314. border-bottom: none !important;
  315. box-shadow: none;
  316. }
  317. #comments-form .fixed .column-author {
  318. width: 20%;
  319. }
  320. #comments-form .fixed .column-date {
  321. width: 14%;
  322. }
  323. #commentsdiv.postbox .inside {
  324. margin: 0;
  325. padding: 0;
  326. }
  327. #commentsdiv .inside .row-actions {
  328. line-height:18px;
  329. }
  330. #commentsdiv .inside .column-author {
  331. width: 25%;
  332. }
  333. #commentsdiv .column-comment p {
  334. margin: 0.6em 0;
  335. padding: 0;
  336. }
  337. #commentsdiv #replyrow td {
  338. padding: 0;
  339. }
  340. #commentsdiv p {
  341. padding: 8px 10px;
  342. margin: 0;
  343. }
  344. #commentsdiv .comments-box {
  345. border: 0 none;
  346. }
  347. #commentsdiv .comments-box thead th,
  348. #commentsdiv .comments-box thead td {
  349. background: transparent;
  350. padding: 0 7px 4px;
  351. font-style: italic;
  352. }
  353. #commentsdiv .comments-box tr:last-child td {
  354. border-bottom: 0 none;
  355. }
  356. #commentsdiv #edithead .inside input {
  357. width: 160px;
  358. }
  359. .sorting-indicator {
  360. display: block;
  361. visibility: hidden;
  362. width: 10px;
  363. height: 4px;
  364. margin-top: 8px;
  365. margin-right: 7px;
  366. }
  367. .sorting-indicator:before {
  368. content: "\f142";
  369. font: normal 20px/1 dashicons;
  370. speak: none;
  371. display: inline-block;
  372. padding: 0;
  373. top: -4px;
  374. right: -8px;
  375. color: #444;
  376. line-height: 10px;
  377. position: relative;
  378. vertical-align: top;
  379. -webkit-font-smoothing: antialiased;
  380. -moz-osx-font-smoothing: grayscale;
  381. text-decoration: none !important;
  382. color: #444;
  383. }
  384. .column-comments .sorting-indicator:before {
  385. top: 0;
  386. right: -10px;
  387. }
  388. th.sorted.asc .sorting-indicator:before,
  389. th.desc:hover span.sorting-indicator:before,
  390. th.desc a:focus span.sorting-indicator:before {
  391. content: "\f142";
  392. }
  393. th.sorted.desc .sorting-indicator:before,
  394. th.asc:hover span.sorting-indicator:before,
  395. th.asc a:focus span.sorting-indicator:before {
  396. content: "\f140";
  397. }
  398. .wp-list-table .toggle-row {
  399. position: absolute;
  400. left: 8px;
  401. top: 10px;
  402. display: none;
  403. padding: 0;
  404. width: 40px;
  405. height: 40px;
  406. border: none;
  407. outline: none;
  408. background: transparent;
  409. }
  410. .wp-list-table .toggle-row:hover {
  411. cursor: pointer;
  412. }
  413. .wp-list-table .toggle-row:focus:before {
  414. box-shadow:
  415. 0 0 0 1px #5b9dd9,
  416. 0 0 2px 1px rgba(30, 140, 190, .8);
  417. }
  418. .ie8 .wp-list-table .toggle-row:focus:before {
  419. outline: #5b9dd9 solid 1px;
  420. }
  421. .wp-list-table .toggle-row:active {
  422. box-shadow: none;
  423. }
  424. .wp-list-table .toggle-row:before {
  425. position: absolute;
  426. top: -5px;
  427. right: 10px;
  428. border-radius: 50%;
  429. display: block;
  430. padding: 1px 0 1px 2px;
  431. color: #444; /* same as table headers sort arrows */
  432. content: "\f140";
  433. font: normal 20px/1 dashicons;
  434. line-height: 1;
  435. -webkit-font-smoothing: antialiased;
  436. -moz-osx-font-smoothing: grayscale;
  437. speak: none;
  438. }
  439. .wp-list-table .is-expanded .toggle-row:before {
  440. content: "\f142";
  441. }
  442. tr.wp-locked .locked-indicator {
  443. margin-right: 6px;
  444. height: 20px;
  445. width: 16px;
  446. }
  447. tr.wp-locked .locked-indicator-icon:before {
  448. color: #82878c;
  449. content: "\f160";
  450. display: inline-block;
  451. font: normal 20px/1 dashicons;
  452. speak: none;
  453. vertical-align: middle;
  454. -webkit-font-smoothing: antialiased;
  455. -moz-osx-font-smoothing: grayscale;
  456. }
  457. tr.wp-locked .check-column label,
  458. tr.wp-locked .check-column input[type="checkbox"],
  459. tr.wp-locked .row-actions .inline,
  460. tr.wp-locked .row-actions .trash {
  461. display: none;
  462. }
  463. tr .locked-info {
  464. height: 0;
  465. opacity: 0;
  466. }
  467. tr.wp-locked .locked-info {
  468. margin-top: 4px;
  469. height: auto;
  470. opacity: 1;
  471. }
  472. .locked-text {
  473. vertical-align: top;
  474. }
  475. tr.locked-info, tr.wp-locked .locked-info {
  476. transition: height 1s, opacity 0.5s;
  477. }
  478. .fixed .column-comments .sorting-indicator {
  479. margin-top: 3px;
  480. }
  481. #menu-locations-wrap .widefat {
  482. width: 60%;
  483. }
  484. .widefat th.sortable,
  485. .widefat th.sorted {
  486. padding: 0;
  487. }
  488. th.sortable a,
  489. th.sorted a {
  490. display: block;
  491. overflow: hidden;
  492. padding: 8px;
  493. }
  494. .fixed .column-comments.sortable a,
  495. .fixed .column-comments.sorted a {
  496. padding: 8px 0;
  497. }
  498. th.sortable a span,
  499. th.sorted a span {
  500. float: right;
  501. cursor: pointer;
  502. }
  503. th.sorted .sorting-indicator,
  504. th.desc:hover span.sorting-indicator,
  505. th.desc a:focus span.sorting-indicator,
  506. th.asc:hover span.sorting-indicator,
  507. th.asc a:focus span.sorting-indicator {
  508. visibility: visible;
  509. }
  510. /* Bulk Actions */
  511. .tablenav-pages a,
  512. .tablenav-pages-navspan {
  513. font-weight: 600;
  514. padding: 0 2px;
  515. }
  516. .tablenav-pages .current-page {
  517. margin: 0 0 0 2px;
  518. padding-bottom: 5px;
  519. font-size: 13px;
  520. text-align: center;
  521. }
  522. .tablenav .total-pages {
  523. margin-left: 2px;
  524. }
  525. .tablenav #table-paging {
  526. margin-right: 2px;
  527. }
  528. .tablenav a.button,
  529. .tablenav a.button-secondary {
  530. display: block;
  531. margin: 3px 0 0 8px;
  532. }
  533. .tablenav {
  534. clear: both;
  535. height: 30px;
  536. margin: 6px 0 4px;
  537. vertical-align: middle;
  538. }
  539. .tablenav.themes {
  540. max-width: 98%;
  541. }
  542. .tablenav .tablenav-pages {
  543. float: left;
  544. height: 28px;
  545. margin-top: 3px;
  546. cursor: default;
  547. color: #555;
  548. }
  549. .tablenav .no-pages,
  550. .tablenav .one-page .pagination-links {
  551. display: none;
  552. }
  553. .tablenav .tablenav-pages a,
  554. .tablenav-pages span.current {
  555. text-decoration: none;
  556. padding: 3px 6px;
  557. }
  558. .tablenav .tablenav-pages a,
  559. .tablenav-pages-navspan {
  560. display: inline-block;
  561. min-width: 17px;
  562. border: 1px solid #ccc; /* same color as buttons border */
  563. padding: 3px 5px 7px;
  564. background: #e5e5e5;
  565. font-size: 16px;
  566. line-height: 1;
  567. font-weight: 400;
  568. text-align: center;
  569. }
  570. .tablenav-pages-navspan {
  571. height: 16px;
  572. border-color: #ddd; /* same as disabled buttons */
  573. background: #f7f7f7; /* same as disabled buttons */
  574. color: #a0a5aa; /* same as disabled buttons */
  575. }
  576. .tablenav .tablenav-pages a:hover,
  577. .tablenav .tablenav-pages a:focus {
  578. border-color: #5b9dd9;
  579. color: #fff;
  580. background: #00a0d2;
  581. box-shadow: none;
  582. outline: none; /* IE8 */
  583. }
  584. .tablenav .displaying-num {
  585. margin-left: 7px;
  586. }
  587. .tablenav .one-page .displaying-num {
  588. display: inline-block;
  589. margin-top: 5px;
  590. margin-left: 0;
  591. }
  592. .tablenav .actions {
  593. overflow: hidden;
  594. padding: 2px 0 0 8px;
  595. }
  596. .wp-filter .actions {
  597. display: inline-block;
  598. vertical-align: middle;
  599. }
  600. .tablenav .delete {
  601. margin-left: 20px;
  602. }
  603. /* @todo: unclear if the following tablenav rules are actually used.
  604. classes exist in paginate_links() but not seen in list table output. */
  605. .tablenav .dots {
  606. border-color: transparent;
  607. }
  608. .tablenav .next,
  609. .tablenav .prev {
  610. border-color: transparent;
  611. color: #0073aa;
  612. }
  613. .tablenav .next:hover,
  614. .tablenav .prev:hover {
  615. border-color: transparent;
  616. color: #00a0d2;
  617. }
  618. .tablenav .view-switch {
  619. float: left;
  620. margin: 0 5px;
  621. padding-top: 3px;
  622. }
  623. .wp-filter .view-switch {
  624. display: inline-block;
  625. vertical-align: middle;
  626. padding: 12px 0;
  627. margin: 0 2px 0 8px;
  628. }
  629. .media-toolbar.wp-filter .view-switch {
  630. margin: 0 2px 0 12px;
  631. }
  632. .view-switch a {
  633. float: right;
  634. width: 28px;
  635. height: 28px;
  636. text-align: center;
  637. line-height: 24px;
  638. text-decoration: none;
  639. }
  640. .view-switch a:before {
  641. color: #b4b9be;
  642. display: inline-block;
  643. font: normal 20px/1 dashicons;
  644. speak: none;
  645. vertical-align: middle;
  646. -webkit-font-smoothing: antialiased;
  647. -moz-osx-font-smoothing: grayscale;
  648. }
  649. .view-switch a:hover:before,
  650. .view-switch a:focus:before {
  651. color: #727272;
  652. }
  653. .view-switch a.current:before {
  654. color: #0073aa;
  655. }
  656. .view-switch .view-list:before {
  657. content: "\f163";
  658. }
  659. .view-switch .view-excerpt:before {
  660. content: "\f164";
  661. }
  662. .view-switch .view-grid:before {
  663. content: "\f509";
  664. }
  665. .filter {
  666. float: right;
  667. margin: -5px 10px 0 0;
  668. }
  669. .filter .subsubsub {
  670. margin-right: -10px;
  671. margin-top: 13px;
  672. }
  673. .screen-per-page {
  674. width: 4em;
  675. }
  676. #posts-filter .wp-filter {
  677. margin-bottom: 0;
  678. }
  679. #posts-filter fieldset {
  680. float: right;
  681. margin: 0 0 1em 1.5ex;
  682. padding: 0;
  683. }
  684. #posts-filter fieldset legend {
  685. padding: 0 1px .2em 0;
  686. }
  687. p.pagenav {
  688. margin: 0;
  689. display: inline;
  690. }
  691. .pagenav span {
  692. font-weight: 600;
  693. margin: 0 6px;
  694. }
  695. .row-title {
  696. font-size: 14px !important;
  697. font-weight: 600;
  698. }
  699. .column-comment .comment-author {
  700. margin-bottom: 0.6em;
  701. }
  702. .column-author img,
  703. .column-username img,
  704. .column-comment .comment-author img {
  705. float: right;
  706. margin-left: 10px;
  707. margin-top: 1px;
  708. }
  709. .row-actions {
  710. color: #ddd;
  711. font-size: 13px;
  712. padding: 2px 0 0;
  713. position: relative;
  714. right: -9999em;
  715. }
  716. /* ticket #34150 */
  717. .rtl .row-actions a {
  718. display: inline-block;
  719. }
  720. .row-actions .network_only,
  721. .row-actions .network_active {
  722. color: #000;
  723. }
  724. .no-js .row-actions,
  725. tr:hover .row-actions,
  726. .mobile .row-actions,
  727. .row-actions.visible,
  728. .comment-item:hover .row-actions {
  729. position: static;
  730. }
  731. /* deprecated */
  732. .row-actions-visible {
  733. padding: 2px 0 0;
  734. }
  735. /*------------------------------------------------------------------------------
  736. 10.1 - Inline Editing
  737. ------------------------------------------------------------------------------*/
  738. /*
  739. .quick-edit* is for Quick Edit
  740. .bulk-edit* is for Bulk Edit
  741. .inline-edit* is for everything
  742. */
  743. /* Layout */
  744. #wpbody-content .inline-edit-row fieldset {
  745. font-size: 12px;
  746. float: right;
  747. margin: 0;
  748. padding: 0;
  749. width: 100%;
  750. }
  751. tr.inline-edit-row td,
  752. #wpbody-content .inline-edit-row fieldset .inline-edit-col {
  753. padding: 0 0.5em;
  754. }
  755. #wpbody-content .quick-edit-row-post .inline-edit-col-left {
  756. width: 40%;
  757. }
  758. #wpbody-content .quick-edit-row-post .inline-edit-col-right {
  759. width: 39%;
  760. }
  761. #wpbody-content .inline-edit-row-post .inline-edit-col-center {
  762. width: 20%;
  763. }
  764. #wpbody-content .quick-edit-row-page .inline-edit-col-left {
  765. width: 50%;
  766. }
  767. #wpbody-content .quick-edit-row-page .inline-edit-col-right,
  768. #wpbody-content .bulk-edit-row-post .inline-edit-col-right {
  769. width: 49%;
  770. }
  771. #wpbody-content .bulk-edit-row .inline-edit-col-left {
  772. width: 30%;
  773. }
  774. #wpbody-content .bulk-edit-row-page .inline-edit-col-right {
  775. width: 69%;
  776. }
  777. #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
  778. float: left;
  779. width: 69%;
  780. }
  781. #wpbody-content .inline-edit-row-page .inline-edit-col-right {
  782. margin-top: 27px;
  783. }
  784. .inline-edit-row fieldset .inline-edit-group {
  785. clear: both;
  786. line-height: 2.5;
  787. }
  788. .inline-edit-row .submit {
  789. clear: both;
  790. padding: 0.5em;
  791. margin: 0.5em 0 0;
  792. }
  793. .inline-edit-row .notice-error {
  794. margin-top: 1em;
  795. }
  796. .inline-edit-row .notice-error .error {
  797. margin: 0.5em 0;
  798. padding: 2px;
  799. }
  800. /* Positioning */
  801. /* Needs higher specificity for the padding */
  802. #the-list .inline-edit-row .inline-edit-legend {
  803. margin: 0;
  804. padding: 0.2em 0.5em 0;
  805. line-height: 2.5;
  806. font-weight: 600;
  807. }
  808. #the-list #bulk-edit.inline-edit-row .inline-edit-legend {
  809. padding: 0.2em 0.5em;
  810. }
  811. .inline-edit-row fieldset span.title,
  812. .inline-edit-row fieldset span.checkbox-title {
  813. margin: 0;
  814. padding: 0;
  815. }
  816. .inline-edit-row fieldset label,
  817. .inline-edit-row fieldset span.inline-edit-categories-label {
  818. display: block;
  819. margin: .2em 0;
  820. line-height: 2.5;
  821. }
  822. .inline-edit-row fieldset.inline-edit-date label {
  823. display: inline-block;
  824. margin: 0;
  825. line-height: 1.5;
  826. vertical-align: baseline;
  827. }
  828. .inline-edit-row fieldset label.inline-edit-tags {
  829. margin-top: 0;
  830. }
  831. .inline-edit-row fieldset label.inline-edit-tags span.title {
  832. margin: .2em 0;
  833. width: auto;
  834. }
  835. .inline-edit-row fieldset label span.title,
  836. .inline-edit-row fieldset.inline-edit-date legend {
  837. display: block;
  838. float: right;
  839. width: 6em;
  840. line-height: 2.5;
  841. }
  842. #posts-filter fieldset.inline-edit-date legend {
  843. padding: 0;
  844. }
  845. .inline-edit-row fieldset.inline-edit-date select {
  846. margin: 1px;
  847. line-height: 28px;
  848. }
  849. .inline-edit-row fieldset label span.input-text-wrap,
  850. .inline-edit-row fieldset .timestamp-wrap {
  851. display: block;
  852. margin-right: 6em;
  853. }
  854. .quick-edit-row-post fieldset.inline-edit-col-right label span.title {
  855. width: auto;
  856. padding-left: 0.5em;
  857. }
  858. .inline-edit-row .inline-edit-or {
  859. margin: .2em 0 .2em 6px;
  860. line-height: 2.5;
  861. }
  862. .inline-edit-row .input-text-wrap input[type=text] {
  863. width: 100%;
  864. }
  865. .inline-edit-row fieldset label input[type=checkbox] {
  866. vertical-align: middle;
  867. }
  868. .inline-edit-row fieldset label textarea {
  869. width: 100%;
  870. height: 4em;
  871. vertical-align: top;
  872. }
  873. #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
  874. max-width: 50%;
  875. }
  876. #wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
  877. margin-left: 0.5em
  878. }
  879. .inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
  880. width: 6em;
  881. }
  882. /* Styling */
  883. .inline-edit-row .inline-edit-legend {
  884. text-transform: uppercase;
  885. }
  886. .inline-edit-row fieldset span.title,
  887. .inline-edit-row fieldset span.checkbox-title {
  888. font-style: italic;
  889. }
  890. /* Specific Elements */
  891. .inline-edit-row fieldset .inline-edit-date {
  892. float: right;
  893. }
  894. .inline-edit-row fieldset input[name=jj],
  895. .inline-edit-row fieldset input[name=hh],
  896. .inline-edit-row fieldset input[name=mn] {
  897. font-size: 12px;
  898. width: 2.3em;
  899. }
  900. .inline-edit-row fieldset input[name=aa] {
  901. font-size: 12px;
  902. width: 3.5em;
  903. }
  904. .inline-edit-row fieldset label input.inline-edit-password-input {
  905. width: 8em;
  906. }
  907. ul.cat-checklist {
  908. height: 12em;
  909. border: solid 1px #ddd;
  910. overflow-y: scroll;
  911. padding: 0 5px;
  912. margin: 0;
  913. background-color: #fff;
  914. }
  915. #bulk-titles {
  916. display: block;
  917. height: 12em;
  918. border: 1px solid #ddd;
  919. overflow-y: scroll;
  920. padding: 0 5px;
  921. margin: 0 0 5px;
  922. }
  923. .inline-edit-row fieldset ul.cat-checklist li,
  924. .inline-edit-row fieldset ul.cat-checklist input {
  925. margin: 0;
  926. position: relative; /* RTL fix, #WP27629 */
  927. }
  928. .inline-edit-row fieldset ul.cat-checklist label,
  929. .inline-edit-row #bulk-titles div {
  930. font-style: normal;
  931. font-size: 11px;
  932. }
  933. .inline-edit-row fieldset label input.inline-edit-menu-order-input {
  934. width: 3em;
  935. }
  936. .inline-edit-row fieldset label input.inline-edit-slug-input {
  937. width: 75%;
  938. }
  939. .inline-edit-row #post_parent,
  940. .inline-edit-row select[name="page_template"] {
  941. max-width: 80%;
  942. }
  943. .ie8 .inline-edit-row #post_parent,
  944. .ie8 .inline-edit-row select[name="page_template"] {
  945. width: 250px;
  946. }
  947. .quick-edit-row-post fieldset label.inline-edit-status {
  948. float: right;
  949. }
  950. #bulk-titles {
  951. line-height: 140%;
  952. }
  953. #bulk-titles div {
  954. margin: 0.2em 0.3em;
  955. }
  956. #bulk-titles div a {
  957. cursor: pointer;
  958. display: block;
  959. float: right;
  960. height: 18px;
  961. margin: 0 -2px 0 3px;
  962. overflow: hidden;
  963. position: relative;
  964. width: 20px;
  965. }
  966. #bulk-titles div a:before {
  967. position: relative;
  968. top: -3px;
  969. }
  970. /*------------------------------------------------------------------------------
  971. 17.0 - Plugins
  972. ------------------------------------------------------------------------------*/
  973. .plugins tbody th.check-column,
  974. .plugins tbody {
  975. padding: 8px 2px 0 0;
  976. }
  977. .plugins tbody th.check-column input[type=checkbox] {
  978. margin-top: 4px;
  979. }
  980. .updates-table .plugin-title p {
  981. margin-top: 0;
  982. }
  983. .plugins thead td.check-column,
  984. .plugins tfoot td.check-column,
  985. .plugins .inactive th.check-column {
  986. padding-right: 6px;
  987. }
  988. .plugins,
  989. .plugins th,
  990. .plugins td {
  991. color: #000;
  992. }
  993. .plugins tr {
  994. background: #fff;
  995. }
  996. .plugins p {
  997. margin: 0 4px;
  998. padding: 0;
  999. }
  1000. .plugins .desc p {
  1001. margin: 0 0 8px;
  1002. }
  1003. .plugins td.desc {
  1004. line-height: 1.5em;
  1005. }
  1006. .plugins .desc ul,
  1007. .plugins .desc ol {
  1008. margin: 0 2em 0 0;
  1009. }
  1010. .plugins .desc ul {
  1011. list-style-type: disc;
  1012. }
  1013. .plugins .row-actions {
  1014. font-size: 13px;
  1015. padding: 0;
  1016. }
  1017. .plugins .inactive td,
  1018. .plugins .inactive th,
  1019. .plugins .active td,
  1020. .plugins .active th {
  1021. padding: 10px 9px;
  1022. }
  1023. .plugins .active td,
  1024. .plugins .active th {
  1025. background-color: #f7fcfe;
  1026. }
  1027. .plugins .update th,
  1028. .plugins .update td {
  1029. border-bottom: 0;
  1030. }
  1031. .plugins .inactive td,
  1032. .plugins .inactive th,
  1033. .plugins .active td,
  1034. .plugins .active th,
  1035. .plugin-install #the-list td,
  1036. .upgrade .plugins td,
  1037. .upgrade .plugins th {
  1038. box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
  1039. }
  1040. .plugins tr.active.plugin-update-tr + tr.inactive th,
  1041. .plugins tr.active.plugin-update-tr + tr.inactive td,
  1042. .plugins tr.active + tr.inactive th,
  1043. .plugins tr.active + tr.inactive td {
  1044. border-top: 1px solid rgba(0,0,0,0.03);
  1045. box-shadow: inset 0 1px 0 rgba(0,0,0,0.02), inset 0 -1px 0 #e1e1e1;
  1046. }
  1047. .plugins .update td,
  1048. .plugins .update th,
  1049. .upgrade .plugins tr:last-of-type td,
  1050. .upgrade .plugins tr:last-of-type th,
  1051. .plugins tr.active + tr.inactive.update th,
  1052. .plugins tr.active + tr.inactive.update td,
  1053. .plugins .updated td,
  1054. .plugins .updated th,
  1055. .plugins tr.active + tr.inactive.updated th,
  1056. .plugins tr.active + tr.inactive.updated td {
  1057. box-shadow: none;
  1058. }
  1059. .plugins .active th.check-column,
  1060. .plugin-update-tr.active td {
  1061. border-right: 4px solid #00a0d2;
  1062. }
  1063. .wp-list-table.plugins .plugin-title,
  1064. .wp-list-table.plugins .theme-title {
  1065. padding-left: 12px;
  1066. white-space: nowrap;
  1067. }
  1068. .plugins .plugin-title img,
  1069. .plugins .plugin-title .dashicons {
  1070. float: right;
  1071. padding: 0 0 0 10px;
  1072. width: 64px;
  1073. height: 64px;
  1074. }
  1075. .plugins .plugin-title .dashicons:before {
  1076. padding: 2px;
  1077. background-color: #eee;
  1078. box-shadow: inset 0 0 10px rgba(160,165,170,.15);
  1079. font-size: 60px;
  1080. color: #B4B9BE;
  1081. }
  1082. #update-themes-table .plugin-title img,
  1083. #update-themes-table .plugin-title .dashicons {
  1084. width: 85px;
  1085. }
  1086. .plugins .inactive .plugin-title strong {
  1087. font-weight: 400;
  1088. }
  1089. .plugins .second,
  1090. .plugins .row-actions {
  1091. padding: 0 0 5px;
  1092. }
  1093. .plugins .update .second,
  1094. .plugins .update .row-actions,
  1095. .plugins .updated .second,
  1096. .plugins .updated .row-actions {
  1097. padding-bottom: 0;
  1098. }
  1099. .plugins-php .widefat tfoot th,
  1100. .plugins-php .widefat tfoot td {
  1101. border-top-style: solid;
  1102. border-top-width: 1px;
  1103. }
  1104. .plugins .plugin-update-tr .plugin-update {
  1105. box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
  1106. overflow: hidden; /* clearfix */
  1107. padding: 0;
  1108. }
  1109. .plugins .plugin-update-tr .notice,
  1110. .plugins .plugin-update-tr div[class="update-message"] { /* back-compat for pre-4.6 */
  1111. margin: 5px 40px 15px 20px;
  1112. }
  1113. .plugins .notice p {
  1114. margin: 0.5em 0;
  1115. }
  1116. .plugin-card .update-now:before {
  1117. color: #f56e28;
  1118. content: "\f463";
  1119. display: inline-block;
  1120. font: normal 20px/1 dashicons;
  1121. margin: 3px -2px 0 5px;
  1122. speak: none;
  1123. -webkit-font-smoothing: antialiased;
  1124. -moz-osx-font-smoothing: grayscale;
  1125. vertical-align: top;
  1126. }
  1127. .plugin-card .updating-message:before {
  1128. content: "\f463";
  1129. -webkit-animation: rotation 2s infinite linear;
  1130. animation: rotation 2s infinite linear;
  1131. }
  1132. @-webkit-keyframes rotation {
  1133. 0% {
  1134. -webkit-transform: rotate(0deg);
  1135. transform: rotate(0deg);
  1136. }
  1137. 100% {
  1138. -webkit-transform: rotate(-359deg);
  1139. transform: rotate(-359deg);
  1140. }
  1141. }
  1142. @keyframes rotation {
  1143. 0% {
  1144. -webkit-transform: rotate(0deg);
  1145. transform: rotate(0deg);
  1146. }
  1147. 100% {
  1148. -webkit-transform: rotate(-359deg);
  1149. transform: rotate(-359deg);
  1150. }
  1151. }
  1152. .plugin-card .updated-message:before {
  1153. color: #79ba49;
  1154. content: "\f147";
  1155. }
  1156. .plugin-install-php h2 {
  1157. clear: both;
  1158. }
  1159. .plugin-install-php h3 {
  1160. margin: 2.5em 0 8px;
  1161. }
  1162. .plugin-install-php .wp-filter {
  1163. margin-bottom: 0;
  1164. }
  1165. /* Plugin card table view */
  1166. .plugin-group {
  1167. overflow: hidden; /* clearfix */
  1168. margin-top: 1.5em;
  1169. }
  1170. .plugin-group h3 {
  1171. margin-top: 0;
  1172. }
  1173. .plugin-card {
  1174. float: right;
  1175. margin: 0 8px 16px;
  1176. width: 48.5%;
  1177. width: calc( 50% - 8px );
  1178. background-color: #fff;
  1179. border: 1px solid #ddd;
  1180. box-sizing: border-box;
  1181. }
  1182. .plugin-card:nth-child(odd) {
  1183. clear: both;
  1184. margin-right: 0;
  1185. }
  1186. .plugin-card:nth-child(even) {
  1187. margin-left: 0;
  1188. }
  1189. @media screen and ( min-width: 1600px ) {
  1190. .plugin-card {
  1191. width: 30%;
  1192. width: calc( 33.1% - 8px );
  1193. }
  1194. .plugin-card:nth-child(odd) {
  1195. clear: none;
  1196. margin-right: 8px;
  1197. }
  1198. .plugin-card:nth-child(even) {
  1199. margin-left: 8px;
  1200. }
  1201. .plugin-card:nth-child(3n+1) {
  1202. clear: both;
  1203. margin-right: 0;
  1204. }
  1205. .plugin-card:nth-child(3n) {
  1206. margin-left: 0;
  1207. }
  1208. }
  1209. .plugin-card-top {
  1210. position: relative;
  1211. padding: 20px 20px 10px;
  1212. min-height: 135px;
  1213. }
  1214. div.action-links,
  1215. .plugin-action-buttons {
  1216. margin: 0; /* Override existing margins */
  1217. }
  1218. .plugin-card h3 {
  1219. margin: 0 0 12px;
  1220. font-size: 18px;
  1221. line-height: 1.3;
  1222. }
  1223. .plugin-card .name,
  1224. .plugin-card .desc {
  1225. margin-right: 148px; /* icon + margin */
  1226. margin-left: 120px; /* action links */
  1227. }
  1228. .plugin-card .action-links {
  1229. position: absolute;
  1230. top: 20px;
  1231. left: 20px;
  1232. width: 120px;
  1233. }
  1234. .plugin-action-buttons {
  1235. clear: left;
  1236. float: left;
  1237. margin-right: 2em;
  1238. margin-bottom: 1em;
  1239. text-align: left;
  1240. }
  1241. .plugin-action-buttons li {
  1242. margin-bottom: 10px;
  1243. }
  1244. .plugin-card-bottom {
  1245. clear: both;
  1246. padding: 12px 20px;
  1247. background-color: #fafafa;
  1248. border-top: 1px solid #ddd;
  1249. overflow: hidden;
  1250. }
  1251. .plugin-card-bottom .star-rating {
  1252. display: inline;
  1253. }
  1254. .plugin-card-update-failed .update-now {
  1255. font-weight: 600;
  1256. }
  1257. .plugin-card-update-failed .notice-error {
  1258. margin: 0;
  1259. padding-right: 16px;
  1260. box-shadow: 0 -1px 0 #ddd;
  1261. }
  1262. .plugin-card-update-failed .plugin-card-bottom {
  1263. display: none;
  1264. }
  1265. .plugin-card .column-rating {
  1266. line-height: 23px;
  1267. }
  1268. .plugin-card .column-rating,
  1269. .plugin-card .column-updated {
  1270. margin-bottom: 4px;
  1271. }
  1272. .plugin-card .column-rating,
  1273. .plugin-card .column-downloaded {
  1274. float: right;
  1275. clear: right;
  1276. max-width: 180px;
  1277. }
  1278. .plugin-card .column-updated,
  1279. .plugin-card .column-compatibility {
  1280. text-align: left;
  1281. float: left;
  1282. clear: left;
  1283. width: 65%;
  1284. width: calc( 100% - 180px );
  1285. }
  1286. .plugin-card .column-compatibility span:before {
  1287. font: normal 20px/.5 dashicons;
  1288. speak: none;
  1289. display: inline-block;
  1290. padding: 0;
  1291. top: 4px;
  1292. right: -2px;
  1293. position: relative;
  1294. vertical-align: top;
  1295. -webkit-font-smoothing: antialiased;
  1296. -moz-osx-font-smoothing: grayscale;
  1297. text-decoration: none !important;
  1298. color: #444;
  1299. }
  1300. .plugin-card .compatibility-incompatible:before {
  1301. content: "\f158";
  1302. }
  1303. .plugin-card .compatibility-compatible:before {
  1304. content: "\f147";
  1305. }
  1306. .plugin-icon {
  1307. position: absolute;
  1308. top: 20px;
  1309. right: 20px;
  1310. width: 128px;
  1311. height: 128px;
  1312. margin: 0 0 20px 20px;
  1313. }
  1314. .no-plugin-results {
  1315. color: #666; /* same as no themes and no media */
  1316. font-size: 18px;
  1317. font-style: normal;
  1318. margin: 0;
  1319. padding: 100px 0 0;
  1320. text-align: center;
  1321. }
  1322. /* ms */
  1323. /* Background Color for Site Status */
  1324. .wp-list-table .site-deleted,
  1325. .wp-list-table tr.site-deleted {
  1326. background: #ff8573;
  1327. }
  1328. .wp-list-table .site-spammed,
  1329. .wp-list-table tr.site-spammed {
  1330. background: #faafaa;
  1331. }
  1332. .wp-list-table .site-archived,
  1333. .wp-list-table tr.site-archived {
  1334. background: #ffebe8;
  1335. }
  1336. .wp-list-table .site-mature,
  1337. .wp-list-table tr.site-mature {
  1338. background: #fecac2;
  1339. }
  1340. .sites.fixed .column-lastupdated,
  1341. .sites.fixed .column-registered {
  1342. width: 20%;
  1343. }
  1344. .sites.fixed .column-users {
  1345. width: 80px;
  1346. }
  1347. /* =Media Queries
  1348. -------------------------------------------------------------- */
  1349. @media screen and ( max-width: 1100px ) and ( min-width: 782px ), ( max-width: 480px ) {
  1350. .plugin-card .action-links {
  1351. position: static;
  1352. margin-right: 148px;
  1353. width: auto;
  1354. }
  1355. .plugin-action-buttons {
  1356. float: none;
  1357. margin: 1em 0 0;
  1358. text-align: right;
  1359. }
  1360. .plugin-action-buttons li {
  1361. display: inline-block;
  1362. vertical-align: middle;
  1363. }
  1364. .plugin-action-buttons li .button {
  1365. margin-left: 20px;
  1366. }
  1367. .plugin-card .name,
  1368. .plugin-card .desc {
  1369. margin-left: 0;
  1370. }
  1371. .plugin-card .desc p:first-of-type {
  1372. margin-top: 0;
  1373. }
  1374. .fixed .column-date {
  1375. width: 14%;
  1376. }
  1377. }
  1378. @media screen and ( max-width: 782px ) {
  1379. /* WP List Table Options & Filters */
  1380. .tablenav {
  1381. height: auto;
  1382. }
  1383. .tablenav.top {
  1384. margin: 20px 0 5px 0;
  1385. }
  1386. .tablenav.bottom {
  1387. position: relative;
  1388. margin-top: 15px;
  1389. }
  1390. .tablenav br {
  1391. display: none;
  1392. }
  1393. .tablenav br.clear {
  1394. display: block;
  1395. }
  1396. .tablenav.top .actions,
  1397. .tablenav .view-switch {
  1398. display: none;
  1399. }
  1400. .view-switch a {
  1401. width: 36px;
  1402. height: 36px;
  1403. line-height: 33px;
  1404. }
  1405. /* Pagination */
  1406. .tablenav.top .displaying-num {
  1407. display: none;
  1408. }
  1409. .tablenav.bottom .displaying-num {
  1410. position: absolute;
  1411. left: 0;
  1412. top: 11px;
  1413. margin: 0;
  1414. font-size: 14px;
  1415. }
  1416. .tablenav .tablenav-pages {
  1417. width: 100%;
  1418. height: auto;
  1419. text-align: center;
  1420. margin: 0 0 25px;
  1421. }
  1422. .tablenav.bottom .tablenav-pages {
  1423. margin-top: 25px;
  1424. }
  1425. .tablenav.top .tablenav-pages.one-page {
  1426. display: none;
  1427. }
  1428. .tablenav.bottom .tablenav-pages.one-page {
  1429. margin: 15px 0 0 0;
  1430. height: 0;
  1431. }
  1432. .tablenav-pages .pagination-links {
  1433. font-size: 16px;
  1434. }
  1435. .tablenav-pages .pagination-links a,
  1436. .tablenav-pages-navspan {
  1437. padding: 9px 11px 12px;
  1438. font-size: 18px;
  1439. }
  1440. .tablenav-pages-navspan {
  1441. height: 18px;
  1442. }
  1443. .tablenav-pages .pagination-links .current-page {
  1444. padding: 8px 9px 9px;
  1445. font-size: 16px;
  1446. }
  1447. /* WP List Table Adjustments: General */
  1448. .form-wrap > p {
  1449. display: none;
  1450. }
  1451. .comment-count {
  1452. font-size: 14px;
  1453. }
  1454. .wp-list-table th.column-primary ~ th,
  1455. .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) {
  1456. display: none;
  1457. }
  1458. .wp-list-table thead th.column-primary {
  1459. width: 100%;
  1460. }
  1461. /* Checkboxes need to show */
  1462. .wp-list-table tr th.check-column {
  1463. display: table-cell;
  1464. width: 35px;
  1465. }
  1466. .wp-list-table .column-primary .toggle-row {
  1467. display: block;
  1468. }
  1469. .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
  1470. position: relative;
  1471. clear: both;
  1472. display: block;
  1473. width: auto !important; /* needs to override some columns that are more specifically targeted */
  1474. }
  1475. .wp-list-table td.column-primary {
  1476. padding-left: 50px; /* space for toggle button */
  1477. }
  1478. .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary ~ td:not(.check-column) {
  1479. padding: 3px 35% 3px 8px;
  1480. }
  1481. .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
  1482. position: absolute;
  1483. right: 10px; /* match padding of regular table cell */
  1484. display: block;
  1485. overflow: hidden;
  1486. width: 32%; /* leave a little space for a gutter */
  1487. content: attr(data-colname);
  1488. white-space: nowrap;
  1489. text-overflow: ellipsis;
  1490. }
  1491. .wp-list-table .is-expanded td:not(.hidden) {
  1492. display: block !important;
  1493. overflow: hidden; /* clearfix */
  1494. }
  1495. /* Special cases */
  1496. .widefat .num,
  1497. .column-posts {
  1498. text-align: right;
  1499. }
  1500. #comments-form .fixed .column-author,
  1501. #commentsdiv .fixed .column-author {
  1502. display: none !important;
  1503. }
  1504. .fixed .column-comment .comment-author {
  1505. display: block;
  1506. }
  1507. #the-comment-list .is-expanded td {
  1508. box-shadow: none;
  1509. }
  1510. #the-comment-list .is-expanded td:last-child {
  1511. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  1512. }
  1513. /* Show comment bubble as text instead */
  1514. .post-com-count .screen-reader-text {
  1515. position: static;
  1516. -webkit-clip-path: none;
  1517. clip-path: none;
  1518. width: auto;
  1519. height: auto;
  1520. margin: 0;
  1521. }
  1522. .column-response .post-com-count-no-comments:after,
  1523. .column-response .post-com-count-approved:after,
  1524. .column-comments .post-com-count-no-comments:after,
  1525. .column-comments .post-com-count-approved:after {
  1526. content: none;
  1527. }
  1528. .column-response .post-com-count [aria-hidden="true"],
  1529. .column-comments .post-com-count [aria-hidden="true"] {
  1530. display: none;
  1531. }
  1532. .column-response .post-com-count-wrapper,
  1533. .column-comments .post-com-count-wrapper {
  1534. white-space: normal;
  1535. }
  1536. .column-response .post-com-count-wrapper > a,
  1537. .column-comments .post-com-count-wrapper > a {
  1538. display: block;
  1539. }
  1540. .column-response .post-com-count-no-comments,
  1541. .column-response .post-com-count-approved,
  1542. .column-comments .post-com-count-no-comments,
  1543. .column-comments .post-com-count-approved {
  1544. margin-top: 0;
  1545. margin-left: 0.5em;
  1546. }
  1547. .column-response .post-com-count-pending,
  1548. .column-comments .post-com-count-pending {
  1549. position: static;
  1550. height: auto;
  1551. min-width: 0;
  1552. padding: 0;
  1553. border: none;
  1554. border-radius: 0;
  1555. background: none;
  1556. color: #bb2a2a;
  1557. font-size: inherit;
  1558. line-height: inherit;
  1559. text-align: right;
  1560. }
  1561. .column-response .post-com-count-pending:hover,
  1562. .column-comments .post-com-count-pending:hover {
  1563. color: #dc3232;
  1564. }
  1565. .widefat thead td.check-column,
  1566. .widefat tfoot td.check-column {
  1567. padding-top: 10px;
  1568. }
  1569. .widefat * {
  1570. word-wrap: normal;
  1571. }
  1572. /* Quick Edit and Bulk Edit */
  1573. #wpbody-content .quick-edit-row-post .inline-edit-col-left,
  1574. #wpbody-content .quick-edit-row-post .inline-edit-col-right,
  1575. #wpbody-content .inline-edit-row-post .inline-edit-col-center,
  1576. #wpbody-content .quick-edit-row-page .inline-edit-col-left,
  1577. #wpbody-content .quick-edit-row-page .inline-edit-col-right,
  1578. #wpbody-content .bulk-edit-row-post .inline-edit-col-right,
  1579. #wpbody-content .bulk-edit-row .inline-edit-col-left,
  1580. #wpbody-content .bulk-edit-row-page .inline-edit-col-right,
  1581. #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
  1582. float: none;
  1583. width: 100%;
  1584. }
  1585. #wpbody-content .quick-edit-row fieldset .inline-edit-col label,
  1586. #wpbody-content .quick-edit-row fieldset .inline-edit-group label,
  1587. #wpbody-content .bulk-edit-row fieldset .inline-edit-col label,
  1588. #wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
  1589. max-width: none;
  1590. float: none;
  1591. margin-bottom: 5px;
  1592. }
  1593. #wpbody .bulk-edit-row fieldset select {
  1594. display: block;
  1595. width: 100%;
  1596. max-width: none;
  1597. box-sizing: border-box;
  1598. }
  1599. .inline-edit-row fieldset ul.cat-checklist label,
  1600. .inline-edit-row #bulk-titles div {
  1601. font-size: 16px;
  1602. }
  1603. .inline-edit-row fieldset label span.title,
  1604. .inline-edit-row fieldset.inline-edit-date legend {
  1605. float: none;
  1606. }
  1607. .inline-edit-row fieldset label.inline-edit-tags {
  1608. padding: 0 0.5em;
  1609. }
  1610. .inline-edit-row fieldset .inline-edit-col label.inline-edit-tags {
  1611. padding: 0;
  1612. }
  1613. .inline-edit-row fieldset label span.input-text-wrap,
  1614. .inline-edit-row fieldset .timestamp-wrap {
  1615. margin-right: 0;
  1616. }
  1617. .inline-edit-row fieldset input[name=jj],
  1618. .inline-edit-row fieldset input[name=hh],
  1619. .inline-edit-row fieldset input[name=mn] {
  1620. width: 3em;
  1621. }
  1622. .inline-edit-row fieldset input[name=aa] {
  1623. width: 4.5em;
  1624. }
  1625. .inline-edit-row .inline-edit-or {
  1626. margin: 0 0 0 6px;
  1627. }
  1628. #edithead .inside,
  1629. #commentsdiv #edithead .inside {
  1630. float: none;
  1631. text-align: right;
  1632. padding: 3px 5px;
  1633. }
  1634. #commentsdiv #edithead .inside input,
  1635. #edithead .inside input {
  1636. width: 100%;
  1637. }
  1638. #edithead label {
  1639. display: block;
  1640. }
  1641. #bulk-titles div {
  1642. margin: 0.8em 0.3em;
  1643. }
  1644. #bulk-titles div a {
  1645. height: 22px;
  1646. }
  1647. /* Updates */
  1648. #wpbody-content .updates-table .plugin-title {
  1649. width: auto;
  1650. white-space: normal;
  1651. }
  1652. /* Links */
  1653. .link-manager-php #posts-filter {
  1654. margin-top: 25px;
  1655. }
  1656. .link-manager-php .tablenav.bottom {
  1657. overflow: hidden;
  1658. }
  1659. /* List tables that don't toggle rows */
  1660. .comments-box .toggle-row,
  1661. .wp-list-table.plugins .toggle-row {
  1662. display: none;
  1663. }
  1664. /* Plugin/Theme Management */
  1665. #wpbody-content .wp-list-table.plugins td {
  1666. display: block;
  1667. width: auto;
  1668. padding: 10px 9px; /* reset from other list tables that have a label at this width */
  1669. }
  1670. #wpbody-content .wp-list-table.plugins .column-description {
  1671. padding-top: 2px;
  1672. }
  1673. #wpbody-content .wp-list-table.plugins .plugin-title,
  1674. #wpbody-content .wp-list-table.plugins .theme-title {
  1675. padding-left: 12px;
  1676. white-space: normal;
  1677. }
  1678. .wp-list-table.plugins .plugin-title,
  1679. .wp-list-table.plugins .theme-title {
  1680. padding-top: 13px;
  1681. padding-bottom: 4px;
  1682. }
  1683. .plugins #the-list tr > td:not(:last-child),
  1684. .plugins #the-list .update th,
  1685. .plugins #the-list .update td,
  1686. .wp-list-table.plugins #the-list .theme-title {
  1687. box-shadow: none;
  1688. border-top: none;
  1689. }
  1690. .plugins #the-list tr td {
  1691. border-top: none;
  1692. }
  1693. .plugins tbody {
  1694. padding: 1px 0 0;
  1695. }
  1696. .plugins tr.active + tr.inactive th.check-column,
  1697. .plugins tr.active + tr.inactive td.column-description,
  1698. .plugins .plugin-update-tr:before {
  1699. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  1700. }
  1701. .plugins tr.active + tr.inactive th.check-column,
  1702. .plugins tr.active + tr.inactive td {
  1703. border-top: none;
  1704. }
  1705. /* mimic the checkbox th */
  1706. .plugins .plugin-update-tr:before {
  1707. content: "";
  1708. display: table-cell;
  1709. }
  1710. .plugins .active.update + .plugin-update-tr:before {
  1711. border-right: 4px solid #d54e21;
  1712. background-color: #fef7f1;
  1713. }
  1714. .plugins #the-list .plugin-update-tr .plugin-update {
  1715. border-right: none;
  1716. }
  1717. .plugin-update-tr .update-message {
  1718. margin-right: 0;
  1719. }
  1720. .plugins .active.update + .plugin-update-tr:before {
  1721. background-color: #f7fcfe;
  1722. border-right: 4px solid #00a0d2;
  1723. }
  1724. .plugins .plugin-update-tr .update-message {
  1725. margin-right: 0;
  1726. }
  1727. .wp-list-table.plugins .plugin-title strong,
  1728. .wp-list-table.plugins .theme-title strong {
  1729. font-size: 1.4em;
  1730. line-height: 1.5;
  1731. }
  1732. /* Add New plugins page */
  1733. table.plugin-install .column-name,
  1734. table.plugin-install .column-version,
  1735. table.plugin-install .column-rating,
  1736. table.plugin-install .column-description {
  1737. display: block;
  1738. width: auto;
  1739. }
  1740. table.plugin-install th.column-name,
  1741. table.plugin-install th.column-version,
  1742. table.plugin-install th.column-rating,
  1743. table.plugin-install th.column-description {
  1744. display: none;
  1745. }
  1746. table.plugin-install td.column-name strong {
  1747. font-size: 1.4em;
  1748. line-height: 1.6em;
  1749. }
  1750. table.plugin-install #the-list td {
  1751. box-shadow: none;
  1752. }
  1753. table.plugin-install #the-list tr {
  1754. display: block;
  1755. box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
  1756. }
  1757. .plugin-card {
  1758. margin-right: 0;
  1759. margin-left: 0;
  1760. width: 100%;
  1761. }
  1762. }
  1763. @media screen and ( max-width: 480px ) {
  1764. .tablenav-pages .current-page {
  1765. margin: 0;
  1766. }
  1767. .tablenav-pages .tablenav-paging-text {
  1768. float: right;
  1769. width: 100%;
  1770. padding-top: 0.5em;
  1771. }
  1772. }