list-tables.css 41 KB

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