123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068 |
- /* 2 column liquid layout */
- #wpwrap {
- height: auto;
- min-height: 100%;
- width: 100%;
- position: relative;
- -webkit-font-smoothing: subpixel-antialiased;
- }
- #wpcontent {
- height: 100%;
- padding-left: 20px;
- }
- #wpcontent,
- #wpfooter {
- margin-left: 160px;
- }
- .folded #wpcontent,
- .folded #wpfooter {
- margin-left: 36px;
- }
- #wpbody-content {
- padding-bottom: 65px;
- float: left;
- width: 100%;
- overflow: visible !important;
- }
- /* inner 2 column liquid layout */
- .inner-sidebar {
- float: right;
- clear: right;
- display: none;
- width: 281px;
- position: relative;
- }
- .columns-2 .inner-sidebar {
- margin-right: auto;
- width: 286px;
- display: block;
- }
- .inner-sidebar #side-sortables,
- .columns-2 .inner-sidebar #side-sortables {
- min-height: 300px;
- width: 280px;
- padding: 0;
- }
- .has-right-sidebar .inner-sidebar {
- display: block;
- }
- .has-right-sidebar #post-body {
- float: left;
- clear: left;
- width: 100%;
- margin-right: -2000px;
- }
- .has-right-sidebar #post-body-content {
- margin-right: 300px;
- float: none;
- width: auto;
- }
- /* 2 columns main area */
- #col-left {
- float: left;
- width: 35%;
- }
- #col-right {
- float: right;
- width: 65%;
- }
- #col-left .col-wrap {
- padding: 0 6px 0 0;
- }
- #col-right .col-wrap {
- padding: 0 0 0 6px;
- }
- /* utility classes */
- .alignleft {
- float: left;
- }
- .alignright {
- float: right;
- }
- .textleft {
- text-align: left;
- }
- .textright {
- text-align: right;
- }
- .clear {
- clear: both;
- }
- /* modern clearfix */
- .wp-clearfix:after {
- content: "";
- display: table;
- clear: both;
- }
- /* Hide visually but not from screen readers */
- .screen-reader-text,
- .screen-reader-text span,
- .ui-helper-hidden-accessible {
- border: 0;
- clip: rect(1px, 1px, 1px, 1px);
- -webkit-clip-path: inset(50%);
- clip-path: inset(50%);
- height: 1px;
- margin: -1px;
- overflow: hidden;
- padding: 0;
- position: absolute;
- width: 1px;
- word-wrap: normal !important; /* many screen reader and browser combinations announce broken words as they would appear visually */
- }
- .button .screen-reader-text {
- height: auto; /* Fixes a Safari+VoiceOver bug, see ticket #42006 */
- }
- .screen-reader-shortcut {
- position: absolute;
- top: -1000em;
- }
- .screen-reader-shortcut:focus {
- left: 6px;
- top: -25px;
- height: auto;
- width: auto;
- display: block;
- font-size: 14px;
- font-weight: 600;
- padding: 15px 23px 14px;
- background: #f1f1f1;
- color: #0073aa;
- z-index: 100000;
- line-height: normal;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- text-decoration: none;
- /* Only visible in Windows High Contrast mode */
- outline: 2px solid transparent;
- outline-offset: -2px;
- }
- .hidden,
- .js .closed .inside,
- .js .hide-if-js,
- .no-js .hide-if-no-js,
- .js.wp-core-ui .hide-if-js,
- .js .wp-core-ui .hide-if-js,
- .no-js.wp-core-ui .hide-if-no-js,
- .no-js .wp-core-ui .hide-if-no-js {
- display: none;
- }
- /* @todo: Take a second look. Large chunks of shared color, from the colors.css merge */
- .widget-top,
- .menu-item-handle,
- .widget-inside,
- #menu-settings-column .accordion-container,
- #menu-management .menu-edit,
- .manage-menus,
- table.widefat,
- .stuffbox,
- p.popular-tags,
- .widgets-holder-wrap,
- .wp-editor-container,
- .popular-tags,
- .feature-filter,
- .imgedit-group,
- .comment-ays {
- border: 1px solid #ccd0d4;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
- }
- table.widefat,
- .wp-editor-container,
- .stuffbox,
- p.popular-tags,
- .widgets-holder-wrap,
- .popular-tags,
- .feature-filter,
- .imgedit-group,
- .comment-ays {
- background: #fff;
- }
- /* general */
- html,
- body {
- height: 100%;
- margin: 0;
- padding: 0;
- }
- body {
- background: #f1f1f1;
- color: #444;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
- font-size: 13px;
- line-height: 1.4em;
- min-width: 600px;
- }
- body.iframe {
- min-width: 0;
- padding-top: 1px;
- }
- body.modal-open {
- overflow: hidden;
- }
- body.mobile.modal-open #wpwrap {
- overflow: hidden;
- position: fixed;
- height: 100%;
- }
- iframe,
- img {
- border: 0;
- }
- td {
- font-family: inherit;
- font-size: inherit;
- font-weight: inherit;
- line-height: inherit;
- }
- /* Any change to the default link style must be applied to button-link too. */
- a {
- color: #0073aa;
- transition-property: border, background, color;
- transition-duration: .05s;
- transition-timing-function: ease-in-out;
- }
- a,
- div {
- outline: 0;
- }
- a:hover,
- a:active {
- color: #00a0d2;
- }
- a:focus,
- a:focus .media-icon img,
- .wp-person a:focus .gravatar {
- color: #124964;
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- /* Only visible in Windows High Contrast mode */
- outline: 1px solid transparent;
- }
- .ie8 a:focus {
- outline: #5b9dd9 solid 1px;
- }
- #adminmenu a:focus {
- box-shadow: none;
- /* Only visible in Windows High Contrast mode */
- outline: 1px solid transparent;
- outline-offset: -1px;
- }
- .screen-reader-text:focus {
- box-shadow: none;
- outline: none;
- }
- blockquote,
- q {
- quotes: none;
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: "";
- content: none;
- }
- p {
- font-size: 13px;
- line-height: 1.5;
- margin: 1em 0;
- }
- blockquote {
- margin: 1em;
- }
- li,
- dd {
- margin-bottom: 6px;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- display: block;
- font-weight: 600;
- }
- h1 {
- color: #23282d;
- font-size: 2em;
- margin: .67em 0;
- }
- h2,
- h3 {
- color: #23282d;
- font-size: 1.3em;
- margin: 1em 0;
- }
- .update-core-php h2 {
- margin-top: 2em;
- }
- .update-php h2,
- .update-messages h2,
- h4 {
- font-size: 1em;
- margin: 1.33em 0;
- }
- h5 {
- font-size: 0.83em;
- margin: 1.67em 0;
- }
- h6 {
- font-size: 0.67em;
- margin: 2.33em 0;
- }
- ul,
- ol {
- padding: 0;
- }
- ul {
- list-style: none;
- }
- ol {
- list-style-type: decimal;
- margin-left: 2em;
- }
- ul.ul-disc {
- list-style: disc outside;
- }
- ul.ul-square {
- list-style: square outside;
- }
- ol.ol-decimal {
- list-style: decimal outside;
- }
- ul.ul-disc,
- ul.ul-square,
- ol.ol-decimal {
- margin-left: 1.8em;
- }
- ul.ul-disc > li,
- ul.ul-square > li,
- ol.ol-decimal > li {
- margin: 0 0 0.5em;
- }
- /* rtl:ignore */
- .ltr {
- direction: ltr;
- }
- /* rtl:ignore */
- .code,
- code {
- font-family: Consolas, Monaco, monospace;
- direction: ltr;
- unicode-bidi: embed;
- }
- kbd,
- code {
- padding: 3px 5px 2px 5px;
- margin: 0 1px;
- background: #eaeaea;
- background: rgba(0, 0, 0, 0.07);
- font-size: 13px;
- }
- .subsubsub {
- list-style: none;
- margin: 8px 0 0;
- padding: 0;
- font-size: 13px;
- float: left;
- color: #666;
- }
- .subsubsub a {
- line-height: 2;
- padding: .2em;
- text-decoration: none;
- }
- .subsubsub a .count,
- .subsubsub a.current .count {
- color: #555d66; /* #f1f1f1 background */
- font-weight: 400;
- }
- .subsubsub a.current {
- font-weight: 600;
- border: none;
- }
- .subsubsub li {
- display: inline-block;
- margin: 0;
- padding: 0;
- white-space: nowrap;
- }
- .wp-die-message {
- font-size: 13px;
- line-height: 1.5;
- margin: 1em 0;
- }
- /* .widefat - main style for tables */
- .widefat {
- border-spacing: 0;
- width: 100%;
- clear: both;
- margin: 0;
- }
- .widefat * {
- word-wrap: break-word;
- }
- .widefat a,
- .widefat button.button-link {
- text-decoration: none;
- }
- .widefat td,
- .widefat th {
- padding: 8px 10px;
- }
- .widefat thead th,
- .widefat thead td {
- border-bottom: 1px solid #ccd0d4;
- }
- .widefat tfoot th,
- .widefat tfoot td {
- border-top: 1px solid #ccd0d4;
- border-bottom: none;
- }
- .widefat .no-items td {
- border-bottom-width: 0;
- }
- .widefat td {
- vertical-align: top;
- }
- .widefat td,
- .widefat td p,
- .widefat td ol,
- .widefat td ul {
- font-size: 13px;
- line-height: 1.5em;
- }
- .widefat th,
- .widefat thead td,
- .widefat tfoot td {
- text-align: left;
- line-height: 1.3em;
- font-size: 14px;
- }
- .widefat th input,
- .updates-table td input,
- .widefat thead td input,
- .widefat tfoot td input {
- margin: 0 0 0 8px;
- padding: 0;
- vertical-align: text-top;
- }
- .widefat .check-column {
- width: 2.2em;
- padding: 6px 0 25px;
- vertical-align: top;
- }
- .widefat tbody th.check-column {
- padding: 9px 0 22px;
- }
- .widefat thead td.check-column,
- .widefat tbody th.check-column,
- .updates-table tbody td.check-column,
- .widefat tfoot td.check-column {
- padding: 11px 0 0 3px;
- }
- .widefat thead td.check-column,
- .widefat tfoot td.check-column {
- padding-top: 4px;
- vertical-align: middle;
- }
- .update-php div.updated,
- .update-php div.error {
- margin-left: 0;
- }
- .no-js .widefat thead .check-column input,
- .no-js .widefat tfoot .check-column input {
- display: none;
- }
- .widefat .num,
- .column-comments,
- .column-links,
- .column-posts {
- text-align: center;
- }
- .widefat th#comments {
- vertical-align: middle;
- }
- .wrap {
- margin: 10px 20px 0 2px;
- }
- .wrap.block-editor-no-js {
- padding-left: 20px;
- }
- .wrap > h2:first-child, /* Back-compat for pre-4.4 */
- .wrap [class$="icon32"] + h2, /* Back-compat for pre-4.4 */
- .postbox .inside h2, /* Back-compat for pre-4.4 */
- .wrap h1 {
- font-size: 23px;
- font-weight: 400;
- margin: 0;
- padding: 9px 0 4px 0;
- line-height: 1.3;
- }
- .wrap h1.wp-heading-inline {
- display: inline-block;
- margin-right: 5px;
- }
- .wp-header-end {
- visibility: hidden;
- margin: -2px 0 0;
- }
- .subtitle {
- margin: 0;
- padding-left: 25px;
- color: #555d66;
- font-size: 14px;
- font-weight: 400;
- line-height: 1;
- }
- .wrap .add-new-h2, /* deprecated */
- .wrap .add-new-h2:active, /* deprecated */
- .wrap .page-title-action,
- .wrap .page-title-action:active {
- margin-left: 4px;
- padding: 4px 8px;
- position: relative;
- top: -3px;
- text-decoration: none;
- border: 1px solid #0071a1;
- border-radius: 2px;
- text-shadow: none;
- font-weight: 600;
- font-size: 13px;
- line-height: normal; /* IE8-IE11 need this for buttons */
- color: #0071a1; /* use the standard color used for buttons */
- background: #f3f5f6;
- cursor: pointer;
- }
- .wrap .wp-heading-inline + .page-title-action {
- margin-left: 0;
- }
- .wrap .add-new-h2:hover, /* deprecated */
- .wrap .page-title-action:hover {
- background: #f1f1f1;
- border-color: #016087;
- color: #016087;
- }
- /* lower specificity: color needs to be overridden by :hover and :active */
- .page-title-action:focus {
- color: #016087;
- }
- /* Dashicon for language options on General Settings and Profile screens */
- .form-table th label[for="locale"] .dashicons,
- .form-table th label[for="WPLANG"] .dashicons {
- margin-left: 5px;
- }
- .wrap .page-title-action:focus {
- border-color: #007cba;
- box-shadow: 0 0 0 1px #007cba;
- /* Only visible in Windows High Contrast mode */
- outline: 2px solid transparent;
- }
- .wrap h1.long-header {
- padding-right: 0;
- }
- .wp-dialog {
- background-color: #fff;
- }
- .widgets-chooser ul,
- #widgets-left .widget-in-question .widget-top,
- #available-widgets .widget-top:hover,
- div#widgets-right .widget-top:hover,
- #widgets-left .widget-top:hover {
- border-color: #999;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
- }
- .sorthelper {
- background-color: #ccf3fa;
- }
- .ac_match,
- .subsubsub a.current {
- color: #000;
- }
- .striped > tbody > :nth-child(odd),
- ul.striped > :nth-child(odd),
- .alternate {
- background-color: #f9f9f9;
- }
- .bar {
- background-color: #e8e8e8;
- border-right-color: #99d;
- }
- /* Helper classes for plugins to leverage the active WordPress color scheme */
- .highlight {
- background-color: #e4f2fd;
- color: #000;
- }
- .wp-ui-primary {
- color: #fff;
- background-color: #32373c;
- }
- .wp-ui-text-primary {
- color: #32373c;
- }
- .wp-ui-highlight {
- color: #fff;
- background-color: #1e8cbe;
- }
- .wp-ui-text-highlight {
- color: #1e8cbe;
- }
- .wp-ui-notification {
- color: #fff;
- background-color: #d54e21;
- }
- .wp-ui-text-notification {
- color: #d54e21;
- }
- .wp-ui-text-icon {
- color: #82878c; /* same as new icons */
- }
- /* For emoji replacement images */
- img.emoji {
- display: inline !important;
- border: none !important;
- height: 1em !important;
- width: 1em !important;
- margin: 0 .07em !important;
- vertical-align: -0.1em !important;
- background: none !important;
- padding: 0 !important;
- box-shadow: none !important;
- }
- /*------------------------------------------------------------------------------
- 1.0 - Text Styles
- ------------------------------------------------------------------------------*/
- .widget .widget-top,
- .postbox .hndle,
- .stuffbox .hndle,
- .control-section .accordion-section-title,
- .sidebar-name,
- #nav-menu-header,
- #nav-menu-footer,
- .menu-item-handle,
- .checkbox,
- .side-info,
- #your-profile #rich_editing,
- .widefat thead th,
- .widefat thead td,
- .widefat tfoot th,
- .widefat tfoot td {
- line-height: 1.4em;
- }
- .widget .widget-top,
- .menu-item-handle {
- background: #fafafa;
- color: #23282d;
- }
- .postbox .hndle,
- .stuffbox .hndle {
- border-bottom: 1px solid #ccd0d4;
- }
- .quicktags {
- background-color: #ccc;
- color: #000;
- font-size: 12px;
- }
- .icon32 {
- display: none;
- }
- /* @todo can we combine these into a class or use an existing dashicon one? */
- .welcome-panel .welcome-panel-close:before,
- .tagchecklist .ntdelbutton .remove-tag-icon:before,
- #bulk-titles div a:before,
- .notice-dismiss:before {
- background: none;
- color: #72777c;
- content: "\f153";
- display: block;
- font: normal 16px/20px dashicons;
- speak: none;
- height: 20px;
- text-align: center;
- width: 20px;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .welcome-panel .welcome-panel-close:before {
- margin: 0;
- }
- #bulk-titles div a:before {
- margin: 1px 0;
- }
- .tagchecklist .ntdelbutton .remove-tag-icon:before {
- margin-left: 2px;
- border-radius: 50%;
- color: #0073aa;
- /* vertically center the icon cross browsers */
- line-height: 1.28;
- }
- .tagchecklist .ntdelbutton:focus {
- outline: 0;
- }
- .welcome-panel .welcome-panel-close:hover:before,
- .welcome-panel .welcome-panel-close:focus:before,
- .tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
- .tagchecklist .ntdelbutton:focus .remove-tag-icon:before,
- #bulk-titles div a:hover:before,
- #bulk-titles div a:focus:before {
- color: #c00;
- }
- .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- }
- .key-labels label {
- line-height: 24px;
- }
- strong, b {
- font-weight: 600;
- }
- .pre {
- /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
- white-space: pre-wrap; /* css-3 */
- word-wrap: break-word; /* IE 5.5 - 7 */
- }
- .howto {
- color: #666;
- font-style: italic;
- display: block;
- }
- p.install-help {
- margin: 8px 0;
- font-style: italic;
- }
- .no-break {
- white-space: nowrap;
- }
- hr {
- border: 0;
- border-top: 1px solid #ddd;
- border-bottom: 1px solid #fafafa;
- }
- .row-actions span.delete a,
- .row-actions span.trash a,
- .row-actions span.spam a,
- .plugins a.delete,
- #all-plugins-table .plugins a.delete,
- #search-plugins-table .plugins a.delete,
- .submitbox .submitdelete,
- #media-items a.delete,
- #media-items a.delete-permanently,
- #nav-menu-footer .menu-delete,
- #delete-link a.delete {
- color: #a00;
- }
- abbr.required,
- span.required,
- .file-error,
- .row-actions .delete a:hover,
- .row-actions .trash a:hover,
- .row-actions .spam a:hover,
- .plugins a.delete:hover,
- #all-plugins-table .plugins a.delete:hover,
- #search-plugins-table .plugins a.delete:hover,
- .submitbox .submitdelete:hover,
- #media-items a.delete:hover,
- #media-items a.delete-permanently:hover,
- #nav-menu-footer .menu-delete:hover,
- #delete-link a.delete:hover {
- color: #dc3232;
- border: none;
- }
- /*------------------------------------------------------------------------------
- 3.0 - Actions
- ------------------------------------------------------------------------------*/
- #major-publishing-actions {
- padding: 10px;
- clear: both;
- border-top: 1px solid #ddd;
- background: #f5f5f5;
- }
- #delete-action {
- float: left;
- line-height: 2.1;
- }
- #delete-link {
- line-height: 2.1;
- vertical-align: middle;
- text-align: left;
- margin-left: 8px;
- }
- #delete-link a {
- text-decoration: none;
- }
- #publishing-action {
- text-align: right;
- float: right;
- line-height: 1.9;
- }
- #publishing-action .spinner {
- float: left;
- }
- #misc-publishing-actions {
- padding: 6px 0 0;
- }
- .misc-pub-section {
- padding: 6px 10px 8px;
- }
- .misc-pub-filename {
- word-wrap: break-word;
- }
- #minor-publishing-actions {
- padding: 10px 10px 0 10px;
- text-align: right;
- }
- #save-post {
- float: left;
- }
- .preview {
- float: right;
- }
- #sticky-span {
- margin-left: 18px;
- }
- .approve,
- .unapproved .unapprove {
- display: none;
- }
- .unapproved .approve,
- .spam .approve,
- .trash .approve {
- display: inline;
- }
- td.action-links,
- th.action-links {
- text-align: right;
- }
- #misc-publishing-actions .notice {
- margin-left: 10px;
- margin-right: 10px;
- }
- /* Filter bar */
- .wp-filter {
- display: inline-block;
- position: relative;
- box-sizing: border-box;
- margin: 12px 0 25px;
- padding: 0 10px;
- width: 100%;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
- border: 1px solid #ccd0d4;
- background: #fff;
- color: #555;
- font-size: 13px;
- }
- .wp-filter a {
- text-decoration: none;
- }
- .filter-count {
- display: inline-block;
- vertical-align: middle;
- min-width: 4em;
- }
- .title-count,
- .filter-count .count {
- display: inline-block;
- position: relative;
- top: -1px;
- padding: 4px 10px;
- border-radius: 30px;
- background: #72777c;
- color: #fff;
- font-size: 14px;
- font-weight: 600;
- }
- /* not a part of filter bar, but derived from it, so here for now */
- .title-count {
- display: inline;
- top: -3px;
- margin-left: 5px;
- margin-right: 20px;
- }
- .filter-items {
- float: left;
- }
- .filter-links {
- display: inline-block;
- margin: 0;
- }
- .filter-links li {
- display: inline-block;
- margin: 0;
- }
- .filter-links li > a {
- display: inline-block;
- margin: 0 10px;
- padding: 15px 0;
- border-bottom: 4px solid #fff;
- color: #666;
- cursor: pointer;
- }
- .filter-links .current {
- box-shadow: none;
- border-bottom: 4px solid #666;
- color: #23282d;
- }
- .filter-links li > a:hover,
- .filter-links li > a:focus,
- .show-filters .filter-links a.current:hover,
- .show-filters .filter-links a.current:focus {
- color: #00a0d2;
- }
- .wp-filter .search-form {
- float: right;
- margin: 10px 0;
- }
- .wp-filter .search-form input[type="search"] {
- margin: 0;
- width: 280px;
- max-width: 100%;
- font-size: inherit;
- /* inherits font size 13px */
- line-height: 2.15384615; /* 28px */
- }
- .wp-filter .search-form select {
- margin: 0;
- }
- .wp-filter .search-form.search-plugins {
- display: inline-block;
- }
- .wp-filter .button.drawer-toggle {
- margin: 10px 9px 0;
- padding: 0 10px 0 6px;
- border-color: transparent;
- background-color: transparent;
- color: #666;
- vertical-align: baseline;
- box-shadow: none;
- }
- .wp-filter .drawer-toggle:before {
- content: "\f111";
- margin: 0 5px 0 0;
- color: #72777c;
- font: normal 16px/1 dashicons;
- vertical-align: text-bottom;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .wp-filter .button.drawer-toggle:hover,
- .wp-filter .drawer-toggle:hover:before,
- .wp-filter .button.drawer-toggle:focus,
- .wp-filter .drawer-toggle:focus:before {
- background-color: transparent;
- color: #00a0d2;
- }
- .wp-filter .button.drawer-toggle:hover,
- .wp-filter .button.drawer-toggle:focus:active {
- border-color: transparent;
- }
- .wp-filter .button.drawer-toggle:focus {
- border-color: #5b9dd9;
- }
- .wp-filter .button.drawer-toggle:active {
- background: transparent;
- box-shadow: none;
- transform: none;
- }
- .wp-filter .drawer-toggle.current:before {
- color: #fff;
- }
- .filter-drawer,
- .wp-filter .favorites-form {
- display: none;
- margin: 0 -10px 0 -20px;
- padding: 20px;
- border-top: 1px solid #eee;
- background: #fafafa;
- overflow: hidden;
- }
- .show-filters .filter-drawer,
- .show-favorites-form .favorites-form {
- display: block;
- }
- .show-filters .filter-links a.current {
- border-bottom: none;
- }
- .show-filters .wp-filter .button.drawer-toggle {
- border-radius: 2px;
- background: #72777c;
- color: #fff;
- }
- .show-filters .wp-filter .drawer-toggle:hover,
- .show-filters .wp-filter .drawer-toggle:focus {
- background: rgb(46, 162, 204);
- }
- .show-filters .wp-filter .drawer-toggle:before {
- color: #fff;
- }
- .filter-group {
- box-sizing: border-box;
- position: relative;
- float: left;
- margin: 0 1% 0 0;
- padding: 20px 10px 10px;
- width: 24%;
- background: #fff;
- border: 1px solid #e5e5e5;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
- }
- .filter-group legend {
- position: absolute;
- top: 10px;
- display: block;
- margin: 0;
- padding: 0;
- font-size: 1em;
- font-weight: 600;
- }
- .filter-drawer .filter-group-feature {
- margin: 28px 0 0;
- list-style-type: none;
- font-size: 12px;
- }
- .filter-drawer .filter-group-feature input,
- .filter-drawer .filter-group-feature label {
- line-height: 1.4;
- }
- .filter-drawer .filter-group-feature input {
- position: absolute;
- margin: 0;
- }
- .filter-group .filter-group-feature label {
- display: block;
- margin: 14px 0px 14px 23px;
- }
- .filter-drawer .buttons {
- clear: both;
- margin-bottom: 20px;
- }
- .filter-drawer .filter-group + .buttons {
- margin-bottom: 0;
- padding-top: 20px;
- }
- .filter-drawer .buttons .button span {
- display: inline-block;
- opacity: 0.8;
- font-size: 12px;
- text-indent: 10px;
- }
- .wp-filter .button.clear-filters {
- display: none;
- margin-left: 10px;
- }
- .wp-filter .button-link.edit-filters {
- padding: 0 5px;
- line-height: 2.2;
- }
- .filtered-by {
- display: none;
- margin: 0;
- }
- .filtered-by > span {
- font-weight: 600;
- }
- .filtered-by a {
- margin-left: 10px;
- }
- .filtered-by .tags {
- display: inline;
- }
- .filtered-by .tag {
- margin: 0 5px;
- padding: 4px 8px;
- border: 1px solid #e5e5e5;
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
- background: #fff;
- font-size: 11px;
- }
- .filters-applied .filter-group,
- .filters-applied .filter-drawer .buttons,
- .filters-applied .filter-drawer br {
- display: none !important;
- }
- .filters-applied .filtered-by {
- display: block;
- }
- .filters-applied .filter-drawer {
- padding: 20px;
- }
- .show-filters .favorites-form,
- .show-filters .content-filterable,
- .show-filters.filters-applied.loading-content .content-filterable,
- .loading-content .content-filterable,
- .error .content-filterable {
- display: none;
- }
- .show-filters.filters-applied .content-filterable {
- display: block;
- }
- .loading-content .spinner {
- display: block;
- margin: 40px auto 0;
- float: none;
- }
- @media only screen and (max-width: 1120px) {
- .filter-drawer {
- border-bottom: 1px solid #eee;
- }
- .filter-group {
- margin-bottom: 0;
- margin-top: 5px;
- width: 100%;
- }
- .filter-group li {
- margin: 10px 0;
- }
- }
- @media only screen and (max-width: 1000px) {
- .filter-items {
- float: none;
- }
- .wp-filter .media-toolbar-primary,
- .wp-filter .media-toolbar-secondary,
- .wp-filter .search-form {
- float: none; /* Remove float from media-views.css */
- position: relative;
- max-width: 100%;
- }
- }
- @media only screen and (max-width: 782px) {
- .filter-group li {
- padding: 0;
- width: 50%;
- }
- }
- @media only screen and (max-width: 320px) {
- .filter-count {
- display: none;
- }
- .wp-filter .drawer-toggle {
- margin: 10px 0;
- }
- .filter-group li,
- .wp-filter .search-form input[type="search"] {
- width: 100%;
- }
- }
- /*------------------------------------------------------------------------------
- 4.0 - Notifications
- ------------------------------------------------------------------------------*/
- .notice,
- div.updated,
- div.error {
- background: #fff;
- border: 1px solid #ccd0d4;
- border-left-width: 4px;
- box-shadow: 0 1px 1px rgba(0,0,0,.04);
- margin: 5px 15px 2px;
- padding: 1px 12px;
- }
- div[class="update-message"] { /* back-compat for pre-4.6 */
- padding: 0.5em 12px 0.5em 0;
- }
- .notice p,
- .notice-title,
- div.updated p,
- div.error p,
- .form-table td .notice p {
- margin: 0.5em 0;
- padding: 2px;
- }
- .error a {
- text-decoration: underline;
- }
- .updated a {
- padding-bottom: 2px;
- }
- .notice-alt {
- box-shadow: none;
- }
- .notice-large {
- padding: 10px 20px;
- }
- .notice-title {
- display: inline-block;
- color: #23282d;
- font-size: 18px;
- }
- .wp-core-ui .notice.is-dismissible {
- padding-right: 38px;
- position: relative;
- }
- .notice-dismiss {
- position: absolute;
- top: 0;
- right: 1px;
- border: none;
- margin: 0;
- padding: 9px;
- background: none;
- color: #72777c;
- cursor: pointer;
- }
- .notice-dismiss:hover:before,
- .notice-dismiss:active:before,
- .notice-dismiss:focus:before {
- color: #c00;
- }
- .notice-dismiss:focus {
- outline: none;
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- }
- .ie8 .notice-dismiss:focus {
- outline: 1px solid #5b9dd9;
- }
- .notice-success,
- div.updated {
- border-left-color: #46b450;
- }
- .notice-success.notice-alt {
- background-color: #ecf7ed;
- }
- .notice-warning {
- border-left-color: #ffb900;
- }
- .notice-warning.notice-alt {
- background-color: #fff8e5;
- }
- .notice-error,
- div.error {
- border-left-color: #dc3232;
- }
- .notice-error.notice-alt {
- background-color: #fbeaea;
- }
- .notice-info {
- border-left-color: #00a0d2;
- }
- .notice-info.notice-alt {
- background-color: #e5f5fa;
- }
- .update-message p:before,
- .updating-message p:before,
- .updated-message p:before,
- .import-php .updating-message:before,
- .button.updating-message:before,
- .button.updated-message:before,
- .button.installed:before,
- .button.installing:before {
- display: inline-block;
- font: normal 20px/1 'dashicons';
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- vertical-align: top;
- }
- .wrap .notice,
- .wrap div.updated,
- .wrap div.error,
- .media-upload-form .notice,
- .media-upload-form div.error {
- margin: 5px 0 15px;
- }
- .wrap #templateside .notice {
- display: block;
- margin: 0;
- padding: 5px 8px;
- font-weight: 600;
- text-decoration: none;
- }
- .wrap #templateside span.notice {
- margin-left: -12px;
- }
- #templateside li.notice a {
- padding: 0;
- }
- /* Update icon. */
- .update-message p:before,
- .updating-message p:before,
- .import-php .updating-message:before,
- .button.updating-message:before,
- .button.installing:before {
- color: #f56e28;
- content: "\f463";
- }
- /* Spins the update icon. */
- .updating-message p:before,
- .import-php .updating-message:before,
- .button.updating-message:before,
- .button.installing:before {
- animation: rotation 2s infinite linear;
- }
- /* Updated icon (check mark). */
- .updated-message p:before,
- .installed p:before,
- .button.updated-message:before {
- color: #79ba49;
- content: "\f147";
- }
- /* Error icon. */
- .update-message.notice-error p:before {
- color: #dc3232;
- content: "\f534";
- }
- .wrap .notice p:before,
- .import-php .updating-message:before {
- margin-right: 6px;
- vertical-align: bottom;
- }
- #update-nag,
- .update-nag {
- display: inline-block;
- line-height: 1.4;
- padding: 11px 15px;
- font-size: 14px;
- text-align: left;
- margin: 25px 20px 0 2px;
- background-color: #fff;
- border-left: 4px solid #ffba00;
- box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1);
- }
- ul#dismissed-updates {
- display: none;
- }
- #dismissed-updates li > p {
- margin-top: 0;
- }
- #dismiss,
- #undismiss {
- margin-left: 0.5em;
- }
- form.upgrade {
- margin-top: 8px;
- }
- form.upgrade .hint {
- font-style: italic;
- font-size: 85%;
- margin: -0.5em 0 2em 0;
- }
- .update-php .spinner {
- float: none;
- margin: -4px 0;
- }
- #ajax-loading,
- .ajax-loading,
- .ajax-feedback,
- .imgedit-wait-spin,
- .list-ajax-loading { /* deprecated */
- visibility: hidden;
- }
- #ajax-response.alignleft {
- margin-left: 2em;
- }
- .button.updating-message:before,
- .button.updated-message:before,
- .button.installed:before,
- .button.installing:before {
- margin: 3px 5px 0 -2px;
- }
- .button-primary.updating-message:before {
- color: #fff;
- }
- .button-primary.updated-message:before {
- color: #66c6e4;
- }
- .button.updated-message {
- transition-property: border, background, color;
- transition-duration: .05s;
- transition-timing-function: ease-in-out;
- }
- @media aural {
- .wrap .notice p:before,
- .button.installing:before,
- .button.installed:before,
- .update-message p:before {
- speak: none;
- }
- }
- /* @todo: this does not need its own section anymore */
- /*------------------------------------------------------------------------------
- 6.0 - Admin Header
- ------------------------------------------------------------------------------*/
- #adminmenu a,
- #taglist a,
- #catlist a {
- text-decoration: none;
- }
- /*------------------------------------------------------------------------------
- 6.1 - Screen Options Tabs
- ------------------------------------------------------------------------------*/
- #screen-options-wrap,
- #contextual-help-wrap {
- margin: 0;
- padding: 8px 20px 12px;
- position: relative;
- }
- #contextual-help-wrap {
- overflow: auto;
- margin-left: 0 !important;
- }
- #screen-meta-links {
- float: right;
- margin: 0 20px 0 0;
- }
- /* screen options and help tabs revert */
- #screen-meta {
- display: none;
- margin: 0 20px -1px 0px;
- position: relative;
- background-color: #fff;
- border: 1px solid #ccd0d4;
- border-top: none;
- box-shadow: 0 0 0 transparent;
- }
- #screen-options-link-wrap,
- #contextual-help-link-wrap {
- float: left;
- margin: 0 0 0 6px;
- }
- #screen-meta-links .screen-meta-toggle {
- position: relative;
- top: 0;
- }
- #screen-meta-links .show-settings {
- border: 1px solid #ccd0d4;
- border-top: none;
- height: auto;
- margin-bottom: 0;
- padding: 3px 6px 3px 16px;
- background: #fff;
- border-radius: 0 0 4px 4px;
- color: #72777c;
- line-height: 1.7;
- box-shadow: 0 0 0 transparent;
- transition: box-shadow 0.1s linear;
- }
- #screen-meta-links .show-settings:hover,
- #screen-meta-links .show-settings:active,
- #screen-meta-links .show-settings:focus {
- color: #32373c;
- }
- #screen-meta-links .show-settings:focus {
- border-color: #5b9dd9;
- box-shadow: 0 0 3px rgba(0, 115, 170, 0.8);
- }
- #screen-meta-links .show-settings:active {
- transform: none;
- }
- #screen-meta-links .show-settings:after {
- right: 0;
- content: "\f140";
- font: normal 20px/1 dashicons;
- speak: none;
- display: inline-block;
- padding: 0 5px 0 0;
- bottom: 2px;
- position: relative;
- vertical-align: bottom;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-decoration: none !important;
- color: #72777c;
- }
- #screen-meta-links .screen-meta-active:after {
- content: "\f142";
- }
- /* end screen options and help tabs */
- .toggle-arrow {
- background-repeat: no-repeat;
- background-position: top left;
- background-color: transparent;
- height: 22px;
- line-height: 22px;
- display: block;
- }
- .toggle-arrow-active {
- background-position: bottom left;
- }
- #screen-options-wrap h5, /* Back-compat for old plugins */
- #screen-options-wrap legend,
- #contextual-help-wrap h5 {
- margin: 0;
- padding: 8px 0;
- font-size: 13px;
- font-weight: 600;
- }
- .ie8 #screen-options-wrap legend {
- color: inherit;
- }
- .metabox-prefs label {
- display: inline-block;
- padding-right: 15px;
- line-height: 2.35;
- }
- #number-of-columns {
- display: inline-block;
- vertical-align: middle;
- line-height: 30px;
- }
- .metabox-prefs input[type=checkbox] {
- margin-top: 0;
- margin-right: 6px;
- }
- .metabox-prefs label input,
- .metabox-prefs label input[type=checkbox] {
- margin: -4px 5px 0 0;
- }
- .metabox-prefs .columns-prefs label input {
- margin: -1px 2px 0 0;
- }
- .metabox-prefs label a {
- display: none;
- }
- .metabox-prefs .screen-options input,
- .metabox-prefs .screen-options label {
- margin-top: 0;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .metabox-prefs .screen-options .screen-per-page {
- margin-right: 15px;
- }
- .metabox-prefs .screen-options label {
- line-height: 2.2;
- padding-right: 0;
- }
- .screen-options + .screen-options {
- margin-top: 10px;
- }
- .metabox-prefs .submit {
- margin-top: 1em;
- padding: 0;
- }
- /*------------------------------------------------------------------------------
- 6.2 - Help Menu
- ------------------------------------------------------------------------------*/
- #contextual-help-wrap {
- padding: 0;
- }
- #contextual-help-columns {
- position: relative;
- }
- #contextual-help-back {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 150px;
- right: 170px;
- border: 1px solid #ccd0d4;
- border-top: none;
- border-bottom: none;
- background: #f6fbfd;
- }
- #contextual-help-wrap.no-sidebar #contextual-help-back {
- right: 0;
- border-right-width: 0;
- border-bottom-right-radius: 2px;
- }
- .contextual-help-tabs {
- float: left;
- width: 150px;
- margin: 0;
- }
- .contextual-help-tabs ul {
- margin: 1em 0;
- }
- .contextual-help-tabs li {
- margin-bottom: 0;
- list-style-type: none;
- border-style: solid;
- border-width: 0 0 0 2px;
- border-color: transparent;
- }
- .contextual-help-tabs a {
- display: block;
- padding: 5px 5px 5px 12px;
- line-height: 1.4;
- text-decoration: none;
- border: 1px solid transparent;
- border-right: none;
- border-left: none;
- }
- .contextual-help-tabs a:hover {
- color: #32373c;
- }
- .contextual-help-tabs .active {
- padding: 0;
- margin: 0 -1px 0 0;
- border-left: 2px solid #00a0d2;
- background: #f6fbfd;
- box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02), 0 1px 0 rgba(0, 0, 0, 0.02);
- }
- .contextual-help-tabs .active a {
- border-color: #ccd0d4;
- color: #32373c;
- }
- .contextual-help-tabs-wrap {
- padding: 0 20px;
- overflow: auto;
- }
- .help-tab-content {
- display: none;
- margin: 0 22px 12px 0;
- line-height: 1.6;
- }
- .help-tab-content.active {
- display: block;
- }
- .help-tab-content ul li {
- list-style-type: disc;
- margin-left: 18px;
- }
- .contextual-help-sidebar {
- width: 150px;
- float: right;
- padding: 0 8px 0 12px;
- overflow: auto;
- }
- /*------------------------------------------------------------------------------
- 8.0 - Layout Blocks
- ------------------------------------------------------------------------------*/
- html.wp-toolbar {
- padding-top: 32px;
- box-sizing: border-box;
- }
- .widefat th,
- .widefat td {
- color: #555;
- }
- .widefat th,
- .widefat thead td,
- .widefat tfoot td {
- font-weight: 400;
- }
- .widefat thead tr th,
- .widefat thead tr td,
- .widefat tfoot tr th,
- .widefat tfoot tr td {
- color: #32373c;
- }
- .widefat td p {
- margin: 2px 0 0.8em;
- }
- .widefat p,
- .widefat ol,
- .widefat ul {
- color: #32373c;
- }
- .widefat .column-comment p {
- margin: 0.6em 0;
- }
- .widefat .column-comment ul {
- list-style: initial;
- margin-left: 2em;
- }
- /* Screens with postboxes */
- .postbox-container {
- float: left;
- }
- .postbox-container .meta-box-sortables {
- box-sizing: border-box;
- }
- #wpbody-content .metabox-holder {
- padding-top: 10px;
- }
- .metabox-holder .postbox-container .empty-container {
- border: 3px dashed #b4b9be;
- height: 250px;
- position: relative;
- }
- .metabox-holder .postbox-container .empty-container:after {
- content: attr(data-emptystring);
- margin: auto;
- position: absolute;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- height: 1em;
- width: 200px;
- text-align: center;
- color: #ccc;
- font-size: 18px;
- display: none;
- }
- .metabox-holder.columns-1 .postbox-container .empty-container,
- .columns-2 #postbox-container-3 .empty-container,
- .columns-2 #postbox-container-4 .empty-container,
- .columns-3 #postbox-container-4 .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
- #post-body-content {
- width: 100%;
- min-width: 463px;
- float: left;
- }
- #post-body.columns-2 #postbox-container-1 {
- float: right;
- margin-right: -300px;
- width: 280px;
- }
- #post-body.columns-2 #side-sortables {
- min-height: 250px;
- }
- /* one column on the dash */
- @media only screen and (max-width: 799px) {
- #wpbody-content .metabox-holder .postbox-container .empty-container {
- border: 0 none;
- height: 0;
- min-height: 0;
- }
- }
- .js .widget .widget-top,
- .js .postbox .hndle {
- cursor: move;
- }
- .js .widget .widget-top.is-non-sortable,
- .js .postbox .hndle.is-non-sortable {
- cursor: auto;
- }
- .hndle a {
- font-size: 11px;
- font-weight: 400;
- }
- .postbox .handlediv {
- display: none;
- float: right;
- width: 36px;
- height: 36px;
- margin: 0;
- padding: 0;
- border: 0;
- background: none;
- cursor: pointer;
- }
- .js .postbox .handlediv {
- display: block;
- }
- .sortable-placeholder {
- border: 1px dashed #b4b9be;
- margin-bottom: 20px;
- }
- .postbox,
- .stuffbox {
- margin-bottom: 20px;
- padding: 0;
- line-height: 1;
- }
- /* user-select is not a part of the CSS standard - may change behavior in the future */
- .postbox .hndle,
- .stuffbox .hndle {
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .postbox .inside {
- padding: 0 12px 12px;
- line-height: 1.4;
- font-size: 13px;
- }
- .stuffbox .inside {
- padding: 0;
- line-height: 1.4;
- font-size: 13px;
- margin-top: 0;
- }
- .postbox .inside {
- margin: 11px 0;
- position: relative;
- }
- .postbox .inside > p:last-child,
- .rss-widget ul li:last-child {
- margin-bottom: 1px !important;
- }
- .postbox.closed h3 {
- border: none;
- box-shadow: none;
- }
- .postbox table.form-table {
- margin-bottom: 0;
- }
- .postbox table.widefat {
- box-shadow: none;
- }
- .temp-border {
- border: 1px dotted #ccc;
- }
- .columns-prefs label {
- padding: 0 10px 0 0;
- }
- /* @todo: what is this doing here */
- #dashboard_right_now .versions .b,
- #post-status-display,
- #post-visibility-display,
- #adminmenu .wp-submenu li.current,
- #adminmenu .wp-submenu li.current a,
- #adminmenu .wp-submenu li.current a:hover,
- .media-item .percent,
- .plugins .name,
- #pass-strength-result.strong,
- #pass-strength-result.short,
- #ed_reply_toolbar #ed_reply_strong,
- .item-controls .item-order a,
- .feature-filter .feature-name {
- font-weight: 600;
- }
- /*------------------------------------------------------------------------------
- 21.0 - Admin Footer
- ------------------------------------------------------------------------------*/
- #wpfooter {
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 10px 20px;
- color: #555d66;
- }
- #wpfooter p {
- font-size: 13px;
- margin: 0;
- line-height: 1.55;
- }
- #footer-thankyou {
- font-style: italic;
- }
- /*------------------------------------------------------------------------------
- 25.0 - Tabbed Admin Screen Interface (Experimental)
- ------------------------------------------------------------------------------*/
- .nav-tab {
- float: left;
- border: 1px solid #ccc;
- border-bottom: none;
- margin-left: 0.5em; /* half the font size so set the font size properly */
- padding: 5px 10px;
- font-size: 14px;
- line-height: 1.71428571;
- font-weight: 600;
- background: #e5e5e5;
- color: #555;
- text-decoration: none;
- white-space: nowrap;
- }
- h3 .nav-tab, /* Back-compat for pre-4.4 */
- .nav-tab-small .nav-tab {
- padding: 5px 14px;
- font-size: 12px;
- line-height: 1.33;
- }
- .nav-tab:hover,
- .nav-tab:focus {
- background-color: #fff;
- color: #444;
- }
- .nav-tab-active,
- .nav-tab:focus:active {
- box-shadow: none;
- }
- .nav-tab-active {
- margin-bottom: -1px;
- color: #444;
- }
- .nav-tab-active,
- .nav-tab-active:hover,
- .nav-tab-active:focus,
- .nav-tab-active:focus:active {
- border-bottom: 1px solid #f1f1f1;
- background: #f1f1f1;
- color: #000;
- }
- h1.nav-tab-wrapper, /* Back-compat for pre-4.4 */
- .wrap h2.nav-tab-wrapper, /* higher specificity to override .wrap > h2:first-child */
- .nav-tab-wrapper {
- border-bottom: 1px solid #ccc;
- margin: 0;
- padding-top: 9px;
- padding-bottom: 0;
- line-height: inherit;
- }
- /* Back-compat for plugins. Deprecated. Use .wp-clearfix instead. */
- .nav-tab-wrapper:not(.wp-clearfix):after {
- content: "";
- display: table;
- clear: both;
- }
- .ie8 .nav-tab-wrapper {
- /* contain floats establishing a new block formatting context */
- display: inline-block;
- width: 100%;
- vertical-align: top;
- }
- /*------------------------------------------------------------------------------
- 26.0 - Misc
- ------------------------------------------------------------------------------*/
- .spinner {
- background: url(../images/spinner.gif) no-repeat;
- background-size: 20px 20px;
- display: inline-block;
- visibility: hidden;
- float: right;
- vertical-align: middle;
- opacity: 0.7;
- filter: alpha(opacity=70);
- width: 20px;
- height: 20px;
- margin: 4px 10px 0;
- }
- .spinner.is-active,
- .loading-content .spinner {
- visibility: visible;
- }
- #template > div {
- margin-right: 16em;
- }
- #template .notice {
- margin-top: 1em;
- margin-right: 3%;
- }
- #template .notice p {
- width: auto;
- }
- #template .submit .spinner {
- float: none;
- }
- .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
- .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */
- .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
- .metabox-holder h2.hndle {
- font-size: 14px;
- padding: 8px 12px;
- margin: 0;
- line-height: 1.4;
- }
- /* Back-compat for nav-menus screen */
- .nav-menus-php .metabox-holder h3 {
- padding: 10px 10px 11px 14px;
- line-height: 1.5;
- }
- #templateside ul li a {
- text-decoration: none;
- }
- .plugin-install #description,
- .plugin-install-network #description {
- width: 60%;
- }
- table .vers,
- table .column-visible,
- table .column-rating {
- text-align: left;
- }
- .attention,
- .error-message {
- color: #dc3232;
- font-weight: 600;
- }
- /* Scrollbar fix for bulk upgrade iframe */
- body.iframe {
- height: 98%;
- }
- /* Upgrader styles, Specific to Language Packs */
- .lp-show-latest p {
- display: none;
- }
- .lp-show-latest p:last-child,
- .lp-show-latest .lp-error p {
- display: block;
- }
- /* - Only used once or twice in all of WP - deprecate for global style
- ------------------------------------------------------------------------------*/
- .media-icon {
- width: 62px; /* icon + border */
- text-align: center;
- }
- .media-icon img {
- border: 1px solid #e5e5e5;
- border: 1px solid rgba(0, 0, 0, 0.07);
- }
- #howto {
- font-size: 11px;
- margin: 0 5px;
- display: block;
- }
- .importers {
- font-size: 16px;
- width: auto;
- }
- .importers td {
- padding-right: 14px;
- line-height: 1.4;
- }
- .importers .import-system {
- max-width: 250px;
- }
- .importers td.desc {
- max-width: 500px;
- }
- .importer-title,
- .importer-desc,
- .importer-action {
- display: block;
- }
- .importer-title {
- color: #000;
- font-size: 14px;
- font-weight: 400;
- margin-bottom: .2em;
- }
- .importer-action {
- line-height: 1.55; /* Same as with .updating-message */
- color: #555;
- margin-bottom: 1em;
- }
- #post-body #post-body-content #namediv h3, /* Back-compat for pre-4.4 */
- #post-body #post-body-content #namediv h2 {
- margin-top: 0;
- }
- .edit-comment-author {
- color: #222;
- border-bottom: 1px solid #eee;
- }
- #namediv h3 label, /* Back-compat for pre-4.4 */
- #namediv h2 label {
- vertical-align: baseline;
- }
- #namediv table {
- width: 100%;
- }
- #namediv td.first {
- width: 10px;
- white-space: nowrap;
- }
- #namediv input {
- width: 98%;
- }
- #namediv p {
- margin: 10px 0;
- }
- #submitdiv h3 {
- margin-bottom: 0 !important;
- }
- /* - Used - but could/should be deprecated with a CSS reset
- ------------------------------------------------------------------------------*/
- .zerosize {
- height: 0;
- width: 0;
- margin: 0;
- border: 0;
- padding: 0;
- overflow: hidden;
- position: absolute;
- }
- br.clear {
- height: 2px;
- line-height: 0.15;
- }
- .checkbox {
- border: none;
- margin: 0;
- padding: 0;
- }
- fieldset {
- border: 0;
- padding: 0;
- margin: 0;
- }
- .post-categories {
- display: inline;
- margin: 0;
- padding: 0;
- }
- .post-categories li {
- display: inline;
- }
- /* Star Ratings - Back-compat for pre-3.8 */
- div.star-holder {
- position: relative;
- height: 17px;
- width: 100px;
- background: url(../images/stars.png?ver=20121108) repeat-x bottom left;
- }
- div.star-holder .star-rating {
- background: url(../images/stars.png?ver=20121108) repeat-x top left;
- height: 17px;
- float: left;
- }
- /* Star Ratings */
- .star-rating {
- white-space: nowrap;
- }
- .star-rating .star {
- display: inline-block;
- width: 20px;
- height: 20px;
- -webkit-font-smoothing: antialiased;
- font-size: 20px;
- line-height: 1;
- font-family: dashicons;
- text-decoration: inherit;
- font-weight: 400;
- font-style: normal;
- vertical-align: top;
- transition: color .1s ease-in;
- text-align: center;
- color: #ffb900;
- }
- .star-rating .star-full:before {
- content: "\f155";
- }
- .star-rating .star-half:before {
- content: "\f459";
- }
- .rtl .star-rating .star-half {
- transform: rotateY(180deg);
- }
- .star-rating .star-empty:before {
- content: "\f154";
- }
- div.action-links {
- font-weight: 400;
- margin: 6px 0 0;
- }
- /* Plugin install thickbox */
- #plugin-information {
- background: #fff;
- position: fixed;
- top: 0;
- right: 0;
- bottom: 0;
- left: 0;
- height: 100%;
- padding: 0;
- }
- #plugin-information-scrollable {
- overflow: auto;
- -webkit-overflow-scrolling: touch;
- height: 100%;
- }
- #plugin-information-title {
- padding: 0 26px;
- background: #f5f5f5;
- font-size: 22px;
- font-weight: 600;
- line-height: 2.4;
- position: relative;
- height: 56px;
- }
- #plugin-information-title.with-banner {
- margin-right: 0;
- height: 250px;
- background-size: cover;
- }
- #plugin-information-title h2 {
- font-size: 1em;
- font-weight: 600;
- padding: 0;
- margin: 0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- #plugin-information-title.with-banner h2 {
- position: relative;
- font-family: "Helvetica Neue", sans-serif;
- display: inline-block;
- font-size: 30px;
- line-height: 1.68;
- box-sizing: border-box;
- max-width: 100%;
- padding: 0 15px;
- margin-top: 174px;
- color: #fff;
- background: rgba(30, 30, 30, 0.9);
- text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
- box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
- border-radius: 8px;
- }
- #plugin-information-title div.vignette {
- display: none;
- }
- #plugin-information-title.with-banner div.vignette {
- position: absolute;
- display: block;
- top: 0;
- left: 0;
- height: 250px;
- width: 100%;
- background: transparent;
- box-shadow: inset 0 0 50px 4px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
- }
- #plugin-information-tabs {
- padding: 0 16px;
- position: relative;
- right: 0;
- left: 0;
- min-height: 36px;
- font-size: 0;
- z-index: 1;
- border-bottom: 1px solid #ddd;
- background: #f3f3f3;
- }
- #plugin-information-tabs a {
- position: relative;
- display: inline-block;
- padding: 9px 10px;
- margin: 0;
- height: 18px;
- line-height: 1.3;
- font-size: 14px;
- text-decoration: none;
- transition: none;
- }
- #plugin-information-tabs a.current {
- margin: 0 -1px -1px;
- background: #fff;
- border: 1px solid #ddd;
- border-bottom-color: #fff;
- padding-top: 8px;
- color: #32373c;
- }
- #plugin-information-tabs.with-banner a.current {
- border-top: none;
- padding-top: 9px;
- }
- #plugin-information-tabs a:active,
- #plugin-information-tabs a:focus {
- outline: none;
- }
- #plugin-information-content {
- overflow: hidden; /* equal height column trick */
- background: #fff;
- position: relative;
- top: 0;
- right: 0;
- left: 0;
- min-height: 100%;
- /* Height of title + tabs + install now */
- min-height: calc( 100% - 152px );
- }
- #plugin-information-content.with-banner {
- /* Height of banner + tabs + install now */
- min-height: calc( 100% - 346px );
- }
- #section-holder {
- position: relative;
- top: 0;
- right: 250px;
- bottom: 0;
- left: 0;
- margin-top: 10px;
- margin-right: 250px; /* FYI box */
- padding: 10px 26px;
- margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
- padding-bottom: 99999px; /* equal height column trick */
- }
- #section-holder .notice {
- margin: 5px 0 15px;
- }
- #section-holder .updated {
- margin: 16px 0;
- }
- #plugin-information .fyi {
- float: right;
- position: relative;
- top: 0;
- right: 0;
- padding: 16px;
- margin-bottom: -99939px; /* 60px less than the padding below to accommodate footer */
- padding-bottom: 99999px; /* equal height column trick */
- width: 217px;
- border-left: 1px solid #ddd;
- background: #f3f3f3;
- color: #666;
- }
- #plugin-information .fyi strong {
- color: #444;
- }
- #plugin-information .fyi h3 {
- font-weight: 600;
- text-transform: uppercase;
- font-size: 12px;
- color: #666;
- margin: 24px 0 8px;
- }
- #plugin-information .fyi h2 {
- font-size: 0.9em;
- margin-bottom: 0;
- margin-right: 0;
- }
- #plugin-information .fyi ul {
- padding: 0;
- margin: 0;
- list-style: none;
- }
- #plugin-information .fyi li {
- margin: 0 0 10px;
- }
- #plugin-information .fyi-description {
- margin-top: 0;
- }
- #plugin-information .counter-container {
- margin: 3px 0;
- }
- #plugin-information .counter-label {
- float: left;
- margin-right: 5px;
- min-width: 55px;
- }
- #plugin-information .counter-back {
- height: 17px;
- width: 92px;
- background-color: #e5e5e5;
- float: left;
- }
- #plugin-information .counter-bar {
- height: 17px;
- background-color: #ffc733; /* slightly lighter than stars due to larger expanse */
- float: left;
- }
- #plugin-information .counter-count {
- margin-left: 5px;
- }
- #plugin-information .fyi ul.contributors {
- margin-top: 10px;
- }
- #plugin-information .fyi ul.contributors li {
- display: inline-block;
- margin-right: 8px;
- vertical-align: middle;
- }
- #plugin-information .fyi ul.contributors li {
- display: inline-block;
- margin-right: 8px;
- vertical-align: middle;
- }
- #plugin-information .fyi ul.contributors li img {
- vertical-align: middle;
- margin-right: 4px;
- }
- #plugin-information-footer {
- padding: 13px 16px;
- position: absolute;
- right: 0;
- bottom: 0;
- left: 0;
- height: 33px; /* 33+13+13+1=60 */
- border-top: 1px solid #ddd;
- background: #f3f3f3;
- }
- /* rtl:ignore */
- #plugin-information .section {
- direction: ltr;
- }
- /* rtl:ignore */
- #plugin-information .section ul,
- #plugin-information .section ol {
- list-style-type: disc;
- margin-left: 24px;
- }
- #plugin-information .section,
- #plugin-information .section p {
- font-size: 14px;
- line-height: 1.7;
- }
- #plugin-information #section-screenshots ol {
- list-style: none;
- margin: 0;
- }
- #plugin-information #section-screenshots li img {
- vertical-align: text-top;
- margin-top: 16px;
- max-width: 100%;
- width: auto;
- height: auto;
- box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
- }
- /* rtl:ignore */
- #plugin-information #section-screenshots li p {
- font-style: italic;
- padding-left: 20px;
- }
- #plugin-information pre {
- padding: 7px;
- overflow: auto;
- border: 1px solid #ccc;
- }
- #plugin-information blockquote {
- border-left: 2px solid #ddd;
- color: #666;
- font-style: italic;
- margin: 1em 0;
- padding: 0 0 0 1em;
- }
- /* rtl:ignore */
- #plugin-information .review {
- overflow: hidden; /* clearfix */
- width: 100%;
- margin-bottom: 20px;
- border-bottom: 1px solid #e5e5e5;
- }
- #plugin-information .review-title-section {
- overflow: hidden; /* clearfix */
- }
- /* rtl:ignore */
- #plugin-information .review-title-section h4 {
- display: inline-block;
- float: left;
- margin: 0 6px 0 0;
- }
- #plugin-information .reviewer-info p {
- clear: both;
- margin: 0;
- padding-top: 2px;
- }
- /* rtl:ignore */
- #plugin-information .reviewer-info .avatar {
- float: left;
- margin: 4px 6px 0 0;
- }
- /* rtl:ignore */
- #plugin-information .reviewer-info .star-rating {
- float: left;
- }
- /* rtl:ignore */
- #plugin-information .review-meta {
- float: left;
- margin-left: 0.75em;
- }
- /* rtl:ignore */
- #plugin-information .review-body {
- float: left;
- width: 100%;
- }
- .plugin-version-author-uri {
- font-size: 13px;
- }
- /* For non-js plugin installation screen ticket #36430. */
- .update-php .button.button-primary {
- margin-right: 1em;
- }
- @media screen and (max-width: 771px) {
- #plugin-information-title.with-banner {
- height: 100px;
- }
- #plugin-information-title.with-banner h2 {
- margin-top: 30px;
- font-size: 20px;
- line-height: 2;
- max-width: 85%;
- }
- #plugin-information-title.with-banner div.vignette {
- height: 100px;
- }
- #plugin-information-tabs {
- overflow: hidden; /* clearfix */
- padding: 0;
- height: auto; /* let tabs wrap */
- }
- #plugin-information-tabs a.current {
- margin-bottom: 0;
- border-bottom: none;
- }
- #plugin-information .fyi {
- float: none;
- border: 1px solid #ddd;
- position: static;
- width: auto;
- margin: 26px 26px 0;
- padding-bottom: 0; /* reset from the two column height fix */
- }
- #section-holder {
- position: static;
- margin: 0;
- padding-bottom: 70px; /* reset from the two column height fix, plus accommodate footer */
- }
- #plugin-information .fyi h3,
- #plugin-information .fyi small {
- display: none;
- }
- #plugin-information-footer {
- padding: 12px 16px 0;
- height: 46px;
- }
- }
- /* Thickbox for the Plugin details modal. */
- #TB_window.plugin-details-modal {
- background: #fcfcfc;
- }
- #TB_window.plugin-details-modal.thickbox-loading:before {
- content: "";
- display: block;
- width: 20px;
- height: 20px;
- position: absolute;
- left: 50%;
- top: 50%;
- z-index: -1;
- margin: -10px 0 0 -10px;
- background: #fcfcfc url(../images/spinner.gif) no-repeat center;
- background-size: 20px 20px;
- transform: translateZ(0);
- }
- @media print,
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
- #TB_window.plugin-details-modal.thickbox-loading:before {
- background-image: url(../images/spinner-2x.gif);
- }
- }
- .plugin-details-modal #TB_title {
- float: left;
- height: 1px;
- }
- .plugin-details-modal #TB_ajaxWindowTitle {
- display: none;
- }
- .plugin-details-modal #TB_closeWindowButton {
- left: auto;
- right: -30px;
- color: #eee;
- }
- .plugin-details-modal #TB_closeWindowButton:hover,
- .plugin-details-modal #TB_closeWindowButton:focus {
- color: #00a0d2;
- outline: none;
- box-shadow: none;
- }
- .plugin-details-modal .tb-close-icon {
- display: none;
- }
- .plugin-details-modal #TB_closeWindowButton:after {
- content: "\f335";
- font: normal 32px/29px 'dashicons';
- speak: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- /* move plugin install close icon to top on narrow screens */
- @media screen and (max-width: 830px) {
- .plugin-details-modal #TB_closeWindowButton {
- right: 0;
- top: -30px;
- }
- }
- /* @todo: move this. */
- img {
- border: none;
- }
- /* Metabox collapse arrow indicators */
- .sidebar-name .toggle-indicator:before,
- .js .meta-box-sortables .postbox .toggle-indicator:before,
- .bulk-action-notice .toggle-indicator:before,
- .privacy-text-box .toggle-indicator:before {
- content: "\f142";
- display: inline-block;
- font: normal 20px/1 dashicons;
- speak: none;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-decoration: none !important;
- }
- .js .widgets-holder-wrap.closed .toggle-indicator:before,
- .js .meta-box-sortables .postbox.closed .handlediv .toggle-indicator:before,
- .bulk-action-notice .bulk-action-errors-collapsed .toggle-indicator:before,
- .privacy-text-box.closed .toggle-indicator:before {
- content: "\f140";
- }
- .js .postbox .handlediv .toggle-indicator:before {
- margin-top: 4px;
- width: 20px;
- border-radius: 50%;
- text-indent: -1px; /* account for the dashicon alignment */
- }
- .rtl.js .postbox .handlediv .toggle-indicator:before {
- text-indent: 1px; /* account for the dashicon alignment */
- }
- .bulk-action-notice .toggle-indicator:before {
- line-height: 16px;
- vertical-align: top;
- color: #72777c;
- }
- .js .postbox .handlediv:focus {
- box-shadow: none;
- outline: none;
- }
- .js .postbox .handlediv:focus .toggle-indicator:before {
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- }
- /* @todo: appears to be Press This only and overridden */
- #photo-add-url-div input[type="text"] {
- width: 300px;
- }
- /* Theme/Plugin Editor */
- .alignleft h2 {
- margin: 0;
- }
- #template textarea {
- font-family: Consolas, Monaco, monospace;
- font-size: 13px;
- background: #f9f9f9;
- -moz-tab-size: 4;
- -o-tab-size: 4;
- tab-size: 4;
- }
- #template textarea,
- #template .CodeMirror {
- width: 100%;
- min-height: 60vh;
- height: calc( 100vh - 295px );
- border: 1px solid #ddd;
- box-sizing: border-box;
- }
- #templateside > h2 {
- padding-top: 6px;
- padding-bottom: 7px;
- margin: 0;
- }
- #templateside ol,
- #templateside ul {
- margin: 0;
- padding: 0;
- }
- #templateside > ul {
- box-sizing: border-box;
- margin-top: 0;
- overflow: auto;
- padding: 0;
- min-height: 60vh;
- height: calc(100vh - 295px);
- background-color: #f7f7f7;
- border: 1px solid #ddd;
- border-left: none;
- }
- #templateside ul ul {
- padding-left: 12px;
- }
- #templateside > ul > li > ul[role=group] {
- padding-left: 0;
- }
- /*
- * Styles for Theme and Plugin editors.
- */
- /* Hide collapsed items. */
- [role="treeitem"][aria-expanded="false"] > ul {
- display: none;
- }
- /* Use arrow dashicons for folder states, but hide from screen readers. */
- [role="treeitem"] span[aria-hidden] {
- display: inline;
- font-family: dashicons;
- font-size: 20px;
- position: absolute;
- pointer-events: none;
- }
- [role="treeitem"][aria-expanded="false"] > .folder-label .icon:after {
- content: "\f139";
- }
- [role="treeitem"][aria-expanded="true"] > .folder-label .icon:after {
- content: "\f140";
- }
- [role="treeitem"] .folder-label {
- display: block;
- padding: 3px 3px 3px 12px;
- cursor: pointer;
- }
- /* Remove outline, and create our own focus and hover styles */
- [role="treeitem"] {
- outline: 0;
- }
- [role="treeitem"] .folder-label.focus {
- color: #124964;
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- }
- [role="treeitem"].hover,
- [role="treeitem"] .folder-label.hover {
- background-color: #eaeaea;
- }
- .tree-folder {
- margin: 0;
- position: relative;
- }
- [role="treeitem"] li {
- position: relative;
- }
- /* Styles for folder indicators/depth */
- .tree-folder .tree-folder::after {
- content: "";
- display: block;
- position: absolute;
- left: 2px;
- border-left: 1px solid #ccc;
- top: -13px;
- bottom: 10px;
- }
- .tree-folder > li::before {
- content: "";
- position: absolute;
- display: block;
- border-left: 1px solid #ccc;
- left: 2px;
- top: -5px;
- height: 18px;
- width: 7px;
- border-bottom: 1px solid #ccc;
- }
- .tree-folder > li::after {
- content: "";
- position: absolute;
- display: block;
- border-left: 1px solid #ccc;
- left: 2px;
- bottom: -7px;
- top: 0;
- }
- /* current-file needs to adjustment for .notice styles */
- #templateside .current-file {
- margin: -4px 0 -2px;
- }
- .tree-folder > .current-file::before {
- left: 4px;
- height: 15px;
- width: 0px;
- border-left: none;
- top: 3px;
- }
- .tree-folder > .current-file::after {
- bottom: -4px;
- height: 7px;
- left: 2px;
- top: auto;
- }
- /* Lines shouldn't continue on last item */
- .tree-folder > li:last-child::after,
- .tree-folder li:last-child > .tree-folder::after {
- display: none;
- }
- #theme-plugin-editor-label {
- display: inline-block;
- margin-bottom: 1em;
- font-weight: 600;
- }
- /* rtl:ignore */
- #template textarea,
- #docs-list {
- direction: ltr;
- }
- .fileedit-sub #theme,
- .fileedit-sub #plugin {
- max-width: 40%;
- }
- .fileedit-sub .alignright {
- text-align: right;
- }
- #template p {
- width: 97%;
- }
- #file-editor-linting-error {
- margin-top: 1em;
- margin-bottom: 1em;
- }
- #file-editor-linting-error > .notice {
- margin: 0;
- display: inline-block;
- }
- #file-editor-linting-error > .notice > p {
- width: auto;
- }
- #template .submit {
- margin-top: 1em;
- padding: 0;
- }
- #template .submit input[type=submit][disabled] {
- cursor: not-allowed;
- }
- #templateside {
- float: right;
- width: 16em;
- word-wrap: break-word;
- }
- #postcustomstuff p.submit {
- margin: 0;
- }
- #templateside h4 {
- margin: 1em 0 0;
- }
- #templateside li {
- margin: 4px 0;
- }
- #templateside li:not(.howto) a,
- .theme-editor-php .highlight {
- display: block;
- padding: 3px 0 3px 12px;
- text-decoration: none;
- }
- #templateside li:not(.howto) > a:first-of-type {
- padding-top: 0;
- }
- #templateside li.howto {
- padding: 6px 12px 12px 12px;
- }
- .theme-editor-php .highlight {
- margin: -3px 3px -3px -12px;
- }
- #templateside .highlight {
- border: none;
- font-weight: 600;
- }
- .nonessential {
- color: #666;
- font-size: 11px;
- font-style: italic;
- padding-left: 12px;
- }
- #documentation {
- margin-top: 10px;
- }
- #documentation label {
- line-height: 1.8;
- vertical-align: baseline;
- font-weight: 600;
- }
- .fileedit-sub {
- padding: 10px 0 8px;
- line-height: 180%;
- }
- #file-editor-warning .file-editor-warning-content {
- margin: 25px;
- }
- /* @todo: can we use a common class for these? */
- .nav-menus-php .item-edit:before,
- .widget-top .widget-action .toggle-indicator:before,
- .control-section .accordion-section-title:after,
- .accordion-section-title:after {
- content: "\f140";
- font: normal 20px/1 dashicons;
- speak: none;
- display: block;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-decoration: none !important;
- }
- .widget-top .widget-action .toggle-indicator:before {
- padding: 1px 2px 1px 0px;
- border-radius: 50%;
- }
- .handlediv,
- .postbox .handlediv.button-link,
- .item-edit,
- .toggle-indicator,
- .accordion-section-title:after {
- color: #72777c;
- }
- .widget-action {
- color: #555d66; /* #fafafa background in the Widgets screen */
- }
- .widget-top:hover .widget-action,
- .widget-action:focus,
- .handlediv:hover,
- .handlediv:focus,
- .postbox .handlediv.button-link:hover,
- .postbox .handlediv.button-link:focus,
- .item-edit:hover,
- .item-edit:focus,
- .sidebar-name:hover .toggle-indicator,
- .accordion-section-title:hover:after {
- color: #23282d;
- }
- .widget-top .widget-action:focus .toggle-indicator:before {
- box-shadow:
- 0 0 0 1px #5b9dd9,
- 0 0 2px 1px rgba(30, 140, 190, 0.8);
- }
- .control-section .accordion-section-title:after,
- .accordion-section-title:after {
- float: right;
- right: 20px;
- top: -2px;
- }
- .control-section.open .accordion-section-title:after,
- #customize-info.open .accordion-section-title:after,
- .nav-menus-php .menu-item-edit-active .item-edit:before,
- .widget.open .widget-top .widget-action .toggle-indicator:before,
- .widget.widget-in-question .widget-top .widget-action .toggle-indicator:before {
- content: "\f142";
- }
- /*!
- * jQuery UI Draggable/Sortable 1.11.4
- * http://jqueryui.com
- *
- * Copyright jQuery Foundation and other contributors
- * Released under the MIT license.
- * http://jquery.org/license
- */
- .ui-draggable-handle,
- .ui-sortable-handle {
- touch-action: none;
- }
- /* Accordion */
- .accordion-section {
- border-bottom: 1px solid #ddd;
- margin: 0;
- }
- .accordion-section.open .accordion-section-content,
- .no-js .accordion-section .accordion-section-content {
- display: block;
- }
- .accordion-section.open:hover {
- border-bottom-color: #ddd;
- }
- .accordion-section-content {
- display: none;
- padding: 10px 20px 15px;
- overflow: hidden;
- background: #fff;
- }
- .accordion-section-title {
- margin: 0;
- padding: 12px 15px 15px;
- position: relative;
- border-left: 1px solid #ddd;
- border-right: 1px solid #ddd;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
- .js .accordion-section-title {
- cursor: pointer;
- }
- .js .accordion-section-title:after {
- position: absolute;
- top: 12px;
- right: 10px;
- z-index: 1;
- }
- .accordion-section-title:focus {
- outline: none;
- }
- .accordion-section-title:hover:after,
- .accordion-section-title:focus:after {
- border-color: #a0a5aa transparent;
- }
- .cannot-expand .accordion-section-title {
- cursor: auto;
- }
- .cannot-expand .accordion-section-title:after {
- display: none;
- }
- .control-section .accordion-section-title,
- .customize-pane-child .accordion-section-title {
- border-left: none;
- border-right: none;
- padding: 10px 10px 11px 14px;
- line-height: 1.55;
- background: #fff;
- }
- .control-section .accordion-section-title:after,
- .customize-pane-child .accordion-section-title:after {
- top: calc(50% - 10px); /* Arrow height is 20px, so use half of that to vertically center */
- }
- .js .control-section:hover .accordion-section-title,
- .js .control-section .accordion-section-title:hover,
- .js .control-section.open .accordion-section-title,
- .js .control-section .accordion-section-title:focus {
- color: #23282d;
- background: #f5f5f5;
- }
- .control-section.open .accordion-section-title {
- /* When expanded */
- border-bottom: 1px solid #ddd;
- }
- /* Edit Site */
- .network-admin .edit-site-actions {
- margin-top: 0;
- }
- /* My Sites */
- .my-sites {
- display: block;
- overflow: auto;
- zoom: 1;
- }
- .my-sites li {
- display: block;
- padding: 8px 3%;
- min-height: 130px;
- margin: 0;
- }
- @media only screen and (max-width: 599px) {
- .my-sites li {
- min-height: 0;
- }
- }
- @media only screen and (min-width: 600px) {
- .my-sites.striped li {
- background-color: #fff;
- position: relative;
- }
- .my-sites.striped li:after {
- content: "";
- width: 1px;
- height: 100%;
- position: absolute;
- top: 0;
- right: 0;
- background: #ccc;
- }
- }
- @media only screen and (min-width: 600px) and (max-width: 699px) {
- .my-sites li{
- float: left;
- width: 44%;
- }
- .my-sites.striped li {
- background-color: #fff;
- }
- .my-sites.striped li:nth-of-type(2n+1) {
- clear: left;
- }
- .my-sites.striped li:nth-of-type(2n+2):after {
- content: none;
- }
- .my-sites li:nth-of-type(4n+1),
- .my-sites li:nth-of-type(4n+2) {
- background-color: #f9f9f9;
- }
- }
- @media only screen and (min-width: 700px) and (max-width: 1199px) {
- .my-sites li {
- float: left;
- width: 27.333333%;
- background-color: #fff;
- }
- .my-sites.striped li:nth-of-type(3n+3):after {
- content: none;
- }
- .my-sites li:nth-of-type(6n+1),
- .my-sites li:nth-of-type(6n+2),
- .my-sites li:nth-of-type(6n+3) {
- background-color: #f9f9f9;
- }
- }
- @media only screen and (min-width: 1200px) and (max-width: 1399px) {
- .my-sites li {
- float: left;
- width: 21%;
- padding: 8px 2%;
- background-color: #fff;
- }
- .my-sites.striped li:nth-of-type(4n+1) {
- clear: left;
- }
- .my-sites.striped li:nth-of-type(4n+4):after {
- content: none;
- }
- .my-sites li:nth-of-type(8n+1),
- .my-sites li:nth-of-type(8n+2),
- .my-sites li:nth-of-type(8n+3),
- .my-sites li:nth-of-type(8n+4) {
- background-color: #f9f9f9;
- }
- }
- @media only screen and (min-width: 1400px) and (max-width: 1599px) {
- .my-sites li {
- float: left;
- width: 16%;
- padding: 8px 2%;
- background-color: #fff;
- }
- .my-sites.striped li:nth-of-type(5n+1) {
- clear: left;
- }
- .my-sites.striped li:nth-of-type(5n+5):after {
- content: none;
- }
- .my-sites li:nth-of-type(10n+1),
- .my-sites li:nth-of-type(10n+2),
- .my-sites li:nth-of-type(10n+3),
- .my-sites li:nth-of-type(10n+4),
- .my-sites li:nth-of-type(10n+5) {
- background-color: #f9f9f9;
- }
- }
- @media only screen and (min-width: 1600px) {
- .my-sites li {
- float: left;
- width: 12.666666%;
- padding: 8px 2%;
- background-color: #fff;
- }
- .my-sites.striped li:nth-of-type(6n+1) {
- clear: left;
- }
- .my-sites.striped li:nth-of-type(6n+6):after {
- content: none;
- }
- .my-sites li:nth-of-type(12n+1),
- .my-sites li:nth-of-type(12n+2),
- .my-sites li:nth-of-type(12n+3),
- .my-sites li:nth-of-type(12n+4),
- .my-sites li:nth-of-type(12n+5),
- .my-sites li:nth-of-type(12n+6) {
- background-color: #f9f9f9;
- }
- }
- .my-sites li a {
- text-decoration: none;
- }
- /* =Media Queries
- -------------------------------------------------------------- */
- /**
- * HiDPI Displays
- */
- @media print,
- (-webkit-min-device-pixel-ratio: 1.25),
- (min-resolution: 120dpi) {
- /* Back-compat for pre-3.8 */
- div.star-holder,
- div.star-holder .star-rating {
- background: url(../images/stars-2x.png?ver=20121108) repeat-x bottom left;
- background-size: 21px 37px;
- }
- .spinner {
- background-image: url(../images/spinner-2x.gif);
- }
- /* @todo: evaluate - most of these were likely replaced by dashicons */
- .curtime #timestamp,
- #screen-meta-links a.show-settings,
- .widget-top .widget-action,
- .widget-top .widget-action:hover,
- .sidebar-name .toggle-indicator,
- .sidebar-name:hover .toggle-indicator,
- .meta-box-sortables .postbox:hover .handlediv,
- #bulk-titles div a,
- #bulk-titles div a:hover {
- background: none !important;
- }
- }
- @-ms-viewport {
- width: device-width;
- }
- @media screen and (max-width: 782px) {
- html.wp-toolbar {
- padding-top: 46px;
- }
- .screen-reader-shortcut:focus {
- top: -39px;
- }
- body {
- min-width: 240px;
- overflow-x: hidden;
- }
- body * {
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
- }
- #wpcontent {
- position: relative;
- margin-left: 0;
- padding-left: 10px;
- }
- #wpbody-content {
- padding-bottom: 100px;
- }
- .wrap {
- clear: both;
- margin-right: 12px;
- margin-left: 0;
- }
- /* categories */
- #col-left,
- #col-right {
- float: none;
- width: auto;
- }
- #col-left .col-wrap,
- #col-right .col-wrap {
- padding: 0;
- }
- /* Hidden Elements */
- #collapse-menu,
- .post-format-select {
- display: none !important;
- }
- .wrap h1.wp-heading-inline {
- margin-bottom: 0.5em;
- }
- .wrap .add-new-h2, /* deprecated */
- .wrap .add-new-h2:active, /* deprecated */
- .wrap .page-title-action,
- .wrap .page-title-action:active {
- padding: 10px 15px;
- font-size: 14px;
- white-space: nowrap;
- }
- /* Feedback Messages */
- .notice,
- .wrap div.updated,
- .wrap div.error,
- .media-upload-form div.error {
- margin: 20px 0 10px 0;
- padding: 5px 10px;
- font-size: 14px;
- line-height: 175%;
- }
- .wp-core-ui .notice.is-dismissible {
- padding-right: 46px;
- }
- .notice-dismiss {
- padding: 13px;
- }
- .wrap .icon32 + h2 {
- margin-top: -2px;
- }
- .wp-responsive-open #wpbody {
- right: -16em;
- }
- code {
- word-wrap: break-word;
- word-wrap: anywhere; /* Firefox. Allow breaking long words anywhere */
- word-break: break-word; /* Webkit: Treated similarly to word-wrap: break-word */
- }
- /* General Metabox */
- .postbox {
- font-size: 14px;
- }
- .metabox-holder h3.hndle, /* Back-compat for pre-4.4 */
- .metabox-holder .stuffbox > h3, /* Back-compat for pre-4.4 */
- .metabox-holder .postbox > h3, /* Back-compat for pre-4.4 */
- .metabox-holder h2 {
- padding: 12px;
- }
- .postbox .handlediv {
- margin-top: 3px;
- }
- /* Subsubsub Nav */
- .subsubsub {
- font-size: 16px;
- text-align: center;
- margin-bottom: 15px;
- }
- /* Theme/Plugin File Editor */
- #template textarea,
- #template .CodeMirror {
- box-sizing: border-box;
- }
- #templateside {
- float: none;
- width: auto;
- }
- #templateside > ul {
- border-left: 1px solid #ddd;
- }
- #templateside li {
- margin: 0;
- }
- #templateside li:not(.howto) a {
- display: block;
- padding: 5px;
- }
- #templateside li.howto {
- padding: 12px;
- }
- #templateside .highlight {
- padding: 5px;
- margin-left: -5px;
- margin-top: -5px;
- }
- #template > div,
- #template .notice {
- float: none;
- margin: 1em 0;
- width: auto;
- }
- #template .CodeMirror,
- #template textarea {
- width: 100%;
- }
- #templateside ul ul {
- padding-left: 1.5em;
- }
- [role="treeitem"] .folder-label {
- display: block;
- padding: 5px;
- }
- .tree-folder > li::before,
- .tree-folder > li::after,
- .tree-folder .tree-folder::after {
- left: -8px;
- }
- .tree-folder > li::before {
- top: 0px;
- height: 13px;
- }
- .tree-folder > .current-file::before {
- left: -5px;
- top: 7px;
- width: 4px;
- }
- .tree-folder > .current-file::after {
- height: 9px;
- left: -8px;
- }
- .wrap #templateside span.notice {
- margin-left: -5px;
- width: 100%;
- }
- .fileedit-sub .alignright {
- float: left;
- margin-top: 15px;
- width: 100%;
- text-align: left;
- }
- .fileedit-sub .alignright label {
- display: block;
- }
- .fileedit-sub #theme,
- .fileedit-sub #plugin {
- margin-left: 0;
- max-width: 70%;
- }
- .fileedit-sub input[type="submit"] {
- margin-bottom: 0px;
- padding: 4px 18px;
- }
- #documentation label[for="docs-list"] {
- display: block;
- }
- #documentation select[name="docs-list"] {
- margin-left: 0;
- max-width: 60%;
- }
- #documentation input[type="button"] {
- margin-bottom: 0;
- padding: 8px 18px;
- }
- #wpfooter {
- display: none;
- }
- #comments-form .checkforspam {
- display: none;
- }
- .edit-comment-author {
- margin: 2px 0 0;
- }
- .filter-drawer .filter-group-feature input,
- .filter-drawer .filter-group-feature label {
- line-height: 2.1;
- }
- .filter-drawer .filter-group-feature label {
- margin-left: 32px;
- }
- .wp-filter .button.drawer-toggle {
- font-size: 13px;
- line-height: 2;
- height: 28px;
- }
- /* Fix help tab columns for smaller screens */
- #screen-meta #contextual-help-wrap {
- overflow: visible;
- }
- #screen-meta #contextual-help-back,
- #screen-meta .contextual-help-sidebar {
- display: none;
- }
- #screen-meta .contextual-help-tabs {
- clear: both;
- width: 100%;
- float: none;
- }
- #screen-meta .contextual-help-tabs ul {
- margin: 0 0 1em;
- padding: 1em 0 0;
- }
- #screen-meta .contextual-help-tabs .active {
- margin: 0;
- }
- #screen-meta .contextual-help-tabs-wrap {
- clear: both;
- max-width: 100%;
- float: none;
- }
- #screen-meta-links {
- margin-bottom: 20px; /* Add margins beneath links for better spacing between boxes and elements */
- }
- .wp-filter .search-form input[type="search"] {
- font-size: 1rem;
- }
- }
- /* Smartphone */
- @media screen and (max-width: 600px) {
- /* Disable horizontal scroll when responsive menu is open
- since we push the main content off to the right. */
- #wpwrap.wp-responsive-open {
- overflow-x: hidden;
- }
- html.wp-toolbar {
- padding-top: 0;
- }
- .screen-reader-shortcut:focus {
- top: 7px;
- }
- #wpbody {
- padding-top: 46px;
- }
- /* Keep full-width boxes on Edit Post page from causing horizontal scroll */
- div#post-body.metabox-holder.columns-1 {
- overflow-x: hidden;
- }
- h1.nav-tab-wrapper,
- .wrap h2.nav-tab-wrapper,
- .nav-tab-wrapper {
- border-bottom: 0;
- }
- h1 .nav-tab,
- h2 .nav-tab,
- h3 .nav-tab,
- nav .nav-tab {
- margin: 10px 10px 0 0;
- border-bottom: 1px solid #ccc;
- }
- .nav-tab-active:hover,
- .nav-tab-active:focus,
- .nav-tab-active:focus:active {
- border-bottom: 1px solid #ccc;
- }
- .wp-filter .search-form input[type="search"] {
- width: 100%;
- }
- }
- @media screen and (max-width: 320px) {
- /* Prevent default center alignment and larger font for the Right Now widget when
- the network dashboard is viewed on a small mobile device. */
- #network_dashboard_right_now .subsubsub {
- font-size: 14px;
- text-align: left;
- }
- }
|