common.css 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068
  1. /* 2 column liquid layout */
  2. #wpwrap {
  3. height: auto;
  4. min-height: 100%;
  5. width: 100%;
  6. position: relative;
  7. -webkit-font-smoothing: subpixel-antialiased;
  8. }
  9. #wpcontent {
  10. height: 100%;
  11. padding-left: 20px;
  12. }
  13. #wpcontent,
  14. #wpfooter {
  15. margin-left: 160px;
  16. }
  17. .folded #wpcontent,
  18. .folded #wpfooter {
  19. margin-left: 36px;
  20. }
  21. #wpbody-content {
  22. padding-bottom: 65px;
  23. float: left;
  24. width: 100%;
  25. overflow: visible !important;
  26. }
  27. /* inner 2 column liquid layout */
  28. .inner-sidebar {
  29. float: right;
  30. clear: right;
  31. display: none;
  32. width: 281px;
  33. position: relative;
  34. }
  35. .columns-2 .inner-sidebar {
  36. margin-right: auto;
  37. width: 286px;
  38. display: block;
  39. }
  40. .inner-sidebar #side-sortables,
  41. .columns-2 .inner-sidebar #side-sortables {
  42. min-height: 300px;
  43. width: 280px;
  44. padding: 0;
  45. }
  46. .has-right-sidebar .inner-sidebar {
  47. display: block;
  48. }
  49. .has-right-sidebar #post-body {
  50. float: left;
  51. clear: left;
  52. width: 100%;
  53. margin-right: -2000px;
  54. }
  55. .has-right-sidebar #post-body-content {
  56. margin-right: 300px;
  57. float: none;
  58. width: auto;
  59. }
  60. /* 2 columns main area */
  61. #col-left {
  62. float: left;
  63. width: 35%;
  64. }
  65. #col-right {
  66. float: right;
  67. width: 65%;
  68. }
  69. #col-left .col-wrap {
  70. padding: 0 6px 0 0;
  71. }
  72. #col-right .col-wrap {
  73. padding: 0 0 0 6px;
  74. }
  75. /* utility classes */
  76. .alignleft {
  77. float: left;
  78. }
  79. .alignright {
  80. float: right;
  81. }
  82. .textleft {
  83. text-align: left;
  84. }
  85. .textright {
  86. text-align: right;
  87. }
  88. .clear {
  89. clear: both;
  90. }
  91. /* modern clearfix */
  92. .wp-clearfix:after {
  93. content: "";
  94. display: table;
  95. clear: both;
  96. }
  97. /* Hide visually but not from screen readers */
  98. .screen-reader-text,
  99. .screen-reader-text span,
  100. .ui-helper-hidden-accessible {
  101. border: 0;
  102. clip: rect(1px, 1px, 1px, 1px);
  103. -webkit-clip-path: inset(50%);
  104. clip-path: inset(50%);
  105. height: 1px;
  106. margin: -1px;
  107. overflow: hidden;
  108. padding: 0;
  109. position: absolute;
  110. width: 1px;
  111. word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */
  112. }
  113. .button .screen-reader-text {
  114. height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */
  115. }
  116. .screen-reader-shortcut {
  117. position: absolute;
  118. top: -1000em;
  119. }
  120. .screen-reader-shortcut:focus {
  121. left: 6px;
  122. top: -25px;
  123. height: auto;
  124. width: auto;
  125. display: block;
  126. font-size: 14px;
  127. font-weight: 600;
  128. padding: 15px 23px 14px;
  129. background: #f1f1f1;
  130. color: #0073aa;
  131. z-index: 100000;
  132. line-height: normal;
  133. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  134. text-decoration: none;
  135. /* Only visible in Windows High Contrast mode */
  136. outline: 2px solid transparent;
  137. outline-offset: -2px;
  138. }
  139. .hidden,
  140. .js .closed .inside,
  141. .js .hide-if-js,
  142. .no-js .hide-if-no-js,
  143. .js.wp-core-ui .hide-if-js,
  144. .js .wp-core-ui .hide-if-js,
  145. .no-js.wp-core-ui .hide-if-no-js,
  146. .no-js .wp-core-ui .hide-if-no-js {
  147. display: none;
  148. }
  149. /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */
  150. .widget-top,
  151. .menu-item-handle,
  152. .widget-inside,
  153. #menu-settings-column .accordion-container,
  154. #menu-management .menu-edit,
  155. .manage-menus,
  156. table.widefat,
  157. .stuffbox,
  158. p.popular-tags,
  159. .widgets-holder-wrap,
  160. .wp-editor-container,
  161. .popular-tags,
  162. .feature-filter,
  163. .imgedit-group,
  164. .comment-ays {
  165. border: 1px solid #ccd0d4;
  166. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  167. }
  168. table.widefat,
  169. .wp-editor-container,
  170. .stuffbox,
  171. p.popular-tags,
  172. .widgets-holder-wrap,
  173. .popular-tags,
  174. .feature-filter,
  175. .imgedit-group,
  176. .comment-ays {
  177. background: #fff;
  178. }
  179. /* general */
  180. html,
  181. body {
  182. height: 100%;
  183. margin: 0;
  184. padding: 0;
  185. }
  186. body {
  187. background: #f1f1f1;
  188. color: #444;
  189. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  190. font-size: 13px;
  191. line-height: 1.4em;
  192. min-width: 600px;
  193. }
  194. body.iframe {
  195. min-width: 0;
  196. padding-top: 1px;
  197. }
  198. body.modal-open {
  199. overflow: hidden;
  200. }
  201. body.mobile.modal-open #wpwrap {
  202. overflow: hidden;
  203. position: fixed;
  204. height: 100%;
  205. }
  206. iframe,
  207. img {
  208. border: 0;
  209. }
  210. td {
  211. font-family: inherit;
  212. font-size: inherit;
  213. font-weight: inherit;
  214. line-height: inherit;
  215. }
  216. /* Any change to the default link style must be applied to button-link too. */
  217. a {
  218. color: #0073aa;
  219. transition-property: border, background, color;
  220. transition-duration: .05s;
  221. transition-timing-function: ease-in-out;
  222. }
  223. a,
  224. div {
  225. outline: 0;
  226. }
  227. a:hover,
  228. a:active {
  229. color: #00a0d2;
  230. }
  231. a:focus,
  232. a:focus .media-icon img,
  233. .wp-person a:focus .gravatar {
  234. color: #124964;
  235. box-shadow:
  236. 0 0 0 1px #5b9dd9,
  237. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  238. /* Only visible in Windows High Contrast mode */
  239. outline: 1px solid transparent;
  240. }
  241. .ie8 a:focus {
  242. outline: #5b9dd9 solid 1px;
  243. }
  244. #adminmenu a:focus {
  245. box-shadow: none;
  246. /* Only visible in Windows High Contrast mode */
  247. outline: 1px solid transparent;
  248. outline-offset: -1px;
  249. }
  250. .screen-reader-text:focus {
  251. box-shadow: none;
  252. outline: none;
  253. }
  254. blockquote,
  255. q {
  256. quotes: none;
  257. }
  258. blockquote:before,
  259. blockquote:after,
  260. q:before,
  261. q:after {
  262. content: "";
  263. content: none;
  264. }
  265. p {
  266. font-size: 13px;
  267. line-height: 1.5;
  268. margin: 1em 0;
  269. }
  270. blockquote {
  271. margin: 1em;
  272. }
  273. li,
  274. dd {
  275. margin-bottom: 6px;
  276. }
  277. h1,
  278. h2,
  279. h3,
  280. h4,
  281. h5,
  282. h6 {
  283. display: block;
  284. font-weight: 600;
  285. }
  286. h1 {
  287. color: #23282d;
  288. font-size: 2em;
  289. margin: .67em 0;
  290. }
  291. h2,
  292. h3 {
  293. color: #23282d;
  294. font-size: 1.3em;
  295. margin: 1em 0;
  296. }
  297. .update-core-php h2 {
  298. margin-top: 2em;
  299. }
  300. .update-php h2,
  301. .update-messages h2,
  302. h4 {
  303. font-size: 1em;
  304. margin: 1.33em 0;
  305. }
  306. h5 {
  307. font-size: 0.83em;
  308. margin: 1.67em 0;
  309. }
  310. h6 {
  311. font-size: 0.67em;
  312. margin: 2.33em 0;
  313. }
  314. ul,
  315. ol {
  316. padding: 0;
  317. }
  318. ul {
  319. list-style: none;
  320. }
  321. ol {
  322. list-style-type: decimal;
  323. margin-left: 2em;
  324. }
  325. ul.ul-disc {
  326. list-style: disc outside;
  327. }
  328. ul.ul-square {
  329. list-style: square outside;
  330. }
  331. ol.ol-decimal {
  332. list-style: decimal outside;
  333. }
  334. ul.ul-disc,
  335. ul.ul-square,
  336. ol.ol-decimal {
  337. margin-left: 1.8em;
  338. }
  339. ul.ul-disc > li,
  340. ul.ul-square > li,
  341. ol.ol-decimal > li {
  342. margin: 0 0 0.5em;
  343. }
  344. /* rtl:ignore */
  345. .ltr {
  346. direction: ltr;
  347. }
  348. /* rtl:ignore */
  349. .code,
  350. code {
  351. font-family: Consolas, Monaco, monospace;
  352. direction: ltr;
  353. unicode-bidi: embed;
  354. }
  355. kbd,
  356. code {
  357. padding: 3px 5px 2px 5px;
  358. margin: 0 1px;
  359. background: #eaeaea;
  360. background: rgba(0, 0, 0, 0.07);
  361. font-size: 13px;
  362. }
  363. .subsubsub {
  364. list-style: none;
  365. margin: 8px 0 0;
  366. padding: 0;
  367. font-size: 13px;
  368. float: left;
  369. color: #666;
  370. }
  371. .subsubsub a {
  372. line-height: 2;
  373. padding: .2em;
  374. text-decoration: none;
  375. }
  376. .subsubsub a .count,
  377. .subsubsub a.current .count {
  378. color: #555d66; /* #f1f1f1 background */
  379. font-weight: 400;
  380. }
  381. .subsubsub a.current {
  382. font-weight: 600;
  383. border: none;
  384. }
  385. .subsubsub li {
  386. display: inline-block;
  387. margin: 0;
  388. padding: 0;
  389. white-space: nowrap;
  390. }
  391. .wp-die-message {
  392. font-size: 13px;
  393. line-height: 1.5;
  394. margin: 1em 0;
  395. }
  396. /* .widefat - main style for tables */
  397. .widefat {
  398. border-spacing: 0;
  399. width: 100%;
  400. clear: both;
  401. margin: 0;
  402. }
  403. .widefat * {
  404. word-wrap: break-word;
  405. }
  406. .widefat a,
  407. .widefat button.button-link {
  408. text-decoration: none;
  409. }
  410. .widefat td,
  411. .widefat th {
  412. padding: 8px 10px;
  413. }
  414. .widefat thead th,
  415. .widefat thead td {
  416. border-bottom: 1px solid #ccd0d4;
  417. }
  418. .widefat tfoot th,
  419. .widefat tfoot td {
  420. border-top: 1px solid #ccd0d4;
  421. border-bottom: none;
  422. }
  423. .widefat .no-items td {
  424. border-bottom-width: 0;
  425. }
  426. .widefat td {
  427. vertical-align: top;
  428. }
  429. .widefat td,
  430. .widefat td p,
  431. .widefat td ol,
  432. .widefat td ul {
  433. font-size: 13px;
  434. line-height: 1.5em;
  435. }
  436. .widefat th,
  437. .widefat thead td,
  438. .widefat tfoot td {
  439. text-align: left;
  440. line-height: 1.3em;
  441. font-size: 14px;
  442. }
  443. .widefat th input,
  444. .updates-table td input,
  445. .widefat thead td input,
  446. .widefat tfoot td input {
  447. margin: 0 0 0 8px;
  448. padding: 0;
  449. vertical-align: text-top;
  450. }
  451. .widefat .check-column {
  452. width: 2.2em;
  453. padding: 6px 0 25px;
  454. vertical-align: top;
  455. }
  456. .widefat tbody th.check-column {
  457. padding: 9px 0 22px;
  458. }
  459. .widefat thead td.check-column,
  460. .widefat tbody th.check-column,
  461. .updates-table tbody td.check-column,
  462. .widefat tfoot td.check-column {
  463. padding: 11px 0 0 3px;
  464. }
  465. .widefat thead td.check-column,
  466. .widefat tfoot td.check-column {
  467. padding-top: 4px;
  468. vertical-align: middle;
  469. }
  470. .update-php div.updated,
  471. .update-php div.error {
  472. margin-left: 0;
  473. }
  474. .no-js .widefat thead .check-column input,
  475. .no-js .widefat tfoot .check-column input {
  476. display: none;
  477. }
  478. .widefat .num,
  479. .column-comments,
  480. .column-links,
  481. .column-posts {
  482. text-align: center;
  483. }
  484. .widefat th#comments {
  485. vertical-align: middle;
  486. }
  487. .wrap {
  488. margin: 10px 20px 0 2px;
  489. }
  490. .wrap.block-editor-no-js {
  491. padding-left: 20px;
  492. }
  493. .wrap > h2:first-child, /* Back-compat for pre-4.4 */
  494. .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */
  495. .postbox .inside h2, /* Back-compat for pre-4.4 */
  496. .wrap h1 {
  497. font-size: 23px;
  498. font-weight: 400;
  499. margin: 0;
  500. padding: 9px 0 4px 0;
  501. line-height: 1.3;
  502. }
  503. .wrap h1.wp-heading-inline {
  504. display: inline-block;
  505. margin-right: 5px;
  506. }
  507. .wp-header-end {
  508. visibility: hidden;
  509. margin: -2px 0 0;
  510. }
  511. .subtitle {
  512. margin: 0;
  513. padding-left: 25px;
  514. color: #555d66;
  515. font-size: 14px;
  516. font-weight: 400;
  517. line-height: 1;
  518. }
  519. .wrap .add-new-h2, /* deprecated */
  520. .wrap .add-new-h2:active, /* deprecated */
  521. .wrap .page-title-action,
  522. .wrap .page-title-action:active {
  523. margin-left: 4px;
  524. padding: 4px 8px;
  525. position: relative;
  526. top: -3px;
  527. text-decoration: none;
  528. border: 1px solid #0071a1;
  529. border-radius: 2px;
  530. text-shadow: none;
  531. font-weight: 600;
  532. font-size: 13px;
  533. line-height: normal; /* IE8-IE11 need this for buttons */
  534. color: #0071a1; /* use the standard color used for buttons */
  535. background: #f3f5f6;
  536. cursor: pointer;
  537. }
  538. .wrap .wp-heading-inline + .page-title-action {
  539. margin-left: 0;
  540. }
  541. .wrap .add-new-h2:hover, /* deprecated */
  542. .wrap .page-title-action:hover {
  543. background: #f1f1f1;
  544. border-color: #016087;
  545. color: #016087;
  546. }
  547. /* lower specificity: color needs to be overridden by :hover and :active */
  548. .page-title-action:focus {
  549. color: #016087;
  550. }
  551. /* Dashicon for language options on General Settings and Profile screens */
  552. .form-table th label[for="locale"] .dashicons,
  553. .form-table th label[for="WPLANG"] .dashicons {
  554. margin-left: 5px;
  555. }
  556. .wrap .page-title-action:focus {
  557. border-color: #007cba;
  558. box-shadow: 0 0 0 1px #007cba;
  559. /* Only visible in Windows High Contrast mode */
  560. outline: 2px solid transparent;
  561. }
  562. .wrap h1.long-header {
  563. padding-right: 0;
  564. }
  565. .wp-dialog {
  566. background-color: #fff;
  567. }
  568. .widgets-chooser ul,
  569. #widgets-left .widget-in-question .widget-top,
  570. #available-widgets .widget-top:hover,
  571. div#widgets-right .widget-top:hover,
  572. #widgets-left .widget-top:hover {
  573. border-color: #999;
  574. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  575. }
  576. .sorthelper {
  577. background-color: #ccf3fa;
  578. }
  579. .ac_match,
  580. .subsubsub a.current {
  581. color: #000;
  582. }
  583. .striped > tbody > :nth-child(odd),
  584. ul.striped > :nth-child(odd),
  585. .alternate {
  586. background-color: #f9f9f9;
  587. }
  588. .bar {
  589. background-color: #e8e8e8;
  590. border-right-color: #99d;
  591. }
  592. /* Helper classes for plugins to leverage the active WordPress color scheme */
  593. .highlight {
  594. background-color: #e4f2fd;
  595. color: #000;
  596. }
  597. .wp-ui-primary {
  598. color: #fff;
  599. background-color: #32373c;
  600. }
  601. .wp-ui-text-primary {
  602. color: #32373c;
  603. }
  604. .wp-ui-highlight {
  605. color: #fff;
  606. background-color: #1e8cbe;
  607. }
  608. .wp-ui-text-highlight {
  609. color: #1e8cbe;
  610. }
  611. .wp-ui-notification {
  612. color: #fff;
  613. background-color: #d54e21;
  614. }
  615. .wp-ui-text-notification {
  616. color: #d54e21;
  617. }
  618. .wp-ui-text-icon {
  619. color: #82878c; /* same as new icons */
  620. }
  621. /* For emoji replacement images */
  622. img.emoji {
  623. display: inline !important;
  624. border: none !important;
  625. height: 1em !important;
  626. width: 1em !important;
  627. margin: 0 .07em !important;
  628. vertical-align: -0.1em !important;
  629. background: none !important;
  630. padding: 0 !important;
  631. box-shadow: none !important;
  632. }
  633. /*------------------------------------------------------------------------------
  634. 1.0 - Text Styles
  635. ------------------------------------------------------------------------------*/
  636. .widget .widget-top,
  637. .postbox .hndle,
  638. .stuffbox .hndle,
  639. .control-section .accordion-section-title,
  640. .sidebar-name,
  641. #nav-menu-header,
  642. #nav-menu-footer,
  643. .menu-item-handle,
  644. .checkbox,
  645. .side-info,
  646. #your-profile #rich_editing,
  647. .widefat thead th,
  648. .widefat thead td,
  649. .widefat tfoot th,
  650. .widefat tfoot td {
  651. line-height: 1.4em;
  652. }
  653. .widget .widget-top,
  654. .menu-item-handle {
  655. background: #fafafa;
  656. color: #23282d;
  657. }
  658. .postbox .hndle,
  659. .stuffbox .hndle {
  660. border-bottom: 1px solid #ccd0d4;
  661. }
  662. .quicktags {
  663. background-color: #ccc;
  664. color: #000;
  665. font-size: 12px;
  666. }
  667. .icon32 {
  668. display: none;
  669. }
  670. /* @todo can we combine these into a class or use an existing dashicon one? */
  671. .welcome-panel .welcome-panel-close:before,
  672. .tagchecklist .ntdelbutton .remove-tag-icon:before,
  673. #bulk-titles div a:before,
  674. .notice-dismiss:before {
  675. background: none;
  676. color: #72777c;
  677. content: "\f153";
  678. display: block;
  679. font: normal 16px/20px dashicons;
  680. speak: none;
  681. height: 20px;
  682. text-align: center;
  683. width: 20px;
  684. -webkit-font-smoothing: antialiased;
  685. -moz-osx-font-smoothing: grayscale;
  686. }
  687. .welcome-panel .welcome-panel-close:before {
  688. margin: 0;
  689. }
  690. #bulk-titles div a:before {
  691. margin: 1px 0;
  692. }
  693. .tagchecklist .ntdelbutton .remove-tag-icon:before {
  694. margin-left: 2px;
  695. border-radius: 50%;
  696. color: #0073aa;
  697. /* vertically center the icon cross browsers */
  698. line-height: 1.28;
  699. }
  700. .tagchecklist .ntdelbutton:focus {
  701. outline: 0;
  702. }
  703. .welcome-panel .welcome-panel-close:hover:before,
  704. .welcome-panel .welcome-panel-close:focus:before,
  705. .tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
  706. .tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
  707. #bulk-titles div a:hover:before,
  708. #bulk-titles div a:focus:before {
  709. color: #c00;
  710. }
  711. .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
  712. box-shadow:
  713. 0 0 0 1px #5b9dd9,
  714. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  715. }
  716. .key-labels label {
  717. line-height: 24px;
  718. }
  719. strong, b {
  720. font-weight: 600;
  721. }
  722. .pre {
  723. /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
  724. white-space: pre-wrap; /* css-3 */
  725. word-wrap: break-word; /* IE 5.5 - 7 */
  726. }
  727. .howto {
  728. color: #666;
  729. font-style: italic;
  730. display: block;
  731. }
  732. p.install-help {
  733. margin: 8px 0;
  734. font-style: italic;
  735. }
  736. .no-break {
  737. white-space: nowrap;
  738. }
  739. hr {
  740. border: 0;
  741. border-top: 1px solid #ddd;
  742. border-bottom: 1px solid #fafafa;
  743. }
  744. .row-actions span.delete a,
  745. .row-actions span.trash a,
  746. .row-actions span.spam a,
  747. .plugins a.delete,
  748. #all-plugins-table .plugins a.delete,
  749. #search-plugins-table .plugins a.delete,
  750. .submitbox .submitdelete,
  751. #media-items a.delete,
  752. #media-items a.delete-permanently,
  753. #nav-menu-footer .menu-delete,
  754. #delete-link a.delete {
  755. color: #a00;
  756. }
  757. abbr.required,
  758. span.required,
  759. .file-error,
  760. .row-actions .delete a:hover,
  761. .row-actions .trash a:hover,
  762. .row-actions .spam a:hover,
  763. .plugins a.delete:hover,
  764. #all-plugins-table .plugins a.delete:hover,
  765. #search-plugins-table .plugins a.delete:hover,
  766. .submitbox .submitdelete:hover,
  767. #media-items a.delete:hover,
  768. #media-items a.delete-permanently:hover,
  769. #nav-menu-footer .menu-delete:hover,
  770. #delete-link a.delete:hover {
  771. color: #dc3232;
  772. border: none;
  773. }
  774. /*------------------------------------------------------------------------------
  775. 3.0 - Actions
  776. ------------------------------------------------------------------------------*/
  777. #major-publishing-actions {
  778. padding: 10px;
  779. clear: both;
  780. border-top: 1px solid #ddd;
  781. background: #f5f5f5;
  782. }
  783. #delete-action {
  784. float: left;
  785. line-height: 2.1;
  786. }
  787. #delete-link {
  788. line-height: 2.1;
  789. vertical-align: middle;
  790. text-align: left;
  791. margin-left: 8px;
  792. }
  793. #delete-link a {
  794. text-decoration: none;
  795. }
  796. #publishing-action {
  797. text-align: right;
  798. float: right;
  799. line-height: 1.9;
  800. }
  801. #publishing-action .spinner {
  802. float: left;
  803. }
  804. #misc-publishing-actions {
  805. padding: 6px 0 0;
  806. }
  807. .misc-pub-section {
  808. padding: 6px 10px 8px;
  809. }
  810. .misc-pub-filename {
  811. word-wrap: break-word;
  812. }
  813. #minor-publishing-actions {
  814. padding: 10px 10px 0 10px;
  815. text-align: right;
  816. }
  817. #save-post {
  818. float: left;
  819. }
  820. .preview {
  821. float: right;
  822. }
  823. #sticky-span {
  824. margin-left: 18px;
  825. }
  826. .approve,
  827. .unapproved .unapprove {
  828. display: none;
  829. }
  830. .unapproved .approve,
  831. .spam .approve,
  832. .trash .approve {
  833. display: inline;
  834. }
  835. td.action-links,
  836. th.action-links {
  837. text-align: right;
  838. }
  839. #misc-publishing-actions .notice {
  840. margin-left: 10px;
  841. margin-right: 10px;
  842. }
  843. /* Filter bar */
  844. .wp-filter {
  845. display: inline-block;
  846. position: relative;
  847. box-sizing: border-box;
  848. margin: 12px 0 25px;
  849. padding: 0 10px;
  850. width: 100%;
  851. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  852. border: 1px solid #ccd0d4;
  853. background: #fff;
  854. color: #555;
  855. font-size: 13px;
  856. }
  857. .wp-filter a {
  858. text-decoration: none;
  859. }
  860. .filter-count {
  861. display: inline-block;
  862. vertical-align: middle;
  863. min-width: 4em;
  864. }
  865. .title-count,
  866. .filter-count .count {
  867. display: inline-block;
  868. position: relative;
  869. top: -1px;
  870. padding: 4px 10px;
  871. border-radius: 30px;
  872. background: #72777c;
  873. color: #fff;
  874. font-size: 14px;
  875. font-weight: 600;
  876. }
  877. /* not a part of filter bar, but derived from it, so here for now */
  878. .title-count {
  879. display: inline;
  880. top: -3px;
  881. margin-left: 5px;
  882. margin-right: 20px;
  883. }
  884. .filter-items {
  885. float: left;
  886. }
  887. .filter-links {
  888. display: inline-block;
  889. margin: 0;
  890. }
  891. .filter-links li {
  892. display: inline-block;
  893. margin: 0;
  894. }
  895. .filter-links li > a {
  896. display: inline-block;
  897. margin: 0 10px;
  898. padding: 15px 0;
  899. border-bottom: 4px solid #fff;
  900. color: #666;
  901. cursor: pointer;
  902. }
  903. .filter-links .current {
  904. box-shadow: none;
  905. border-bottom: 4px solid #666;
  906. color: #23282d;
  907. }
  908. .filter-links li > a:hover,
  909. .filter-links li > a:focus,
  910. .show-filters .filter-links a.current:hover,
  911. .show-filters .filter-links a.current:focus {
  912. color: #00a0d2;
  913. }
  914. .wp-filter .search-form {
  915. float: right;
  916. margin: 10px 0;
  917. }
  918. .wp-filter .search-form input[type="search"] {
  919. margin: 0;
  920. width: 280px;
  921. max-width: 100%;
  922. font-size: inherit;
  923. /* inherits font size 13px */
  924. line-height: 2.15384615; /* 28px */
  925. }
  926. .wp-filter .search-form select {
  927. margin: 0;
  928. }
  929. .wp-filter .search-form.search-plugins {
  930. display: inline-block;
  931. }
  932. .wp-filter .button.drawer-toggle {
  933. margin: 10px 9px 0;
  934. padding: 0 10px 0 6px;
  935. border-color: transparent;
  936. background-color: transparent;
  937. color: #666;
  938. vertical-align: baseline;
  939. box-shadow: none;
  940. }
  941. .wp-filter .drawer-toggle:before {
  942. content: "\f111";
  943. margin: 0 5px 0 0;
  944. color: #72777c;
  945. font: normal 16px/1 dashicons;
  946. vertical-align: text-bottom;
  947. -webkit-font-smoothing: antialiased;
  948. -moz-osx-font-smoothing: grayscale;
  949. }
  950. .wp-filter .button.drawer-toggle:hover,
  951. .wp-filter .drawer-toggle:hover:before,
  952. .wp-filter .button.drawer-toggle:focus,
  953. .wp-filter .drawer-toggle:focus:before {
  954. background-color: transparent;
  955. color: #00a0d2;
  956. }
  957. .wp-filter .button.drawer-toggle:hover,
  958. .wp-filter .button.drawer-toggle:focus:active {
  959. border-color: transparent;
  960. }
  961. .wp-filter .button.drawer-toggle:focus {
  962. border-color: #5b9dd9;
  963. }
  964. .wp-filter .button.drawer-toggle:active {
  965. background: transparent;
  966. box-shadow: none;
  967. transform: none;
  968. }
  969. .wp-filter .drawer-toggle.current:before {
  970. color: #fff;
  971. }
  972. .filter-drawer,
  973. .wp-filter .favorites-form {
  974. display: none;
  975. margin: 0 -10px 0 -20px;
  976. padding: 20px;
  977. border-top: 1px solid #eee;
  978. background: #fafafa;
  979. overflow: hidden;
  980. }
  981. .show-filters .filter-drawer,
  982. .show-favorites-form .favorites-form {
  983. display: block;
  984. }
  985. .show-filters .filter-links a.current {
  986. border-bottom: none;
  987. }
  988. .show-filters .wp-filter .button.drawer-toggle {
  989. border-radius: 2px;
  990. background: #72777c;
  991. color: #fff;
  992. }
  993. .show-filters .wp-filter .drawer-toggle:hover,
  994. .show-filters .wp-filter .drawer-toggle:focus {
  995. background: rgb(46, 162, 204);
  996. }
  997. .show-filters .wp-filter .drawer-toggle:before {
  998. color: #fff;
  999. }
  1000. .filter-group {
  1001. box-sizing: border-box;
  1002. position: relative;
  1003. float: left;
  1004. margin: 0 1% 0 0;
  1005. padding: 20px 10px 10px;
  1006. width: 24%;
  1007. background: #fff;
  1008. border: 1px solid #e5e5e5;
  1009. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  1010. }
  1011. .filter-group legend {
  1012. position: absolute;
  1013. top: 10px;
  1014. display: block;
  1015. margin: 0;
  1016. padding: 0;
  1017. font-size: 1em;
  1018. font-weight: 600;
  1019. }
  1020. .filter-drawer .filter-group-feature {
  1021. margin: 28px 0 0;
  1022. list-style-type: none;
  1023. font-size: 12px;
  1024. }
  1025. .filter-drawer .filter-group-feature input,
  1026. .filter-drawer .filter-group-feature label {
  1027. line-height: 1.4;
  1028. }
  1029. .filter-drawer .filter-group-feature input {
  1030. position: absolute;
  1031. margin: 0;
  1032. }
  1033. .filter-group .filter-group-feature label {
  1034. display: block;
  1035. margin: 14px 0px 14px 23px;
  1036. }
  1037. .filter-drawer .buttons {
  1038. clear: both;
  1039. margin-bottom: 20px;
  1040. }
  1041. .filter-drawer .filter-group + .buttons {
  1042. margin-bottom: 0;
  1043. padding-top: 20px;
  1044. }
  1045. .filter-drawer .buttons .button span {
  1046. display: inline-block;
  1047. opacity: 0.8;
  1048. font-size: 12px;
  1049. text-indent: 10px;
  1050. }
  1051. .wp-filter .button.clear-filters {
  1052. display: none;
  1053. margin-left: 10px;
  1054. }
  1055. .wp-filter .button-link.edit-filters {
  1056. padding: 0 5px;
  1057. line-height: 2.2;
  1058. }
  1059. .filtered-by {
  1060. display: none;
  1061. margin: 0;
  1062. }
  1063. .filtered-by > span {
  1064. font-weight: 600;
  1065. }
  1066. .filtered-by a {
  1067. margin-left: 10px;
  1068. }
  1069. .filtered-by .tags {
  1070. display: inline;
  1071. }
  1072. .filtered-by .tag {
  1073. margin: 0 5px;
  1074. padding: 4px 8px;
  1075. border: 1px solid #e5e5e5;
  1076. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  1077. background: #fff;
  1078. font-size: 11px;
  1079. }
  1080. .filters-applied .filter-group,
  1081. .filters-applied .filter-drawer .buttons,
  1082. .filters-applied .filter-drawer br {
  1083. display: none !important;
  1084. }
  1085. .filters-applied .filtered-by {
  1086. display: block;
  1087. }
  1088. .filters-applied .filter-drawer {
  1089. padding: 20px;
  1090. }
  1091. .show-filters .favorites-form,
  1092. .show-filters .content-filterable,
  1093. .show-filters.filters-applied.loading-content .content-filterable,
  1094. .loading-content .content-filterable,
  1095. .error .content-filterable {
  1096. display: none;
  1097. }
  1098. .show-filters.filters-applied .content-filterable {
  1099. display: block;
  1100. }
  1101. .loading-content .spinner {
  1102. display: block;
  1103. margin: 40px auto 0;
  1104. float: none;
  1105. }
  1106. @media only screen and (max-width: 1120px) {
  1107. .filter-drawer {
  1108. border-bottom: 1px solid #eee;
  1109. }
  1110. .filter-group {
  1111. margin-bottom: 0;
  1112. margin-top: 5px;
  1113. width: 100%;
  1114. }
  1115. .filter-group li {
  1116. margin: 10px 0;
  1117. }
  1118. }
  1119. @media only screen and (max-width: 1000px) {
  1120. .filter-items {
  1121. float: none;
  1122. }
  1123. .wp-filter .media-toolbar-primary,
  1124. .wp-filter .media-toolbar-secondary,
  1125. .wp-filter .search-form {
  1126. float: none; /* Remove float from media-views.css */
  1127. position: relative;
  1128. max-width: 100%;
  1129. }
  1130. }
  1131. @media only screen and (max-width: 782px) {
  1132. .filter-group li {
  1133. padding: 0;
  1134. width: 50%;
  1135. }
  1136. }
  1137. @media only screen and (max-width: 320px) {
  1138. .filter-count {
  1139. display: none;
  1140. }
  1141. .wp-filter .drawer-toggle {
  1142. margin: 10px 0;
  1143. }
  1144. .filter-group li,
  1145. .wp-filter .search-form input[type="search"] {
  1146. width: 100%;
  1147. }
  1148. }
  1149. /*------------------------------------------------------------------------------
  1150. 4.0 - Notifications
  1151. ------------------------------------------------------------------------------*/
  1152. .notice,
  1153. div.updated,
  1154. div.error {
  1155. background: #fff;
  1156. border: 1px solid #ccd0d4;
  1157. border-left-width: 4px;
  1158. box-shadow: 0 1px 1px rgba(0,0,0,.04);
  1159. margin: 5px 15px 2px;
  1160. padding: 1px 12px;
  1161. }
  1162. div[class="update-message"] { /* back-compat for pre-4.6 */
  1163. padding: 0.5em 12px 0.5em 0;
  1164. }
  1165. .notice p,
  1166. .notice-title,
  1167. div.updated p,
  1168. div.error p,
  1169. .form-table td .notice p {
  1170. margin: 0.5em 0;
  1171. padding: 2px;
  1172. }
  1173. .error a {
  1174. text-decoration: underline;
  1175. }
  1176. .updated a {
  1177. padding-bottom: 2px;
  1178. }
  1179. .notice-alt {
  1180. box-shadow: none;
  1181. }
  1182. .notice-large {
  1183. padding: 10px 20px;
  1184. }
  1185. .notice-title {
  1186. display: inline-block;
  1187. color: #23282d;
  1188. font-size: 18px;
  1189. }
  1190. .wp-core-ui .notice.is-dismissible {
  1191. padding-right: 38px;
  1192. position: relative;
  1193. }
  1194. .notice-dismiss {
  1195. position: absolute;
  1196. top: 0;
  1197. right: 1px;
  1198. border: none;
  1199. margin: 0;
  1200. padding: 9px;
  1201. background: none;
  1202. color: #72777c;
  1203. cursor: pointer;
  1204. }
  1205. .notice-dismiss:hover:before,
  1206. .notice-dismiss:active:before,
  1207. .notice-dismiss:focus:before {
  1208. color: #c00;
  1209. }
  1210. .notice-dismiss:focus {
  1211. outline: none;
  1212. box-shadow:
  1213. 0 0 0 1px #5b9dd9,
  1214. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  1215. }
  1216. .ie8 .notice-dismiss:focus {
  1217. outline: 1px solid #5b9dd9;
  1218. }
  1219. .notice-success,
  1220. div.updated {
  1221. border-left-color: #46b450;
  1222. }
  1223. .notice-success.notice-alt {
  1224. background-color: #ecf7ed;
  1225. }
  1226. .notice-warning {
  1227. border-left-color: #ffb900;
  1228. }
  1229. .notice-warning.notice-alt {
  1230. background-color: #fff8e5;
  1231. }
  1232. .notice-error,
  1233. div.error {
  1234. border-left-color: #dc3232;
  1235. }
  1236. .notice-error.notice-alt {
  1237. background-color: #fbeaea;
  1238. }
  1239. .notice-info {
  1240. border-left-color: #00a0d2;
  1241. }
  1242. .notice-info.notice-alt {
  1243. background-color: #e5f5fa;
  1244. }
  1245. .update-message p:before,
  1246. .updating-message p:before,
  1247. .updated-message p:before,
  1248. .import-php .updating-message:before,
  1249. .button.updating-message:before,
  1250. .button.updated-message:before,
  1251. .button.installed:before,
  1252. .button.installing:before {
  1253. display: inline-block;
  1254. font: normal 20px/1 'dashicons';
  1255. -webkit-font-smoothing: antialiased;
  1256. -moz-osx-font-smoothing: grayscale;
  1257. vertical-align: top;
  1258. }
  1259. .wrap .notice,
  1260. .wrap div.updated,
  1261. .wrap div.error,
  1262. .media-upload-form .notice,
  1263. .media-upload-form div.error {
  1264. margin: 5px 0 15px;
  1265. }
  1266. .wrap #templateside .notice {
  1267. display: block;
  1268. margin: 0;
  1269. padding: 5px 8px;
  1270. font-weight: 600;
  1271. text-decoration: none;
  1272. }
  1273. .wrap #templateside span.notice {
  1274. margin-left: -12px;
  1275. }
  1276. #templateside li.notice a {
  1277. padding: 0;
  1278. }
  1279. /* Update icon. */
  1280. .update-message p:before,
  1281. .updating-message p:before,
  1282. .import-php .updating-message:before,
  1283. .button.updating-message:before,
  1284. .button.installing:before {
  1285. color: #f56e28;
  1286. content: "\f463";
  1287. }
  1288. /* Spins the update icon. */
  1289. .updating-message p:before,
  1290. .import-php .updating-message:before,
  1291. .button.updating-message:before,
  1292. .button.installing:before {
  1293. animation: rotation 2s infinite linear;
  1294. }
  1295. /* Updated icon (check mark). */
  1296. .updated-message p:before,
  1297. .installed p:before,
  1298. .button.updated-message:before {
  1299. color: #79ba49;
  1300. content: "\f147";
  1301. }
  1302. /* Error icon. */
  1303. .update-message.notice-error p:before {
  1304. color: #dc3232;
  1305. content: "\f534";
  1306. }
  1307. .wrap .notice p:before,
  1308. .import-php .updating-message:before {
  1309. margin-right: 6px;
  1310. vertical-align: bottom;
  1311. }
  1312. #update-nag,
  1313. .update-nag {
  1314. display: inline-block;
  1315. line-height: 1.4;
  1316. padding: 11px 15px;
  1317. font-size: 14px;
  1318. text-align: left;
  1319. margin: 25px 20px 0 2px;
  1320. background-color: #fff;
  1321. border-left: 4px solid #ffba00;
  1322. box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  1323. }
  1324. ul#dismissed-updates {
  1325. display: none;
  1326. }
  1327. #dismissed-updates li > p {
  1328. margin-top: 0;
  1329. }
  1330. #dismiss,
  1331. #undismiss {
  1332. margin-left: 0.5em;
  1333. }
  1334. form.upgrade {
  1335. margin-top: 8px;
  1336. }
  1337. form.upgrade .hint {
  1338. font-style: italic;
  1339. font-size: 85%;
  1340. margin: -0.5em 0 2em 0;
  1341. }
  1342. .update-php .spinner {
  1343. float: none;
  1344. margin: -4px 0;
  1345. }
  1346. #ajax-loading,
  1347. .ajax-loading,
  1348. .ajax-feedback,
  1349. .imgedit-wait-spin,
  1350. .list-ajax-loading { /* deprecated */
  1351. visibility: hidden;
  1352. }
  1353. #ajax-response.alignleft {
  1354. margin-left: 2em;
  1355. }
  1356. .button.updating-message:before,
  1357. .button.updated-message:before,
  1358. .button.installed:before,
  1359. .button.installing:before {
  1360. margin: 3px 5px 0 -2px;
  1361. }
  1362. .button-primary.updating-message:before {
  1363. color: #fff;
  1364. }
  1365. .button-primary.updated-message:before {
  1366. color: #66c6e4;
  1367. }
  1368. .button.updated-message {
  1369. transition-property: border, background, color;
  1370. transition-duration: .05s;
  1371. transition-timing-function: ease-in-out;
  1372. }
  1373. @media aural {
  1374. .wrap .notice p:before,
  1375. .button.installing:before,
  1376. .button.installed:before,
  1377. .update-message p:before {
  1378. speak: none;
  1379. }
  1380. }
  1381. /* @todo: this does not need its own section anymore */
  1382. /*------------------------------------------------------------------------------
  1383. 6.0 - Admin Header
  1384. ------------------------------------------------------------------------------*/
  1385. #adminmenu a,
  1386. #taglist a,
  1387. #catlist a {
  1388. text-decoration: none;
  1389. }
  1390. /*------------------------------------------------------------------------------
  1391. 6.1 - Screen Options Tabs
  1392. ------------------------------------------------------------------------------*/
  1393. #screen-options-wrap,
  1394. #contextual-help-wrap {
  1395. margin: 0;
  1396. padding: 8px 20px 12px;
  1397. position: relative;
  1398. }
  1399. #contextual-help-wrap {
  1400. overflow: auto;
  1401. margin-left: 0 !important;
  1402. }
  1403. #screen-meta-links {
  1404. float: right;
  1405. margin: 0 20px 0 0;
  1406. }
  1407. /* screen options and help tabs revert */
  1408. #screen-meta {
  1409. display: none;
  1410. margin: 0 20px -1px 0px;
  1411. position: relative;
  1412. background-color: #fff;
  1413. border: 1px solid #ccd0d4;
  1414. border-top: none;
  1415. box-shadow: 0 0 0 transparent;
  1416. }
  1417. #screen-options-link-wrap,
  1418. #contextual-help-link-wrap {
  1419. float: left;
  1420. margin: 0 0 0 6px;
  1421. }
  1422. #screen-meta-links .screen-meta-toggle {
  1423. position: relative;
  1424. top: 0;
  1425. }
  1426. #screen-meta-links .show-settings {
  1427. border: 1px solid #ccd0d4;
  1428. border-top: none;
  1429. height: auto;
  1430. margin-bottom: 0;
  1431. padding: 3px 6px 3px 16px;
  1432. background: #fff;
  1433. border-radius: 0 0 4px 4px;
  1434. color: #72777c;
  1435. line-height: 1.7;
  1436. box-shadow: 0 0 0 transparent;
  1437. transition: box-shadow 0.1s linear;
  1438. }
  1439. #screen-meta-links .show-settings:hover,
  1440. #screen-meta-links .show-settings:active,
  1441. #screen-meta-links .show-settings:focus {
  1442. color: #32373c;
  1443. }
  1444. #screen-meta-links .show-settings:focus {
  1445. border-color: #5b9dd9;
  1446. box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
  1447. }
  1448. #screen-meta-links .show-settings:active {
  1449. transform: none;
  1450. }
  1451. #screen-meta-links .show-settings:after {
  1452. right: 0;
  1453. content: "\f140";
  1454. font: normal 20px/1 dashicons;
  1455. speak: none;
  1456. display: inline-block;
  1457. padding: 0 5px 0 0;
  1458. bottom: 2px;
  1459. position: relative;
  1460. vertical-align: bottom;
  1461. -webkit-font-smoothing: antialiased;
  1462. -moz-osx-font-smoothing: grayscale;
  1463. text-decoration: none !important;
  1464. color: #72777c;
  1465. }
  1466. #screen-meta-links .screen-meta-active:after {
  1467. content: "\f142";
  1468. }
  1469. /* end screen options and help tabs */
  1470. .toggle-arrow {
  1471. background-repeat: no-repeat;
  1472. background-position: top left;
  1473. background-color: transparent;
  1474. height: 22px;
  1475. line-height: 22px;
  1476. display: block;
  1477. }
  1478. .toggle-arrow-active {
  1479. background-position: bottom left;
  1480. }
  1481. #screen-options-wrap h5, /* Back-compat for old plugins */
  1482. #screen-options-wrap legend,
  1483. #contextual-help-wrap h5 {
  1484. margin: 0;
  1485. padding: 8px 0;
  1486. font-size: 13px;
  1487. font-weight: 600;
  1488. }
  1489. .ie8 #screen-options-wrap legend {
  1490. color: inherit;
  1491. }
  1492. .metabox-prefs label {
  1493. display: inline-block;
  1494. padding-right: 15px;
  1495. line-height: 2.35;
  1496. }
  1497. #number-of-columns {
  1498. display: inline-block;
  1499. vertical-align: middle;
  1500. line-height: 30px;
  1501. }
  1502. .metabox-prefs input[type=checkbox] {
  1503. margin-top: 0;
  1504. margin-right: 6px;
  1505. }
  1506. .metabox-prefs label input,
  1507. .metabox-prefs label input[type=checkbox] {
  1508. margin: -4px 5px 0 0;
  1509. }
  1510. .metabox-prefs .columns-prefs label input {
  1511. margin: -1px 2px 0 0;
  1512. }
  1513. .metabox-prefs label a {
  1514. display: none;
  1515. }
  1516. .metabox-prefs .screen-options input,
  1517. .metabox-prefs .screen-options label {
  1518. margin-top: 0;
  1519. margin-bottom: 0;
  1520. vertical-align: middle;
  1521. }
  1522. .metabox-prefs .screen-options .screen-per-page {
  1523. margin-right: 15px;
  1524. }
  1525. .metabox-prefs .screen-options label {
  1526. line-height: 2.2;
  1527. padding-right: 0;
  1528. }
  1529. .screen-options + .screen-options {
  1530. margin-top: 10px;
  1531. }
  1532. .metabox-prefs .submit {
  1533. margin-top: 1em;
  1534. padding: 0;
  1535. }
  1536. /*------------------------------------------------------------------------------
  1537. 6.2 - Help Menu
  1538. ------------------------------------------------------------------------------*/
  1539. #contextual-help-wrap {
  1540. padding: 0;
  1541. }
  1542. #contextual-help-columns {
  1543. position: relative;
  1544. }
  1545. #contextual-help-back {
  1546. position: absolute;
  1547. top: 0;
  1548. bottom: 0;
  1549. left: 150px;
  1550. right: 170px;
  1551. border: 1px solid #ccd0d4;
  1552. border-top: none;
  1553. border-bottom: none;
  1554. background: #f6fbfd;
  1555. }
  1556. #contextual-help-wrap.no-sidebar #contextual-help-back {
  1557. right: 0;
  1558. border-right-width: 0;
  1559. border-bottom-right-radius: 2px;
  1560. }
  1561. .contextual-help-tabs {
  1562. float: left;
  1563. width: 150px;
  1564. margin: 0;
  1565. }
  1566. .contextual-help-tabs ul {
  1567. margin: 1em 0;
  1568. }
  1569. .contextual-help-tabs li {
  1570. margin-bottom: 0;
  1571. list-style-type: none;
  1572. border-style: solid;
  1573. border-width: 0 0 0 2px;
  1574. border-color: transparent;
  1575. }
  1576. .contextual-help-tabs a {
  1577. display: block;
  1578. padding: 5px 5px 5px 12px;
  1579. line-height: 1.4;
  1580. text-decoration: none;
  1581. border: 1px solid transparent;
  1582. border-right: none;
  1583. border-left: none;
  1584. }
  1585. .contextual-help-tabs a:hover {
  1586. color: #32373c;
  1587. }
  1588. .contextual-help-tabs .active {
  1589. padding: 0;
  1590. margin: 0 -1px 0 0;
  1591. border-left: 2px solid #00a0d2;
  1592. background: #f6fbfd;
  1593. box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
  1594. }
  1595. .contextual-help-tabs .active a {
  1596. border-color: #ccd0d4;
  1597. color: #32373c;
  1598. }
  1599. .contextual-help-tabs-wrap {
  1600. padding: 0 20px;
  1601. overflow: auto;
  1602. }
  1603. .help-tab-content {
  1604. display: none;
  1605. margin: 0 22px 12px 0;
  1606. line-height: 1.6;
  1607. }
  1608. .help-tab-content.active {
  1609. display: block;
  1610. }
  1611. .help-tab-content ul li {
  1612. list-style-type: disc;
  1613. margin-left: 18px;
  1614. }
  1615. .contextual-help-sidebar {
  1616. width: 150px;
  1617. float: right;
  1618. padding: 0 8px 0 12px;
  1619. overflow: auto;
  1620. }
  1621. /*------------------------------------------------------------------------------
  1622. 8.0 - Layout Blocks
  1623. ------------------------------------------------------------------------------*/
  1624. html.wp-toolbar {
  1625. padding-top: 32px;
  1626. box-sizing: border-box;
  1627. }
  1628. .widefat th,
  1629. .widefat td {
  1630. color: #555;
  1631. }
  1632. .widefat th,
  1633. .widefat thead td,
  1634. .widefat tfoot td {
  1635. font-weight: 400;
  1636. }
  1637. .widefat thead tr th,
  1638. .widefat thead tr td,
  1639. .widefat tfoot tr th,
  1640. .widefat tfoot tr td {
  1641. color: #32373c;
  1642. }
  1643. .widefat td p {
  1644. margin: 2px 0 0.8em;
  1645. }
  1646. .widefat p,
  1647. .widefat ol,
  1648. .widefat ul {
  1649. color: #32373c;
  1650. }
  1651. .widefat .column-comment p {
  1652. margin: 0.6em 0;
  1653. }
  1654. .widefat .column-comment ul {
  1655. list-style: initial;
  1656. margin-left: 2em;
  1657. }
  1658. /* Screens with postboxes */
  1659. .postbox-container {
  1660. float: left;
  1661. }
  1662. .postbox-container .meta-box-sortables {
  1663. box-sizing: border-box;
  1664. }
  1665. #wpbody-content .metabox-holder {
  1666. padding-top: 10px;
  1667. }
  1668. .metabox-holder .postbox-container .empty-container {
  1669. border: 3px dashed #b4b9be;
  1670. height: 250px;
  1671. position: relative;
  1672. }
  1673. .metabox-holder .postbox-container .empty-container:after {
  1674. content: attr(data-emptystring);
  1675. margin: auto;
  1676. position: absolute;
  1677. top: 0;
  1678. left: 0;
  1679. bottom: 0;
  1680. right: 0;
  1681. height: 1em;
  1682. width: 200px;
  1683. text-align: center;
  1684. color: #ccc;
  1685. font-size: 18px;
  1686. display: none;
  1687. }
  1688. .metabox-holder.columns-1 .postbox-container .empty-container,
  1689. .columns-2 #postbox-container-3 .empty-container,
  1690. .columns-2 #postbox-container-4 .empty-container,
  1691. .columns-3 #postbox-container-4 .empty-container {
  1692. border: 0 none;
  1693. height: 0;
  1694. min-height: 0;
  1695. }
  1696. #post-body-content {
  1697. width: 100%;
  1698. min-width: 463px;
  1699. float: left;
  1700. }
  1701. #post-body.columns-2 #postbox-container-1 {
  1702. float: right;
  1703. margin-right: -300px;
  1704. width: 280px;
  1705. }
  1706. #post-body.columns-2 #side-sortables {
  1707. min-height: 250px;
  1708. }
  1709. /* one column on the dash */
  1710. @media only screen and (max-width: 799px) {
  1711. #wpbody-content .metabox-holder .postbox-container .empty-container {
  1712. border: 0 none;
  1713. height: 0;
  1714. min-height: 0;
  1715. }
  1716. }
  1717. .js .widget .widget-top,
  1718. .js .postbox .hndle {
  1719. cursor: move;
  1720. }
  1721. .js .widget .widget-top.is-non-sortable,
  1722. .js .postbox .hndle.is-non-sortable {
  1723. cursor: auto;
  1724. }
  1725. .hndle a {
  1726. font-size: 11px;
  1727. font-weight: 400;
  1728. }
  1729. .postbox .handlediv {
  1730. display: none;
  1731. float: right;
  1732. width: 36px;
  1733. height: 36px;
  1734. margin: 0;
  1735. padding: 0;
  1736. border: 0;
  1737. background: none;
  1738. cursor: pointer;
  1739. }
  1740. .js .postbox .handlediv {
  1741. display: block;
  1742. }
  1743. .sortable-placeholder {
  1744. border: 1px dashed #b4b9be;
  1745. margin-bottom: 20px;
  1746. }
  1747. .postbox,
  1748. .stuffbox {
  1749. margin-bottom: 20px;
  1750. padding: 0;
  1751. line-height: 1;
  1752. }
  1753. /* user-select is not a part of the CSS standard - may change behavior in the future */
  1754. .postbox .hndle,
  1755. .stuffbox .hndle {
  1756. -webkit-user-select: none;
  1757. -moz-user-select: none;
  1758. -ms-user-select: none;
  1759. user-select: none;
  1760. }
  1761. .postbox .inside {
  1762. padding: 0 12px 12px;
  1763. line-height: 1.4;
  1764. font-size: 13px;
  1765. }
  1766. .stuffbox .inside {
  1767. padding: 0;
  1768. line-height: 1.4;
  1769. font-size: 13px;
  1770. margin-top: 0;
  1771. }
  1772. .postbox .inside {
  1773. margin: 11px 0;
  1774. position: relative;
  1775. }
  1776. .postbox .inside > p:last-child,
  1777. .rss-widget ul li:last-child {
  1778. margin-bottom: 1px !important;
  1779. }
  1780. .postbox.closed h3 {
  1781. border: none;
  1782. box-shadow: none;
  1783. }
  1784. .postbox table.form-table {
  1785. margin-bottom: 0;
  1786. }
  1787. .postbox table.widefat {
  1788. box-shadow: none;
  1789. }
  1790. .temp-border {
  1791. border: 1px dotted #ccc;
  1792. }
  1793. .columns-prefs label {
  1794. padding: 0 10px 0 0;
  1795. }
  1796. /* @todo: what is this doing here */
  1797. #dashboard_right_now .versions .b,
  1798. #post-status-display,
  1799. #post-visibility-display,
  1800. #adminmenu .wp-submenu li.current,
  1801. #adminmenu .wp-submenu li.current a,
  1802. #adminmenu .wp-submenu li.current a:hover,
  1803. .media-item .percent,
  1804. .plugins .name,
  1805. #pass-strength-result.strong,
  1806. #pass-strength-result.short,
  1807. #ed_reply_toolbar #ed_reply_strong,
  1808. .item-controls .item-order a,
  1809. .feature-filter .feature-name {
  1810. font-weight: 600;
  1811. }
  1812. /*------------------------------------------------------------------------------
  1813. 21.0 - Admin Footer
  1814. ------------------------------------------------------------------------------*/
  1815. #wpfooter {
  1816. position: absolute;
  1817. bottom: 0;
  1818. left: 0;
  1819. right: 0;
  1820. padding: 10px 20px;
  1821. color: #555d66;
  1822. }
  1823. #wpfooter p {
  1824. font-size: 13px;
  1825. margin: 0;
  1826. line-height: 1.55;
  1827. }
  1828. #footer-thankyou {
  1829. font-style: italic;
  1830. }
  1831. /*------------------------------------------------------------------------------
  1832. 25.0 - Tabbed Admin Screen Interface (Experimental)
  1833. ------------------------------------------------------------------------------*/
  1834. .nav-tab {
  1835. float: left;
  1836. border: 1px solid #ccc;
  1837. border-bottom: none;
  1838. margin-left: 0.5em; /* half the font size so set the font size properly */
  1839. padding: 5px 10px;
  1840. font-size: 14px;
  1841. line-height: 1.71428571;
  1842. font-weight: 600;
  1843. background: #e5e5e5;
  1844. color: #555;
  1845. text-decoration: none;
  1846. white-space: nowrap;
  1847. }
  1848. h3 .nav-tab, /* Back-compat for pre-4.4 */
  1849. .nav-tab-small .nav-tab {
  1850. padding: 5px 14px;
  1851. font-size: 12px;
  1852. line-height: 1.33;
  1853. }
  1854. .nav-tab:hover,
  1855. .nav-tab:focus {
  1856. background-color: #fff;
  1857. color: #444;
  1858. }
  1859. .nav-tab-active,
  1860. .nav-tab:focus:active {
  1861. box-shadow: none;
  1862. }
  1863. .nav-tab-active {
  1864. margin-bottom: -1px;
  1865. color: #444;
  1866. }
  1867. .nav-tab-active,
  1868. .nav-tab-active:hover,
  1869. .nav-tab-active:focus,
  1870. .nav-tab-active:focus:active {
  1871. border-bottom: 1px solid #f1f1f1;
  1872. background: #f1f1f1;
  1873. color: #000;
  1874. }
  1875. h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
  1876. .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */
  1877. .nav-tab-wrapper {
  1878. border-bottom: 1px solid #ccc;
  1879. margin: 0;
  1880. padding-top: 9px;
  1881. padding-bottom: 0;
  1882. line-height: inherit;
  1883. }
  1884. /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */
  1885. .nav-tab-wrapper:not(.wp-clearfix):after {
  1886. content: "";
  1887. display: table;
  1888. clear: both;
  1889. }
  1890. .ie8 .nav-tab-wrapper {
  1891. /* contain floats establishing a new block formatting context */
  1892. display: inline-block;
  1893. width: 100%;
  1894. vertical-align: top;
  1895. }
  1896. /*------------------------------------------------------------------------------
  1897. 26.0 - Misc
  1898. ------------------------------------------------------------------------------*/
  1899. .spinner {
  1900. background: url(../images/spinner.gif) no-repeat;
  1901. background-size: 20px 20px;
  1902. display: inline-block;
  1903. visibility: hidden;
  1904. float: right;
  1905. vertical-align: middle;
  1906. opacity: 0.7;
  1907. filter: alpha(opacity=70);
  1908. width: 20px;
  1909. height: 20px;
  1910. margin: 4px 10px 0;
  1911. }
  1912. .spinner.is-active,
  1913. .loading-content .spinner {
  1914. visibility: visible;
  1915. }
  1916. #template > div {
  1917. margin-right: 16em;
  1918. }
  1919. #template .notice {
  1920. margin-top: 1em;
  1921. margin-right: 3%;
  1922. }
  1923. #template .notice p {
  1924. width: auto;
  1925. }
  1926. #template .submit .spinner {
  1927. float: none;
  1928. }
  1929. .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
  1930. .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */
  1931. .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
  1932. .metabox-holder h2.hndle {
  1933. font-size: 14px;
  1934. padding: 8px 12px;
  1935. margin: 0;
  1936. line-height: 1.4;
  1937. }
  1938. /* Back-compat for nav-menus screen */
  1939. .nav-menus-php .metabox-holder h3 {
  1940. padding: 10px 10px 11px 14px;
  1941. line-height: 1.5;
  1942. }
  1943. #templateside ul li a {
  1944. text-decoration: none;
  1945. }
  1946. .plugin-install #description,
  1947. .plugin-install-network #description {
  1948. width: 60%;
  1949. }
  1950. table .vers,
  1951. table .column-visible,
  1952. table .column-rating {
  1953. text-align: left;
  1954. }
  1955. .attention,
  1956. .error-message {
  1957. color: #dc3232;
  1958. font-weight: 600;
  1959. }
  1960. /* Scrollbar fix for bulk upgrade iframe */
  1961. body.iframe {
  1962. height: 98%;
  1963. }
  1964. /* Upgrader styles, Specific to Language Packs */
  1965. .lp-show-latest p {
  1966. display: none;
  1967. }
  1968. .lp-show-latest p:last-child,
  1969. .lp-show-latest .lp-error p {
  1970. display: block;
  1971. }
  1972. /* - Only used once or twice in all of WP - deprecate for global style
  1973. ------------------------------------------------------------------------------*/
  1974. .media-icon {
  1975. width: 62px; /* icon + border */
  1976. text-align: center;
  1977. }
  1978. .media-icon img {
  1979. border: 1px solid #e5e5e5;
  1980. border: 1px solid rgba(0, 0, 0, 0.07);
  1981. }
  1982. #howto {
  1983. font-size: 11px;
  1984. margin: 0 5px;
  1985. display: block;
  1986. }
  1987. .importers {
  1988. font-size: 16px;
  1989. width: auto;
  1990. }
  1991. .importers td {
  1992. padding-right: 14px;
  1993. line-height: 1.4;
  1994. }
  1995. .importers .import-system {
  1996. max-width: 250px;
  1997. }
  1998. .importers td.desc {
  1999. max-width: 500px;
  2000. }
  2001. .importer-title,
  2002. .importer-desc,
  2003. .importer-action {
  2004. display: block;
  2005. }
  2006. .importer-title {
  2007. color: #000;
  2008. font-size: 14px;
  2009. font-weight: 400;
  2010. margin-bottom: .2em;
  2011. }
  2012. .importer-action {
  2013. line-height: 1.55; /* Same as with .updating-message */
  2014. color: #555;
  2015. margin-bottom: 1em;
  2016. }
  2017. #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */
  2018. #post-body #post-body-content #namediv h2 {
  2019. margin-top: 0;
  2020. }
  2021. .edit-comment-author {
  2022. color: #222;
  2023. border-bottom: 1px solid #eee;
  2024. }
  2025. #namediv h3 label, /* Back-compat for pre-4.4 */
  2026. #namediv h2 label {
  2027. vertical-align: baseline;
  2028. }
  2029. #namediv table {
  2030. width: 100%;
  2031. }
  2032. #namediv td.first {
  2033. width: 10px;
  2034. white-space: nowrap;
  2035. }
  2036. #namediv input {
  2037. width: 98%;
  2038. }
  2039. #namediv p {
  2040. margin: 10px 0;
  2041. }
  2042. #submitdiv h3 {
  2043. margin-bottom: 0 !important;
  2044. }
  2045. /* - Used - but could/should be deprecated with a CSS reset
  2046. ------------------------------------------------------------------------------*/
  2047. .zerosize {
  2048. height: 0;
  2049. width: 0;
  2050. margin: 0;
  2051. border: 0;
  2052. padding: 0;
  2053. overflow: hidden;
  2054. position: absolute;
  2055. }
  2056. br.clear {
  2057. height: 2px;
  2058. line-height: 0.15;
  2059. }
  2060. .checkbox {
  2061. border: none;
  2062. margin: 0;
  2063. padding: 0;
  2064. }
  2065. fieldset {
  2066. border: 0;
  2067. padding: 0;
  2068. margin: 0;
  2069. }
  2070. .post-categories {
  2071. display: inline;
  2072. margin: 0;
  2073. padding: 0;
  2074. }
  2075. .post-categories li {
  2076. display: inline;
  2077. }
  2078. /* Star Ratings - Back-compat for pre-3.8 */
  2079. div.star-holder {
  2080. position: relative;
  2081. height: 17px;
  2082. width: 100px;
  2083. background: url(../images/stars.png?ver=20121108) repeat-x bottom left;
  2084. }
  2085. div.star-holder .star-rating {
  2086. background: url(../images/stars.png?ver=20121108) repeat-x top left;
  2087. height: 17px;
  2088. float: left;
  2089. }
  2090. /* Star Ratings */
  2091. .star-rating {
  2092. white-space: nowrap;
  2093. }
  2094. .star-rating .star {
  2095. display: inline-block;
  2096. width: 20px;
  2097. height: 20px;
  2098. -webkit-font-smoothing: antialiased;
  2099. font-size: 20px;
  2100. line-height: 1;
  2101. font-family: dashicons;
  2102. text-decoration: inherit;
  2103. font-weight: 400;
  2104. font-style: normal;
  2105. vertical-align: top;
  2106. transition: color .1s ease-in;
  2107. text-align: center;
  2108. color: #ffb900;
  2109. }
  2110. .star-rating .star-full:before {
  2111. content: "\f155";
  2112. }
  2113. .star-rating .star-half:before {
  2114. content: "\f459";
  2115. }
  2116. .rtl .star-rating .star-half {
  2117. transform: rotateY(180deg);
  2118. }
  2119. .star-rating .star-empty:before {
  2120. content: "\f154";
  2121. }
  2122. div.action-links {
  2123. font-weight: 400;
  2124. margin: 6px 0 0;
  2125. }
  2126. /* Plugin install thickbox */
  2127. #plugin-information {
  2128. background: #fff;
  2129. position: fixed;
  2130. top: 0;
  2131. right: 0;
  2132. bottom: 0;
  2133. left: 0;
  2134. height: 100%;
  2135. padding: 0;
  2136. }
  2137. #plugin-information-scrollable {
  2138. overflow: auto;
  2139. -webkit-overflow-scrolling: touch;
  2140. height: 100%;
  2141. }
  2142. #plugin-information-title {
  2143. padding: 0 26px;
  2144. background: #f5f5f5;
  2145. font-size: 22px;
  2146. font-weight: 600;
  2147. line-height: 2.4;
  2148. position: relative;
  2149. height: 56px;
  2150. }
  2151. #plugin-information-title.with-banner {
  2152. margin-right: 0;
  2153. height: 250px;
  2154. background-size: cover;
  2155. }
  2156. #plugin-information-title h2 {
  2157. font-size: 1em;
  2158. font-weight: 600;
  2159. padding: 0;
  2160. margin: 0;
  2161. overflow: hidden;
  2162. text-overflow: ellipsis;
  2163. white-space: nowrap;
  2164. }
  2165. #plugin-information-title.with-banner h2 {
  2166. position: relative;
  2167. font-family: "Helvetica Neue", sans-serif;
  2168. display: inline-block;
  2169. font-size: 30px;
  2170. line-height: 1.68;
  2171. box-sizing: border-box;
  2172. max-width: 100%;
  2173. padding: 0 15px;
  2174. margin-top: 174px;
  2175. color: #fff;
  2176. background: rgba(30, 30, 30, 0.9);
  2177. text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  2178. box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
  2179. border-radius: 8px;
  2180. }
  2181. #plugin-information-title div.vignette {
  2182. display: none;
  2183. }
  2184. #plugin-information-title.with-banner div.vignette {
  2185. position: absolute;
  2186. display: block;
  2187. top: 0;
  2188. left: 0;
  2189. height: 250px;
  2190. width: 100%;
  2191. background: transparent;
  2192. box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  2193. }
  2194. #plugin-information-tabs {
  2195. padding: 0 16px;
  2196. position: relative;
  2197. right: 0;
  2198. left: 0;
  2199. min-height: 36px;
  2200. font-size: 0;
  2201. z-index: 1;
  2202. border-bottom: 1px solid #ddd;
  2203. background: #f3f3f3;
  2204. }
  2205. #plugin-information-tabs a {
  2206. position: relative;
  2207. display: inline-block;
  2208. padding: 9px 10px;
  2209. margin: 0;
  2210. height: 18px;
  2211. line-height: 1.3;
  2212. font-size: 14px;
  2213. text-decoration: none;
  2214. transition: none;
  2215. }
  2216. #plugin-information-tabs a.current {
  2217. margin: 0 -1px -1px;
  2218. background: #fff;
  2219. border: 1px solid #ddd;
  2220. border-bottom-color: #fff;
  2221. padding-top: 8px;
  2222. color: #32373c;
  2223. }
  2224. #plugin-information-tabs.with-banner a.current {
  2225. border-top: none;
  2226. padding-top: 9px;
  2227. }
  2228. #plugin-information-tabs a:active,
  2229. #plugin-information-tabs a:focus {
  2230. outline: none;
  2231. }
  2232. #plugin-information-content {
  2233. overflow: hidden; /* equal height column trick */
  2234. background: #fff;
  2235. position: relative;
  2236. top: 0;
  2237. right: 0;
  2238. left: 0;
  2239. min-height: 100%;
  2240. /* Height of title + tabs + install now */
  2241. min-height: calc( 100% - 152px );
  2242. }
  2243. #plugin-information-content.with-banner {
  2244. /* Height of banner + tabs + install now */
  2245. min-height: calc( 100% - 346px );
  2246. }
  2247. #section-holder {
  2248. position: relative;
  2249. top: 0;
  2250. right: 250px;
  2251. bottom: 0;
  2252. left: 0;
  2253. margin-top: 10px;
  2254. margin-right: 250px; /* FYI box */
  2255. padding: 10px 26px;
  2256. margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
  2257. padding-bottom: 99999px; /* equal height column trick */
  2258. }
  2259. #section-holder .notice {
  2260. margin: 5px 0 15px;
  2261. }
  2262. #section-holder .updated {
  2263. margin: 16px 0;
  2264. }
  2265. #plugin-information .fyi {
  2266. float: right;
  2267. position: relative;
  2268. top: 0;
  2269. right: 0;
  2270. padding: 16px;
  2271. margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
  2272. padding-bottom: 99999px; /* equal height column trick */
  2273. width: 217px;
  2274. border-left: 1px solid #ddd;
  2275. background: #f3f3f3;
  2276. color: #666;
  2277. }
  2278. #plugin-information .fyi strong {
  2279. color: #444;
  2280. }
  2281. #plugin-information .fyi h3 {
  2282. font-weight: 600;
  2283. text-transform: uppercase;
  2284. font-size: 12px;
  2285. color: #666;
  2286. margin: 24px 0 8px;
  2287. }
  2288. #plugin-information .fyi h2 {
  2289. font-size: 0.9em;
  2290. margin-bottom: 0;
  2291. margin-right: 0;
  2292. }
  2293. #plugin-information .fyi ul {
  2294. padding: 0;
  2295. margin: 0;
  2296. list-style: none;
  2297. }
  2298. #plugin-information .fyi li {
  2299. margin: 0 0 10px;
  2300. }
  2301. #plugin-information .fyi-description {
  2302. margin-top: 0;
  2303. }
  2304. #plugin-information .counter-container {
  2305. margin: 3px 0;
  2306. }
  2307. #plugin-information .counter-label {
  2308. float: left;
  2309. margin-right: 5px;
  2310. min-width: 55px;
  2311. }
  2312. #plugin-information .counter-back {
  2313. height: 17px;
  2314. width: 92px;
  2315. background-color: #e5e5e5;
  2316. float: left;
  2317. }
  2318. #plugin-information .counter-bar {
  2319. height: 17px;
  2320. background-color: #ffc733; /* slightly lighter than stars due to larger expanse */
  2321. float: left;
  2322. }
  2323. #plugin-information .counter-count {
  2324. margin-left: 5px;
  2325. }
  2326. #plugin-information .fyi ul.contributors {
  2327. margin-top: 10px;
  2328. }
  2329. #plugin-information .fyi ul.contributors li {
  2330. display: inline-block;
  2331. margin-right: 8px;
  2332. vertical-align: middle;
  2333. }
  2334. #plugin-information .fyi ul.contributors li {
  2335. display: inline-block;
  2336. margin-right: 8px;
  2337. vertical-align: middle;
  2338. }
  2339. #plugin-information .fyi ul.contributors li img {
  2340. vertical-align: middle;
  2341. margin-right: 4px;
  2342. }
  2343. #plugin-information-footer {
  2344. padding: 13px 16px;
  2345. position: absolute;
  2346. right: 0;
  2347. bottom: 0;
  2348. left: 0;
  2349. height: 33px; /* 33+13+13+1=60 */
  2350. border-top: 1px solid #ddd;
  2351. background: #f3f3f3;
  2352. }
  2353. /* rtl:ignore */
  2354. #plugin-information .section {
  2355. direction: ltr;
  2356. }
  2357. /* rtl:ignore */
  2358. #plugin-information .section ul,
  2359. #plugin-information .section ol {
  2360. list-style-type: disc;
  2361. margin-left: 24px;
  2362. }
  2363. #plugin-information .section,
  2364. #plugin-information .section p {
  2365. font-size: 14px;
  2366. line-height: 1.7;
  2367. }
  2368. #plugin-information #section-screenshots ol {
  2369. list-style: none;
  2370. margin: 0;
  2371. }
  2372. #plugin-information #section-screenshots li img {
  2373. vertical-align: text-top;
  2374. margin-top: 16px;
  2375. max-width: 100%;
  2376. width: auto;
  2377. height: auto;
  2378. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  2379. }
  2380. /* rtl:ignore */
  2381. #plugin-information #section-screenshots li p {
  2382. font-style: italic;
  2383. padding-left: 20px;
  2384. }
  2385. #plugin-information pre {
  2386. padding: 7px;
  2387. overflow: auto;
  2388. border: 1px solid #ccc;
  2389. }
  2390. #plugin-information blockquote {
  2391. border-left: 2px solid #ddd;
  2392. color: #666;
  2393. font-style: italic;
  2394. margin: 1em 0;
  2395. padding: 0 0 0 1em;
  2396. }
  2397. /* rtl:ignore */
  2398. #plugin-information .review {
  2399. overflow: hidden; /* clearfix */
  2400. width: 100%;
  2401. margin-bottom: 20px;
  2402. border-bottom: 1px solid #e5e5e5;
  2403. }
  2404. #plugin-information .review-title-section {
  2405. overflow: hidden; /* clearfix */
  2406. }
  2407. /* rtl:ignore */
  2408. #plugin-information .review-title-section h4 {
  2409. display: inline-block;
  2410. float: left;
  2411. margin: 0 6px 0 0;
  2412. }
  2413. #plugin-information .reviewer-info p {
  2414. clear: both;
  2415. margin: 0;
  2416. padding-top: 2px;
  2417. }
  2418. /* rtl:ignore */
  2419. #plugin-information .reviewer-info .avatar {
  2420. float: left;
  2421. margin: 4px 6px 0 0;
  2422. }
  2423. /* rtl:ignore */
  2424. #plugin-information .reviewer-info .star-rating {
  2425. float: left;
  2426. }
  2427. /* rtl:ignore */
  2428. #plugin-information .review-meta {
  2429. float: left;
  2430. margin-left: 0.75em;
  2431. }
  2432. /* rtl:ignore */
  2433. #plugin-information .review-body {
  2434. float: left;
  2435. width: 100%;
  2436. }
  2437. .plugin-version-author-uri {
  2438. font-size: 13px;
  2439. }
  2440. /* For non-js plugin installation screen ticket #36430. */
  2441. .update-php .button.button-primary {
  2442. margin-right: 1em;
  2443. }
  2444. @media screen and (max-width: 771px) {
  2445. #plugin-information-title.with-banner {
  2446. height: 100px;
  2447. }
  2448. #plugin-information-title.with-banner h2 {
  2449. margin-top: 30px;
  2450. font-size: 20px;
  2451. line-height: 2;
  2452. max-width: 85%;
  2453. }
  2454. #plugin-information-title.with-banner div.vignette {
  2455. height: 100px;
  2456. }
  2457. #plugin-information-tabs {
  2458. overflow: hidden; /* clearfix */
  2459. padding: 0;
  2460. height: auto; /* let tabs wrap */
  2461. }
  2462. #plugin-information-tabs a.current {
  2463. margin-bottom: 0;
  2464. border-bottom: none;
  2465. }
  2466. #plugin-information .fyi {
  2467. float: none;
  2468. border: 1px solid #ddd;
  2469. position: static;
  2470. width: auto;
  2471. margin: 26px 26px 0;
  2472. padding-bottom: 0; /* reset from the two column height fix */
  2473. }
  2474. #section-holder {
  2475. position: static;
  2476. margin: 0;
  2477. padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */
  2478. }
  2479. #plugin-information .fyi h3,
  2480. #plugin-information .fyi small {
  2481. display: none;
  2482. }
  2483. #plugin-information-footer {
  2484. padding: 12px 16px 0;
  2485. height: 46px;
  2486. }
  2487. }
  2488. /* Thickbox for the Plugin details modal. */
  2489. #TB_window.plugin-details-modal {
  2490. background: #fcfcfc;
  2491. }
  2492. #TB_window.plugin-details-modal.thickbox-loading:before {
  2493. content: "";
  2494. display: block;
  2495. width: 20px;
  2496. height: 20px;
  2497. position: absolute;
  2498. left: 50%;
  2499. top: 50%;
  2500. z-index: -1;
  2501. margin: -10px 0 0 -10px;
  2502. background: #fcfcfc url(../images/spinner.gif) no-repeat center;
  2503. background-size: 20px 20px;
  2504. transform: translateZ(0);
  2505. }
  2506. @media print,
  2507. (-webkit-min-device-pixel-ratio: 1.25),
  2508. (min-resolution: 120dpi) {
  2509. #TB_window.plugin-details-modal.thickbox-loading:before {
  2510. background-image: url(../images/spinner-2x.gif);
  2511. }
  2512. }
  2513. .plugin-details-modal #TB_title {
  2514. float: left;
  2515. height: 1px;
  2516. }
  2517. .plugin-details-modal #TB_ajaxWindowTitle {
  2518. display: none;
  2519. }
  2520. .plugin-details-modal #TB_closeWindowButton {
  2521. left: auto;
  2522. right: -30px;
  2523. color: #eee;
  2524. }
  2525. .plugin-details-modal #TB_closeWindowButton:hover,
  2526. .plugin-details-modal #TB_closeWindowButton:focus {
  2527. color: #00a0d2;
  2528. outline: none;
  2529. box-shadow: none;
  2530. }
  2531. .plugin-details-modal .tb-close-icon {
  2532. display: none;
  2533. }
  2534. .plugin-details-modal #TB_closeWindowButton:after {
  2535. content: "\f335";
  2536. font: normal 32px/29px 'dashicons';
  2537. speak: none;
  2538. -webkit-font-smoothing: antialiased;
  2539. -moz-osx-font-smoothing: grayscale;
  2540. }
  2541. /* move plugin install close icon to top on narrow screens */
  2542. @media screen and (max-width: 830px) {
  2543. .plugin-details-modal #TB_closeWindowButton {
  2544. right: 0;
  2545. top: -30px;
  2546. }
  2547. }
  2548. /* @todo: move this. */
  2549. img {
  2550. border: none;
  2551. }
  2552. /* Metabox collapse arrow indicators */
  2553. .sidebar-name .toggle-indicator:before,
  2554. .js .meta-box-sortables .postbox .toggle-indicator:before,
  2555. .bulk-action-notice .toggle-indicator:before,
  2556. .privacy-text-box .toggle-indicator:before {
  2557. content: "\f142";
  2558. display: inline-block;
  2559. font: normal 20px/1 dashicons;
  2560. speak: none;
  2561. -webkit-font-smoothing: antialiased;
  2562. -moz-osx-font-smoothing: grayscale;
  2563. text-decoration: none !important;
  2564. }
  2565. .js .widgets-holder-wrap.closed .toggle-indicator:before,
  2566. .js .meta-box-sortables .postbox.closed .handlediv .toggle-indicator:before,
  2567. .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator:before,
  2568. .privacy-text-box.closed .toggle-indicator:before {
  2569. content: "\f140";
  2570. }
  2571. .js .postbox .handlediv .toggle-indicator:before {
  2572. margin-top: 4px;
  2573. width: 20px;
  2574. border-radius: 50%;
  2575. text-indent: -1px; /* account for the dashicon alignment */
  2576. }
  2577. .rtl.js .postbox .handlediv .toggle-indicator:before {
  2578. text-indent: 1px; /* account for the dashicon alignment */
  2579. }
  2580. .bulk-action-notice .toggle-indicator:before {
  2581. line-height: 16px;
  2582. vertical-align: top;
  2583. color: #72777c;
  2584. }
  2585. .js .postbox .handlediv:focus {
  2586. box-shadow: none;
  2587. outline: none;
  2588. }
  2589. .js .postbox .handlediv:focus .toggle-indicator:before {
  2590. box-shadow:
  2591. 0 0 0 1px #5b9dd9,
  2592. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  2593. }
  2594. /* @todo: appears to be Press This only and overridden */
  2595. #photo-add-url-div input[type="text"] {
  2596. width: 300px;
  2597. }
  2598. /* Theme/Plugin Editor */
  2599. .alignleft h2 {
  2600. margin: 0;
  2601. }
  2602. #template textarea {
  2603. font-family: Consolas, Monaco, monospace;
  2604. font-size: 13px;
  2605. background: #f9f9f9;
  2606. -moz-tab-size: 4;
  2607. -o-tab-size: 4;
  2608. tab-size: 4;
  2609. }
  2610. #template textarea,
  2611. #template .CodeMirror {
  2612. width: 100%;
  2613. min-height: 60vh;
  2614. height: calc( 100vh - 295px );
  2615. border: 1px solid #ddd;
  2616. box-sizing: border-box;
  2617. }
  2618. #templateside > h2 {
  2619. padding-top: 6px;
  2620. padding-bottom: 7px;
  2621. margin: 0;
  2622. }
  2623. #templateside ol,
  2624. #templateside ul {
  2625. margin: 0;
  2626. padding: 0;
  2627. }
  2628. #templateside > ul {
  2629. box-sizing: border-box;
  2630. margin-top: 0;
  2631. overflow: auto;
  2632. padding: 0;
  2633. min-height: 60vh;
  2634. height: calc(100vh - 295px);
  2635. background-color: #f7f7f7;
  2636. border: 1px solid #ddd;
  2637. border-left: none;
  2638. }
  2639. #templateside ul ul {
  2640. padding-left: 12px;
  2641. }
  2642. #templateside > ul > li > ul[role=group] {
  2643. padding-left: 0;
  2644. }
  2645. /*
  2646. * Styles for Theme and Plugin editors.
  2647. */
  2648. /* Hide collapsed items. */
  2649. [role="treeitem"][aria-expanded="false"] > ul {
  2650. display: none;
  2651. }
  2652. /* Use arrow dashicons for folder states, but hide from screen readers. */
  2653. [role="treeitem"] span[aria-hidden] {
  2654. display: inline;
  2655. font-family: dashicons;
  2656. font-size: 20px;
  2657. position: absolute;
  2658. pointer-events: none;
  2659. }
  2660. [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after {
  2661. content: "\f139";
  2662. }
  2663. [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after {
  2664. content: "\f140";
  2665. }
  2666. [role="treeitem"] .folder-label {
  2667. display: block;
  2668. padding: 3px 3px 3px 12px;
  2669. cursor: pointer;
  2670. }
  2671. /* Remove outline, and create our own focus and hover styles */
  2672. [role="treeitem"] {
  2673. outline: 0;
  2674. }
  2675. [role="treeitem"] .folder-label.focus {
  2676. color: #124964;
  2677. box-shadow:
  2678. 0 0 0 1px #5b9dd9,
  2679. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  2680. }
  2681. [role="treeitem"].hover,
  2682. [role="treeitem"] .folder-label.hover {
  2683. background-color: #eaeaea;
  2684. }
  2685. .tree-folder {
  2686. margin: 0;
  2687. position: relative;
  2688. }
  2689. [role="treeitem"] li {
  2690. position: relative;
  2691. }
  2692. /* Styles for folder indicators/depth */
  2693. .tree-folder .tree-folder::after {
  2694. content: "";
  2695. display: block;
  2696. position: absolute;
  2697. left: 2px;
  2698. border-left: 1px solid #ccc;
  2699. top: -13px;
  2700. bottom: 10px;
  2701. }
  2702. .tree-folder > li::before {
  2703. content: "";
  2704. position: absolute;
  2705. display: block;
  2706. border-left: 1px solid #ccc;
  2707. left: 2px;
  2708. top: -5px;
  2709. height: 18px;
  2710. width: 7px;
  2711. border-bottom: 1px solid #ccc;
  2712. }
  2713. .tree-folder > li::after {
  2714. content: "";
  2715. position: absolute;
  2716. display: block;
  2717. border-left: 1px solid #ccc;
  2718. left: 2px;
  2719. bottom: -7px;
  2720. top: 0;
  2721. }
  2722. /* current-file needs to adjustment for .notice styles */
  2723. #templateside .current-file {
  2724. margin: -4px 0 -2px;
  2725. }
  2726. .tree-folder > .current-file::before {
  2727. left: 4px;
  2728. height: 15px;
  2729. width: 0px;
  2730. border-left: none;
  2731. top: 3px;
  2732. }
  2733. .tree-folder > .current-file::after {
  2734. bottom: -4px;
  2735. height: 7px;
  2736. left: 2px;
  2737. top: auto;
  2738. }
  2739. /* Lines shouldn't continue on last item */
  2740. .tree-folder > li:last-child::after,
  2741. .tree-folder li:last-child > .tree-folder::after {
  2742. display: none;
  2743. }
  2744. #theme-plugin-editor-label {
  2745. display: inline-block;
  2746. margin-bottom: 1em;
  2747. font-weight: 600;
  2748. }
  2749. /* rtl:ignore */
  2750. #template textarea,
  2751. #docs-list {
  2752. direction: ltr;
  2753. }
  2754. .fileedit-sub #theme,
  2755. .fileedit-sub #plugin {
  2756. max-width: 40%;
  2757. }
  2758. .fileedit-sub .alignright {
  2759. text-align: right;
  2760. }
  2761. #template p {
  2762. width: 97%;
  2763. }
  2764. #file-editor-linting-error {
  2765. margin-top: 1em;
  2766. margin-bottom: 1em;
  2767. }
  2768. #file-editor-linting-error > .notice {
  2769. margin: 0;
  2770. display: inline-block;
  2771. }
  2772. #file-editor-linting-error > .notice > p {
  2773. width: auto;
  2774. }
  2775. #template .submit {
  2776. margin-top: 1em;
  2777. padding: 0;
  2778. }
  2779. #template .submit input[type=submit][disabled] {
  2780. cursor: not-allowed;
  2781. }
  2782. #templateside {
  2783. float: right;
  2784. width: 16em;
  2785. word-wrap: break-word;
  2786. }
  2787. #postcustomstuff p.submit {
  2788. margin: 0;
  2789. }
  2790. #templateside h4 {
  2791. margin: 1em 0 0;
  2792. }
  2793. #templateside li {
  2794. margin: 4px 0;
  2795. }
  2796. #templateside li:not(.howto) a,
  2797. .theme-editor-php .highlight {
  2798. display: block;
  2799. padding: 3px 0 3px 12px;
  2800. text-decoration: none;
  2801. }
  2802. #templateside li:not(.howto) > a:first-of-type {
  2803. padding-top: 0;
  2804. }
  2805. #templateside li.howto {
  2806. padding: 6px 12px 12px 12px;
  2807. }
  2808. .theme-editor-php .highlight {
  2809. margin: -3px 3px -3px -12px;
  2810. }
  2811. #templateside .highlight {
  2812. border: none;
  2813. font-weight: 600;
  2814. }
  2815. .nonessential {
  2816. color: #666;
  2817. font-size: 11px;
  2818. font-style: italic;
  2819. padding-left: 12px;
  2820. }
  2821. #documentation {
  2822. margin-top: 10px;
  2823. }
  2824. #documentation label {
  2825. line-height: 1.8;
  2826. vertical-align: baseline;
  2827. font-weight: 600;
  2828. }
  2829. .fileedit-sub {
  2830. padding: 10px 0 8px;
  2831. line-height: 180%;
  2832. }
  2833. #file-editor-warning .file-editor-warning-content {
  2834. margin: 25px;
  2835. }
  2836. /* @todo: can we use a common class for these? */
  2837. .nav-menus-php .item-edit:before,
  2838. .widget-top .widget-action .toggle-indicator:before,
  2839. .control-section .accordion-section-title:after,
  2840. .accordion-section-title:after {
  2841. content: "\f140";
  2842. font: normal 20px/1 dashicons;
  2843. speak: none;
  2844. display: block;
  2845. -webkit-font-smoothing: antialiased;
  2846. -moz-osx-font-smoothing: grayscale;
  2847. text-decoration: none !important;
  2848. }
  2849. .widget-top .widget-action .toggle-indicator:before {
  2850. padding: 1px 2px 1px 0px;
  2851. border-radius: 50%;
  2852. }
  2853. .handlediv,
  2854. .postbox .handlediv.button-link,
  2855. .item-edit,
  2856. .toggle-indicator,
  2857. .accordion-section-title:after {
  2858. color: #72777c;
  2859. }
  2860. .widget-action {
  2861. color: #555d66; /* #fafafa background in the Widgets screen */
  2862. }
  2863. .widget-top:hover .widget-action,
  2864. .widget-action:focus,
  2865. .handlediv:hover,
  2866. .handlediv:focus,
  2867. .postbox .handlediv.button-link:hover,
  2868. .postbox .handlediv.button-link:focus,
  2869. .item-edit:hover,
  2870. .item-edit:focus,
  2871. .sidebar-name:hover .toggle-indicator,
  2872. .accordion-section-title:hover:after {
  2873. color: #23282d;
  2874. }
  2875. .widget-top .widget-action:focus .toggle-indicator:before {
  2876. box-shadow:
  2877. 0 0 0 1px #5b9dd9,
  2878. 0 0 2px 1px rgba(30, 140, 190, 0.8);
  2879. }
  2880. .control-section .accordion-section-title:after,
  2881. .accordion-section-title:after {
  2882. float: right;
  2883. right: 20px;
  2884. top: -2px;
  2885. }
  2886. .control-section.open .accordion-section-title:after,
  2887. #customize-info.open .accordion-section-title:after,
  2888. .nav-menus-php .menu-item-edit-active .item-edit:before,
  2889. .widget.open .widget-top .widget-action .toggle-indicator:before,
  2890. .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before {
  2891. content: "\f142";
  2892. }
  2893. /*!
  2894. * jQuery UI Draggable/Sortable 1.11.4
  2895. * http://jqueryui.com
  2896. *
  2897. * Copyright jQuery Foundation and other contributors
  2898. * Released under the MIT license.
  2899. * http://jquery.org/license
  2900. */
  2901. .ui-draggable-handle,
  2902. .ui-sortable-handle {
  2903. touch-action: none;
  2904. }
  2905. /* Accordion */
  2906. .accordion-section {
  2907. border-bottom: 1px solid #ddd;
  2908. margin: 0;
  2909. }
  2910. .accordion-section.open .accordion-section-content,
  2911. .no-js .accordion-section .accordion-section-content {
  2912. display: block;
  2913. }
  2914. .accordion-section.open:hover {
  2915. border-bottom-color: #ddd;
  2916. }
  2917. .accordion-section-content {
  2918. display: none;
  2919. padding: 10px 20px 15px;
  2920. overflow: hidden;
  2921. background: #fff;
  2922. }
  2923. .accordion-section-title {
  2924. margin: 0;
  2925. padding: 12px 15px 15px;
  2926. position: relative;
  2927. border-left: 1px solid #ddd;
  2928. border-right: 1px solid #ddd;
  2929. -webkit-user-select: none;
  2930. -moz-user-select: none;
  2931. -ms-user-select: none;
  2932. user-select: none;
  2933. }
  2934. .js .accordion-section-title {
  2935. cursor: pointer;
  2936. }
  2937. .js .accordion-section-title:after {
  2938. position: absolute;
  2939. top: 12px;
  2940. right: 10px;
  2941. z-index: 1;
  2942. }
  2943. .accordion-section-title:focus {
  2944. outline: none;
  2945. }
  2946. .accordion-section-title:hover:after,
  2947. .accordion-section-title:focus:after {
  2948. border-color: #a0a5aa transparent;
  2949. }
  2950. .cannot-expand .accordion-section-title {
  2951. cursor: auto;
  2952. }
  2953. .cannot-expand .accordion-section-title:after {
  2954. display: none;
  2955. }
  2956. .control-section .accordion-section-title,
  2957. .customize-pane-child .accordion-section-title {
  2958. border-left: none;
  2959. border-right: none;
  2960. padding: 10px 10px 11px 14px;
  2961. line-height: 1.55;
  2962. background: #fff;
  2963. }
  2964. .control-section .accordion-section-title:after,
  2965. .customize-pane-child .accordion-section-title:after {
  2966. top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */
  2967. }
  2968. .js .control-section:hover .accordion-section-title,
  2969. .js .control-section .accordion-section-title:hover,
  2970. .js .control-section.open .accordion-section-title,
  2971. .js .control-section .accordion-section-title:focus {
  2972. color: #23282d;
  2973. background: #f5f5f5;
  2974. }
  2975. .control-section.open .accordion-section-title {
  2976. /* When expanded */
  2977. border-bottom: 1px solid #ddd;
  2978. }
  2979. /* Edit Site */
  2980. .network-admin .edit-site-actions {
  2981. margin-top: 0;
  2982. }
  2983. /* My Sites */
  2984. .my-sites {
  2985. display: block;
  2986. overflow: auto;
  2987. zoom: 1;
  2988. }
  2989. .my-sites li {
  2990. display: block;
  2991. padding: 8px 3%;
  2992. min-height: 130px;
  2993. margin: 0;
  2994. }
  2995. @media only screen and (max-width: 599px) {
  2996. .my-sites li {
  2997. min-height: 0;
  2998. }
  2999. }
  3000. @media only screen and (min-width: 600px) {
  3001. .my-sites.striped li {
  3002. background-color: #fff;
  3003. position: relative;
  3004. }
  3005. .my-sites.striped li:after {
  3006. content: "";
  3007. width: 1px;
  3008. height: 100%;
  3009. position: absolute;
  3010. top: 0;
  3011. right: 0;
  3012. background: #ccc;
  3013. }
  3014. }
  3015. @media only screen and (min-width: 600px) and (max-width: 699px) {
  3016. .my-sites li{
  3017. float: left;
  3018. width: 44%;
  3019. }
  3020. .my-sites.striped li {
  3021. background-color: #fff;
  3022. }
  3023. .my-sites.striped li:nth-of-type(2n+1) {
  3024. clear: left;
  3025. }
  3026. .my-sites.striped li:nth-of-type(2n+2):after {
  3027. content: none;
  3028. }
  3029. .my-sites li:nth-of-type(4n+1),
  3030. .my-sites li:nth-of-type(4n+2) {
  3031. background-color: #f9f9f9;
  3032. }
  3033. }
  3034. @media only screen and (min-width: 700px) and (max-width: 1199px) {
  3035. .my-sites li {
  3036. float: left;
  3037. width: 27.333333%;
  3038. background-color: #fff;
  3039. }
  3040. .my-sites.striped li:nth-of-type(3n+3):after {
  3041. content: none;
  3042. }
  3043. .my-sites li:nth-of-type(6n+1),
  3044. .my-sites li:nth-of-type(6n+2),
  3045. .my-sites li:nth-of-type(6n+3) {
  3046. background-color: #f9f9f9;
  3047. }
  3048. }
  3049. @media only screen and (min-width: 1200px) and (max-width: 1399px) {
  3050. .my-sites li {
  3051. float: left;
  3052. width: 21%;
  3053. padding: 8px 2%;
  3054. background-color: #fff;
  3055. }
  3056. .my-sites.striped li:nth-of-type(4n+1) {
  3057. clear: left;
  3058. }
  3059. .my-sites.striped li:nth-of-type(4n+4):after {
  3060. content: none;
  3061. }
  3062. .my-sites li:nth-of-type(8n+1),
  3063. .my-sites li:nth-of-type(8n+2),
  3064. .my-sites li:nth-of-type(8n+3),
  3065. .my-sites li:nth-of-type(8n+4) {
  3066. background-color: #f9f9f9;
  3067. }
  3068. }
  3069. @media only screen and (min-width: 1400px) and (max-width: 1599px) {
  3070. .my-sites li {
  3071. float: left;
  3072. width: 16%;
  3073. padding: 8px 2%;
  3074. background-color: #fff;
  3075. }
  3076. .my-sites.striped li:nth-of-type(5n+1) {
  3077. clear: left;
  3078. }
  3079. .my-sites.striped li:nth-of-type(5n+5):after {
  3080. content: none;
  3081. }
  3082. .my-sites li:nth-of-type(10n+1),
  3083. .my-sites li:nth-of-type(10n+2),
  3084. .my-sites li:nth-of-type(10n+3),
  3085. .my-sites li:nth-of-type(10n+4),
  3086. .my-sites li:nth-of-type(10n+5) {
  3087. background-color: #f9f9f9;
  3088. }
  3089. }
  3090. @media only screen and (min-width: 1600px) {
  3091. .my-sites li {
  3092. float: left;
  3093. width: 12.666666%;
  3094. padding: 8px 2%;
  3095. background-color: #fff;
  3096. }
  3097. .my-sites.striped li:nth-of-type(6n+1) {
  3098. clear: left;
  3099. }
  3100. .my-sites.striped li:nth-of-type(6n+6):after {
  3101. content: none;
  3102. }
  3103. .my-sites li:nth-of-type(12n+1),
  3104. .my-sites li:nth-of-type(12n+2),
  3105. .my-sites li:nth-of-type(12n+3),
  3106. .my-sites li:nth-of-type(12n+4),
  3107. .my-sites li:nth-of-type(12n+5),
  3108. .my-sites li:nth-of-type(12n+6) {
  3109. background-color: #f9f9f9;
  3110. }
  3111. }
  3112. .my-sites li a {
  3113. text-decoration: none;
  3114. }
  3115. /* =Media Queries
  3116. -------------------------------------------------------------- */
  3117. /**
  3118. * HiDPI Displays
  3119. */
  3120. @media print,
  3121. (-webkit-min-device-pixel-ratio: 1.25),
  3122. (min-resolution: 120dpi) {
  3123. /* Back-compat for pre-3.8 */
  3124. div.star-holder,
  3125. div.star-holder .star-rating {
  3126. background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;
  3127. background-size: 21px 37px;
  3128. }
  3129. .spinner {
  3130. background-image: url(../images/spinner-2x.gif);
  3131. }
  3132. /* @todo: evaluate - most of these were likely replaced by dashicons */
  3133. .curtime #timestamp,
  3134. #screen-meta-links a.show-settings,
  3135. .widget-top .widget-action,
  3136. .widget-top .widget-action:hover,
  3137. .sidebar-name .toggle-indicator,
  3138. .sidebar-name:hover .toggle-indicator,
  3139. .meta-box-sortables .postbox:hover .handlediv,
  3140. #bulk-titles div a,
  3141. #bulk-titles div a:hover {
  3142. background: none !important;
  3143. }
  3144. }
  3145. @-ms-viewport {
  3146. width: device-width;
  3147. }
  3148. @media screen and (max-width: 782px) {
  3149. html.wp-toolbar {
  3150. padding-top: 46px;
  3151. }
  3152. .screen-reader-shortcut:focus {
  3153. top: -39px;
  3154. }
  3155. body {
  3156. min-width: 240px;
  3157. overflow-x: hidden;
  3158. }
  3159. body * {
  3160. -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  3161. }
  3162. #wpcontent {
  3163. position: relative;
  3164. margin-left: 0;
  3165. padding-left: 10px;
  3166. }
  3167. #wpbody-content {
  3168. padding-bottom: 100px;
  3169. }
  3170. .wrap {
  3171. clear: both;
  3172. margin-right: 12px;
  3173. margin-left: 0;
  3174. }
  3175. /* categories */
  3176. #col-left,
  3177. #col-right {
  3178. float: none;
  3179. width: auto;
  3180. }
  3181. #col-left .col-wrap,
  3182. #col-right .col-wrap {
  3183. padding: 0;
  3184. }
  3185. /* Hidden Elements */
  3186. #collapse-menu,
  3187. .post-format-select {
  3188. display: none !important;
  3189. }
  3190. .wrap h1.wp-heading-inline {
  3191. margin-bottom: 0.5em;
  3192. }
  3193. .wrap .add-new-h2, /* deprecated */
  3194. .wrap .add-new-h2:active, /* deprecated */
  3195. .wrap .page-title-action,
  3196. .wrap .page-title-action:active {
  3197. padding: 10px 15px;
  3198. font-size: 14px;
  3199. white-space: nowrap;
  3200. }
  3201. /* Feedback Messages */
  3202. .notice,
  3203. .wrap div.updated,
  3204. .wrap div.error,
  3205. .media-upload-form div.error {
  3206. margin: 20px 0 10px 0;
  3207. padding: 5px 10px;
  3208. font-size: 14px;
  3209. line-height: 175%;
  3210. }
  3211. .wp-core-ui .notice.is-dismissible {
  3212. padding-right: 46px;
  3213. }
  3214. .notice-dismiss {
  3215. padding: 13px;
  3216. }
  3217. .wrap .icon32 + h2 {
  3218. margin-top: -2px;
  3219. }
  3220. .wp-responsive-open #wpbody {
  3221. right: -16em;
  3222. }
  3223. code {
  3224. word-wrap: break-word;
  3225. word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */
  3226. word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */
  3227. }
  3228. /* General Metabox */
  3229. .postbox {
  3230. font-size: 14px;
  3231. }
  3232. .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
  3233. .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
  3234. .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */
  3235. .metabox-holder h2 {
  3236. padding: 12px;
  3237. }
  3238. .postbox .handlediv {
  3239. margin-top: 3px;
  3240. }
  3241. /* Subsubsub Nav */
  3242. .subsubsub {
  3243. font-size: 16px;
  3244. text-align: center;
  3245. margin-bottom: 15px;
  3246. }
  3247. /* Theme/Plugin File Editor */
  3248. #template textarea,
  3249. #template .CodeMirror {
  3250. box-sizing: border-box;
  3251. }
  3252. #templateside {
  3253. float: none;
  3254. width: auto;
  3255. }
  3256. #templateside > ul {
  3257. border-left: 1px solid #ddd;
  3258. }
  3259. #templateside li {
  3260. margin: 0;
  3261. }
  3262. #templateside li:not(.howto) a {
  3263. display: block;
  3264. padding: 5px;
  3265. }
  3266. #templateside li.howto {
  3267. padding: 12px;
  3268. }
  3269. #templateside .highlight {
  3270. padding: 5px;
  3271. margin-left: -5px;
  3272. margin-top: -5px;
  3273. }
  3274. #template > div,
  3275. #template .notice {
  3276. float: none;
  3277. margin: 1em 0;
  3278. width: auto;
  3279. }
  3280. #template .CodeMirror,
  3281. #template textarea {
  3282. width: 100%;
  3283. }
  3284. #templateside ul ul {
  3285. padding-left: 1.5em;
  3286. }
  3287. [role="treeitem"] .folder-label {
  3288. display: block;
  3289. padding: 5px;
  3290. }
  3291. .tree-folder > li::before,
  3292. .tree-folder > li::after,
  3293. .tree-folder .tree-folder::after {
  3294. left: -8px;
  3295. }
  3296. .tree-folder > li::before {
  3297. top: 0px;
  3298. height: 13px;
  3299. }
  3300. .tree-folder > .current-file::before {
  3301. left: -5px;
  3302. top: 7px;
  3303. width: 4px;
  3304. }
  3305. .tree-folder > .current-file::after {
  3306. height: 9px;
  3307. left: -8px;
  3308. }
  3309. .wrap #templateside span.notice {
  3310. margin-left: -5px;
  3311. width: 100%;
  3312. }
  3313. .fileedit-sub .alignright {
  3314. float: left;
  3315. margin-top: 15px;
  3316. width: 100%;
  3317. text-align: left;
  3318. }
  3319. .fileedit-sub .alignright label {
  3320. display: block;
  3321. }
  3322. .fileedit-sub #theme,
  3323. .fileedit-sub #plugin {
  3324. margin-left: 0;
  3325. max-width: 70%;
  3326. }
  3327. .fileedit-sub input[type="submit"] {
  3328. margin-bottom: 0px;
  3329. padding: 4px 18px;
  3330. }
  3331. #documentation label[for="docs-list"] {
  3332. display: block;
  3333. }
  3334. #documentation select[name="docs-list"] {
  3335. margin-left: 0;
  3336. max-width: 60%;
  3337. }
  3338. #documentation input[type="button"] {
  3339. margin-bottom: 0;
  3340. padding: 8px 18px;
  3341. }
  3342. #wpfooter {
  3343. display: none;
  3344. }
  3345. #comments-form .checkforspam {
  3346. display: none;
  3347. }
  3348. .edit-comment-author {
  3349. margin: 2px 0 0;
  3350. }
  3351. .filter-drawer .filter-group-feature input,
  3352. .filter-drawer .filter-group-feature label {
  3353. line-height: 2.1;
  3354. }
  3355. .filter-drawer .filter-group-feature label {
  3356. margin-left: 32px;
  3357. }
  3358. .wp-filter .button.drawer-toggle {
  3359. font-size: 13px;
  3360. line-height: 2;
  3361. height: 28px;
  3362. }
  3363. /* Fix help tab columns for smaller screens */
  3364. #screen-meta #contextual-help-wrap {
  3365. overflow: visible;
  3366. }
  3367. #screen-meta #contextual-help-back,
  3368. #screen-meta .contextual-help-sidebar {
  3369. display: none;
  3370. }
  3371. #screen-meta .contextual-help-tabs {
  3372. clear: both;
  3373. width: 100%;
  3374. float: none;
  3375. }
  3376. #screen-meta .contextual-help-tabs ul {
  3377. margin: 0 0 1em;
  3378. padding: 1em 0 0;
  3379. }
  3380. #screen-meta .contextual-help-tabs .active {
  3381. margin: 0;
  3382. }
  3383. #screen-meta .contextual-help-tabs-wrap {
  3384. clear: both;
  3385. max-width: 100%;
  3386. float: none;
  3387. }
  3388. #screen-meta-links {
  3389. margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
  3390. }
  3391. .wp-filter .search-form input[type="search"] {
  3392. font-size: 1rem;
  3393. }
  3394. }
  3395. /* Smartphone */
  3396. @media screen and (max-width: 600px) {
  3397. /* Disable horizontal scroll when responsive menu is open
  3398. since we push the main content off to the right. */
  3399. #wpwrap.wp-responsive-open {
  3400. overflow-x: hidden;
  3401. }
  3402. html.wp-toolbar {
  3403. padding-top: 0;
  3404. }
  3405. .screen-reader-shortcut:focus {
  3406. top: 7px;
  3407. }
  3408. #wpbody {
  3409. padding-top: 46px;
  3410. }
  3411. /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
  3412. div#post-body.metabox-holder.columns-1 {
  3413. overflow-x: hidden;
  3414. }
  3415. h1.nav-tab-wrapper,
  3416. .wrap h2.nav-tab-wrapper,
  3417. .nav-tab-wrapper {
  3418. border-bottom: 0;
  3419. }
  3420. h1 .nav-tab,
  3421. h2 .nav-tab,
  3422. h3 .nav-tab,
  3423. nav .nav-tab {
  3424. margin: 10px 10px 0 0;
  3425. border-bottom: 1px solid #ccc;
  3426. }
  3427. .nav-tab-active:hover,
  3428. .nav-tab-active:focus,
  3429. .nav-tab-active:focus:active {
  3430. border-bottom: 1px solid #ccc;
  3431. }
  3432. .wp-filter .search-form input[type="search"] {
  3433. width: 100%;
  3434. }
  3435. }
  3436. @media screen and (max-width: 320px) {
  3437. /* Prevent default center alignment and larger font for the Right Now widget when
  3438. the network dashboard is viewed on a small mobile device. */
  3439. #network_dashboard_right_now .subsubsub {
  3440. font-size: 14px;
  3441. text-align: left;
  3442. }
  3443. }