Brak opisu

edit.css 36KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. #poststuff {
  2. padding-top: 10px;
  3. min-width: 763px;
  4. }
  5. #poststuff #post-body {
  6. padding: 0;
  7. }
  8. #poststuff .postbox-container {
  9. width: 100%;
  10. }
  11. #poststuff #post-body.columns-2 {
  12. margin-right: 300px;
  13. }
  14. /*------------------------------------------------------------------------------
  15. 11.0 - Write/Edit Post Screen
  16. ------------------------------------------------------------------------------*/
  17. #show-comments {
  18. overflow: hidden;
  19. }
  20. #save-action .spinner,
  21. #show-comments a {
  22. float: left;
  23. }
  24. #show-comments .spinner {
  25. float: none;
  26. margin-top: 0;
  27. }
  28. #lost-connection-notice .spinner {
  29. visibility: visible;
  30. float: left;
  31. margin: 0 5px 0 0;
  32. }
  33. #titlediv {
  34. position: relative;
  35. }
  36. #titlediv label {
  37. cursor: text;
  38. }
  39. #titlediv div.inside {
  40. margin: 0;
  41. }
  42. #poststuff #titlewrap {
  43. border: 0;
  44. padding: 0;
  45. }
  46. #titlediv #title {
  47. padding: 3px 8px;
  48. font-size: 1.7em;
  49. line-height: 100%;
  50. height: 1.7em;
  51. width: 100%;
  52. outline: none;
  53. margin: 0 0 3px;
  54. background-color: #fff;
  55. }
  56. #titlediv #title-prompt-text {
  57. color: #646970;
  58. position: absolute;
  59. font-size: 1.7em;
  60. padding: 10px;
  61. pointer-events: none;
  62. }
  63. input#link_description,
  64. input#link_url {
  65. width: 100%;
  66. }
  67. #pending {
  68. background: 0 none;
  69. border: 0 none;
  70. padding: 0;
  71. font-size: 11px;
  72. margin-top: -1px;
  73. }
  74. #edit-slug-box,
  75. #comment-link-box {
  76. line-height: 1.84615384;
  77. min-height: 25px;
  78. margin-top: 5px;
  79. padding: 0 10px;
  80. color: #646970;
  81. }
  82. #edit-slug-box .cancel {
  83. margin-right: 10px;
  84. padding: 0;
  85. font-size: 11px;
  86. }
  87. #comment-link-box {
  88. margin: 5px 0;
  89. padding: 0 5px;
  90. }
  91. #editable-post-name-full {
  92. display: none;
  93. }
  94. #editable-post-name {
  95. font-weight: 600;
  96. }
  97. #editable-post-name input {
  98. font-size: 13px;
  99. font-weight: 400;
  100. height: 24px;
  101. margin: 0;
  102. width: 16em;
  103. }
  104. .postarea h3 label {
  105. float: left;
  106. }
  107. body.post-new-php .submitbox .submitdelete {
  108. display: none;
  109. }
  110. .submitbox .submit a:hover {
  111. text-decoration: underline;
  112. }
  113. .submitbox .submit input {
  114. margin-bottom: 8px;
  115. margin-right: 4px;
  116. padding: 6px;
  117. }
  118. #post-status-select {
  119. margin-top: 3px;
  120. }
  121. /* Post Screen */
  122. /* Only highlight drop zones when dragging and only in the 2 columns layout. */
  123. .is-dragging-metaboxes .metabox-holder .postbox-container .meta-box-sortables {
  124. outline: 3px dashed #646970;
  125. /* Prevent margin on the child from collapsing with margin on the parent. */
  126. display: flow-root;
  127. /*
  128. * This min-height is meant to limit jumpiness while dragging. It's equivalent
  129. * to the minimum height of the sortable-placeholder which is given by the height
  130. * of a collapsed post box (36px + 1px top and bottom borders) + the placeholder
  131. * bottom margin (20px) + 2 additional pixels to compensate browsers rounding.
  132. */
  133. min-height: 60px;
  134. margin-bottom: 20px;
  135. }
  136. .postbox {
  137. position: relative;
  138. min-width: 255px;
  139. border: 1px solid #c3c4c7;
  140. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  141. background: #fff;
  142. }
  143. #trackback_url {
  144. width: 99%;
  145. }
  146. #normal-sortables .postbox .submit {
  147. background: transparent none;
  148. border: 0 none;
  149. float: right;
  150. padding: 0 12px;
  151. margin: 0;
  152. }
  153. .category-add input[type="text"],
  154. .category-add select {
  155. width: 100%;
  156. max-width: 260px;
  157. vertical-align: baseline;
  158. }
  159. #side-sortables .category-add input[type="text"],
  160. #side-sortables .category-add select {
  161. margin: 0 0 1em;
  162. }
  163. ul.category-tabs li,
  164. #side-sortables .add-menu-item-tabs li,
  165. .wp-tab-bar li {
  166. display: inline;
  167. line-height: 1.35;
  168. }
  169. .no-js .category-tabs li.hide-if-no-js {
  170. display: none;
  171. }
  172. .category-tabs a,
  173. #side-sortables .add-menu-item-tabs a,
  174. .wp-tab-bar a {
  175. text-decoration: none;
  176. }
  177. /* @todo: do these really need to be so specific? */
  178. #side-sortables .category-tabs .tabs a,
  179. #side-sortables .add-menu-item-tabs .tabs a,
  180. .wp-tab-bar .wp-tab-active a,
  181. #post-body ul.category-tabs li.tabs a,
  182. #post-body ul.add-menu-item-tabs li.tabs a {
  183. color: #2c3338;
  184. }
  185. .category-tabs {
  186. margin: 8px 0 5px;
  187. }
  188. /* Back-compat for pre-4.4 */
  189. #category-adder h4 {
  190. margin: 0;
  191. }
  192. .taxonomy-add-new {
  193. display: inline-block;
  194. margin: 10px 0;
  195. font-weight: 600;
  196. }
  197. #side-sortables .add-menu-item-tabs,
  198. .wp-tab-bar {
  199. margin-bottom: 3px;
  200. }
  201. #normal-sortables .postbox #replyrow .submit {
  202. float: none;
  203. margin: 0;
  204. padding: 5px 7px 10px;
  205. overflow: hidden;
  206. }
  207. #side-sortables .submitbox .submit input,
  208. #side-sortables .submitbox .submit .preview,
  209. #side-sortables .submitbox .submit a.preview:hover {
  210. border: 0 none;
  211. }
  212. /* @todo: make this a more generic class */
  213. ul.category-tabs,
  214. ul.add-menu-item-tabs,
  215. ul.wp-tab-bar {
  216. margin-top: 12px;
  217. }
  218. ul.category-tabs li,
  219. ul.add-menu-item-tabs li {
  220. border: solid 1px transparent;
  221. position: relative;
  222. }
  223. ul.category-tabs li.tabs,
  224. ul.add-menu-item-tabs li.tabs,
  225. .wp-tab-active {
  226. border: 1px solid #dcdcde;
  227. border-bottom-color: #fff;
  228. background-color: #fff;
  229. }
  230. ul.category-tabs li,
  231. ul.add-menu-item-tabs li,
  232. ul.wp-tab-bar li {
  233. padding: 3px 5px 6px;
  234. }
  235. #set-post-thumbnail {
  236. display: inline-block;
  237. max-width: 100%;
  238. }
  239. #postimagediv .inside img {
  240. max-width: 100%;
  241. height: auto;
  242. width: auto;
  243. vertical-align: top;
  244. background-image: linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7), linear-gradient(45deg, #c3c4c7 25%, transparent 25%, transparent 75%, #c3c4c7 75%, #c3c4c7);
  245. background-position: 0 0, 10px 10px;
  246. background-size: 20px 20px;
  247. }
  248. form#tags-filter {
  249. position: relative;
  250. }
  251. /* Global classes */
  252. .wp-hidden-children .wp-hidden-child,
  253. .ui-tabs-hide {
  254. display: none;
  255. }
  256. #post-body .tagsdiv #newtag {
  257. margin-right: 5px;
  258. width: 16em;
  259. }
  260. #side-sortables input#post_password {
  261. width: 94%
  262. }
  263. #side-sortables .tagsdiv #newtag {
  264. width: 68%;
  265. }
  266. #post-status-info {
  267. width: 100%;
  268. border-spacing: 0;
  269. border: 1px solid #c3c4c7;
  270. border-top: none;
  271. background-color: #f6f7f7;
  272. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  273. z-index: 999;
  274. }
  275. #post-status-info td {
  276. font-size: 12px;
  277. }
  278. .autosave-info {
  279. padding: 2px 10px;
  280. text-align: right;
  281. }
  282. #editorcontent #post-status-info {
  283. border: none;
  284. }
  285. #content-resize-handle {
  286. background: transparent url(../images/resize.gif) no-repeat scroll right bottom;
  287. width: 12px;
  288. cursor: row-resize;
  289. }
  290. /*rtl:ignore*/
  291. .rtl #content-resize-handle {
  292. background-image: url(../images/resize-rtl.gif);
  293. background-position: left bottom;
  294. }
  295. .wp-editor-expand #content-resize-handle {
  296. display: none;
  297. }
  298. #postdivrich #content {
  299. resize: none;
  300. }
  301. #wp-word-count {
  302. padding: 2px 10px;
  303. }
  304. #wp-content-editor-container {
  305. position: relative;
  306. }
  307. .wp-editor-expand #wp-content-editor-tools {
  308. z-index: 1000;
  309. border-bottom: 1px solid #c3c4c7;
  310. }
  311. .wp-editor-expand #wp-content-editor-container {
  312. box-shadow: none;
  313. margin-top: -1px;
  314. }
  315. .wp-editor-expand #wp-content-editor-container {
  316. border-bottom: 0 none;
  317. }
  318. .wp-editor-expand div.mce-statusbar {
  319. z-index: 1;
  320. }
  321. .wp-editor-expand #post-status-info {
  322. border-top: 1px solid #c3c4c7;
  323. }
  324. .wp-editor-expand div.mce-toolbar-grp {
  325. z-index: 999;
  326. }
  327. /* TinyMCE native fullscreen mode override */
  328. .mce-fullscreen #wp-content-wrap .mce-menubar,
  329. .mce-fullscreen #wp-content-wrap .mce-toolbar-grp,
  330. .mce-fullscreen #wp-content-wrap .mce-edit-area,
  331. .mce-fullscreen #wp-content-wrap .mce-statusbar {
  332. position: static !important;
  333. width: auto !important;
  334. padding: 0 !important;
  335. }
  336. .mce-fullscreen #wp-content-wrap .mce-statusbar {
  337. visibility: visible !important;
  338. }
  339. .mce-fullscreen #wp-content-wrap .mce-tinymce .mce-wp-dfw {
  340. display: none;
  341. }
  342. .post-php.mce-fullscreen #wpadminbar,
  343. .mce-fullscreen #wp-content-wrap .mce-wp-dfw {
  344. display: none;
  345. }
  346. /* End TinyMCE native fullscreen mode override */
  347. #wp-content-editor-tools {
  348. background-color: #f0f0f1;
  349. padding-top: 20px;
  350. }
  351. #poststuff #post-body.columns-2 #side-sortables {
  352. width: 280px;
  353. }
  354. #timestampdiv select {
  355. vertical-align: top;
  356. font-size: 12px;
  357. line-height: 2.33333333; /* 28px */
  358. }
  359. #aa, #jj, #hh, #mn {
  360. padding: 6px 1px;
  361. font-size: 12px;
  362. line-height: 1.16666666; /* 14px */
  363. }
  364. #jj, #hh, #mn {
  365. width: 2em;
  366. }
  367. #aa {
  368. width: 3.4em;
  369. }
  370. .curtime #timestamp {
  371. padding: 2px 0 1px 0;
  372. display: inline !important;
  373. height: auto !important;
  374. }
  375. #post-body .misc-pub-post-status:before,
  376. #post-body #visibility:before,
  377. .curtime #timestamp:before,
  378. #post-body .misc-pub-uploadedby:before,
  379. #post-body .misc-pub-uploadedto:before,
  380. #post-body .misc-pub-revisions:before,
  381. #post-body .misc-pub-response-to:before,
  382. #post-body .misc-pub-comment-status:before {
  383. color: #8c8f94;
  384. }
  385. #post-body .misc-pub-post-status:before,
  386. #post-body #visibility:before,
  387. .curtime #timestamp:before,
  388. #post-body .misc-pub-uploadedby:before,
  389. #post-body .misc-pub-uploadedto:before,
  390. #post-body .misc-pub-revisions:before,
  391. #post-body .misc-pub-response-to:before,
  392. #post-body .misc-pub-comment-status:before {
  393. font: normal 20px/1 dashicons;
  394. speak: never;
  395. display: inline-block;
  396. margin-left: -1px;
  397. padding-right: 3px;
  398. vertical-align: top;
  399. -webkit-font-smoothing: antialiased;
  400. -moz-osx-font-smoothing: grayscale;
  401. }
  402. #post-body .misc-pub-post-status:before,
  403. #post-body .misc-pub-comment-status:before {
  404. content: "\f173";
  405. }
  406. #post-body #visibility:before {
  407. content: "\f177";
  408. }
  409. .curtime #timestamp:before {
  410. content: "\f145";
  411. position: relative;
  412. top: -1px;
  413. }
  414. #post-body .misc-pub-uploadedby:before {
  415. content: "\f110";
  416. position: relative;
  417. top: -1px;
  418. }
  419. #post-body .misc-pub-uploadedto:before {
  420. content: "\f318";
  421. position: relative;
  422. top: -1px;
  423. }
  424. #post-body .misc-pub-revisions:before {
  425. content: "\f321";
  426. }
  427. #post-body .misc-pub-response-to:before {
  428. content: "\f101";
  429. }
  430. #timestampdiv {
  431. padding-top: 5px;
  432. line-height: 1.76923076;
  433. }
  434. #timestampdiv p {
  435. margin: 8px 0 6px;
  436. }
  437. #timestampdiv input {
  438. text-align: center;
  439. }
  440. .notification-dialog {
  441. position: fixed;
  442. top: 30%;
  443. max-height: 70%;
  444. left: 50%;
  445. width: 450px;
  446. margin-left: -225px;
  447. background: #fff;
  448. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  449. line-height: 1.5;
  450. z-index: 1000005;
  451. overflow-y: auto;
  452. }
  453. .notification-dialog-background {
  454. position: fixed;
  455. top: 0;
  456. left: 0;
  457. right: 0;
  458. bottom: 0;
  459. background: #000;
  460. opacity: 0.7;
  461. filter: alpha(opacity=70);
  462. z-index: 1000000;
  463. }
  464. #post-lock-dialog .post-locked-message,
  465. #post-lock-dialog .post-taken-over {
  466. margin: 25px;
  467. }
  468. #post-lock-dialog .post-locked-message a.button,
  469. #file-editor-warning .button {
  470. margin-right: 10px;
  471. }
  472. #post-lock-dialog .post-locked-avatar {
  473. float: left;
  474. margin: 0 20px 20px 0;
  475. }
  476. #post-lock-dialog .wp-tab-first {
  477. outline: 0;
  478. }
  479. #post-lock-dialog .locked-saving img {
  480. float: left;
  481. margin-right: 3px;
  482. }
  483. #post-lock-dialog.saving .locked-saving,
  484. #post-lock-dialog.saved .locked-saved {
  485. display: inline;
  486. }
  487. #excerpt {
  488. display: block;
  489. margin: 12px 0 0;
  490. height: 4em;
  491. width: 100%;
  492. }
  493. .tagchecklist {
  494. margin-left: 14px;
  495. font-size: 12px;
  496. overflow: auto;
  497. }
  498. .tagchecklist br {
  499. display: none;
  500. }
  501. .tagchecklist strong {
  502. margin-left: -8px;
  503. position: absolute;
  504. }
  505. .tagchecklist > li {
  506. float: left;
  507. margin-right: 25px;
  508. font-size: 13px;
  509. line-height: 1.8;
  510. cursor: default;
  511. max-width: 100%;
  512. overflow: hidden;
  513. text-overflow: ellipsis;
  514. }
  515. .tagchecklist .ntdelbutton {
  516. position: absolute;
  517. width: 24px;
  518. height: 24px;
  519. border: none;
  520. margin: 0 0 0 -19px;
  521. padding: 0;
  522. background: none;
  523. cursor: pointer;
  524. text-indent: 0;
  525. }
  526. #poststuff h3.hndle, /* Back-compat for pre-4.4 */
  527. #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */
  528. #poststuff h2 {
  529. font-size: 14px;
  530. padding: 8px 12px;
  531. margin: 0;
  532. line-height: 1.4;
  533. }
  534. #poststuff .stuffbox h2 {
  535. padding: 8px 10px;
  536. }
  537. #poststuff .stuffbox > h2 {
  538. border-bottom: 1px solid #f0f0f1;
  539. }
  540. #poststuff .inside {
  541. margin: 6px 0 0 0;
  542. }
  543. .link-php #poststuff .inside,
  544. .link-add-php #poststuff .inside {
  545. margin-top: 12px;
  546. }
  547. #poststuff .stuffbox .inside {
  548. margin: 0;
  549. }
  550. #poststuff .inside #parent_id,
  551. #poststuff .inside #page_template {
  552. max-width: 100%;
  553. }
  554. .post-attributes-label-wrapper {
  555. margin-bottom: 0.5em;
  556. }
  557. .post-attributes-label {
  558. vertical-align: baseline;
  559. font-weight: 600;
  560. }
  561. #post-visibility-select,
  562. #comment-status-radio {
  563. line-height: 1.5;
  564. margin-top: 3px;
  565. }
  566. #linksubmitdiv .inside, /* Old Link Manager back-compat. */
  567. #poststuff #submitdiv .inside {
  568. margin: 0;
  569. padding: 0;
  570. }
  571. #post-body-content,
  572. .edit-form-section {
  573. margin-bottom: 20px;
  574. }
  575. .wp_attachment_details .attachment-content-description {
  576. margin-top: 0.5385em;
  577. display: inline-block;
  578. min-height: 1.6923em;
  579. }
  580. /**
  581. * Privacy Settings section
  582. *
  583. * Note: This section includes selectors from
  584. * Site Health where duplicate styling is used.
  585. */
  586. /* General */
  587. .privacy-settings #wpcontent,
  588. .privacy-settings.auto-fold #wpcontent,
  589. .site-health #wpcontent,
  590. .site-health.auto-fold #wpcontent {
  591. padding-left: 0;
  592. }
  593. /* Emulates .wrap h1 styling */
  594. .privacy-settings-header h1,
  595. .health-check-header h1 {
  596. display: inline-block;
  597. font-weight: 600;
  598. margin: 0 0.8rem 1rem;
  599. font-size: 23px;
  600. padding: 9px 0 4px 0;
  601. line-height: 1.3;
  602. }
  603. /* Header */
  604. .privacy-settings-header,
  605. .health-check-header {
  606. text-align: center;
  607. margin: 0 0 1rem;
  608. background: #fff;
  609. border-bottom: 1px solid #dcdcde;
  610. }
  611. .privacy-settings-title-section,
  612. .health-check-title-section {
  613. display: flex;
  614. align-items: center;
  615. justify-content: center;
  616. clear: both;
  617. padding-top: 8px;
  618. }
  619. .privacy-settings-tabs-wrapper {
  620. /* IE 11 */
  621. display: -ms-inline-grid;
  622. -ms-grid-columns: 1fr 1fr;
  623. vertical-align: top;
  624. /* modern browsers */
  625. display: inline-grid;
  626. grid-template-columns: 1fr 1fr;
  627. }
  628. .privacy-settings-tab {
  629. display: block; /* IE 11 */
  630. text-decoration: none;
  631. color: inherit;
  632. padding: 0.5rem 1rem 1rem;
  633. margin: 0 1rem;
  634. transition: box-shadow 0.5s ease-in-out;
  635. }
  636. .privacy-settings-tab:nth-child(1),
  637. .health-check-tab:nth-child(1) {
  638. -ms-grid-column: 1; /* IE 11 */
  639. }
  640. .privacy-settings-tab:nth-child(2),
  641. .health-check-tab:nth-child(2) {
  642. -ms-grid-column: 2; /* IE 11 */
  643. }
  644. .privacy-settings-tab:focus,
  645. .health-check-tab:focus {
  646. color: #1d2327;
  647. outline: 1px solid #787c82;
  648. box-shadow: none;
  649. }
  650. .privacy-settings-tab.active,
  651. .health-check-tab.active {
  652. box-shadow: inset 0 -3px #3582c4;
  653. font-weight: 600;
  654. }
  655. /* Body */
  656. .privacy-settings-body,
  657. .health-check-body {
  658. max-width: 800px;
  659. margin: 0 auto;
  660. }
  661. .tools-privacy-policy-page th {
  662. min-width: 230px;
  663. }
  664. .hr-separator {
  665. margin-top: 20px;
  666. margin-bottom: 15px;
  667. }
  668. /* Accordions */
  669. .privacy-settings-accordion,
  670. .health-check-accordion {
  671. border: 1px solid #c3c4c7;
  672. }
  673. .privacy-settings-accordion-heading,
  674. .health-check-accordion-heading {
  675. margin: 0;
  676. border-top: 1px solid #c3c4c7;
  677. font-size: inherit;
  678. line-height: inherit;
  679. font-weight: 600;
  680. color: inherit;
  681. }
  682. .privacy-settings-accordion-heading:first-child,
  683. .health-check-accordion-heading:first-child {
  684. border-top: none;
  685. }
  686. .privacy-settings-accordion-trigger,
  687. .health-check-accordion-trigger {
  688. background: #fff;
  689. border: 0;
  690. color: #2c3338;
  691. cursor: pointer;
  692. display: flex;
  693. font-weight: 400;
  694. margin: 0;
  695. padding: 1em 3.5em 1em 1.5em;
  696. min-height: 46px;
  697. position: relative;
  698. text-align: left;
  699. width: 100%;
  700. align-items: center;
  701. justify-content: space-between;
  702. -webkit-user-select: auto;
  703. user-select: auto;
  704. }
  705. .privacy-settings-accordion-trigger:hover,
  706. .privacy-settings-accordion-trigger:active,
  707. .health-check-accordion-trigger:hover,
  708. .health-check-accordion-trigger:active {
  709. background: #f6f7f7;
  710. }
  711. .privacy-settings-accordion-trigger:focus,
  712. .health-check-accordion-trigger:focus {
  713. color: #1d2327;
  714. border: none;
  715. box-shadow: none;
  716. outline-offset: -1px;
  717. outline: 2px solid #2271b1;
  718. background-color: #f6f7f7;
  719. }
  720. .privacy-settings-accordion-trigger .title,
  721. .health-check-accordion-trigger .title {
  722. pointer-events: none;
  723. font-weight: 600;
  724. flex-grow: 1;
  725. }
  726. .privacy-settings-accordion-trigger .icon,
  727. .privacy-settings-view-read .icon,
  728. .health-check-accordion-trigger .icon,
  729. .site-health-view-passed .icon {
  730. border: solid #50575e;
  731. border-width: 0 2px 2px 0;
  732. height: 0.5rem;
  733. pointer-events: none;
  734. position: absolute;
  735. right: 1.5em;
  736. top: 50%;
  737. transform: translateY(-70%) rotate(45deg);
  738. width: 0.5rem;
  739. }
  740. .privacy-settings-accordion-trigger .badge,
  741. .health-check-accordion-trigger .badge {
  742. padding: 0.1rem 0.5rem 0.15rem;
  743. color: #2c3338;
  744. font-weight: 600;
  745. }
  746. .privacy-settings-accordion-trigger .badge {
  747. margin-left: 0.5rem;
  748. }
  749. .privacy-settings-accordion-trigger .badge.blue,
  750. .health-check-accordion-trigger .badge.blue {
  751. border: 1px solid #72aee6;
  752. }
  753. .privacy-settings-accordion-trigger .badge.orange,
  754. .health-check-accordion-trigger .badge.orange {
  755. border: 1px solid #dba617;
  756. }
  757. .privacy-settings-accordion-trigger .badge.red,
  758. .health-check-accordion-trigger .badge.red {
  759. border: 1px solid #e65054;
  760. }
  761. .privacy-settings-accordion-trigger .badge.green,
  762. .health-check-accordion-trigger .badge.green {
  763. border: 1px solid #00ba37;
  764. }
  765. .privacy-settings-accordion-trigger .badge.purple,
  766. .health-check-accordion-trigger .badge.purple {
  767. border: 1px solid #2271b1;
  768. }
  769. .privacy-settings-accordion-trigger .badge.gray,
  770. .health-check-accordion-trigger .badge.gray {
  771. border: 1px solid #c3c4c7;
  772. }
  773. .privacy-settings-accordion-trigger[aria-expanded="true"] .icon,
  774. .privacy-settings-view-passed[aria-expanded="true"] .icon,
  775. .health-check-accordion-trigger[aria-expanded="true"] .icon,
  776. .site-health-view-passed[aria-expanded="true"] .icon {
  777. transform: translateY(-30%) rotate(-135deg)
  778. }
  779. .privacy-settings-accordion-panel,
  780. .health-check-accordion-panel {
  781. margin: 0;
  782. padding: 1em 1.5em;
  783. background: #fff;
  784. }
  785. .privacy-settings-accordion-panel[hidden],
  786. .health-check-accordion-panel[hidden] {
  787. display: none;
  788. }
  789. .privacy-settings-accordion-panel a .dashicons,
  790. .health-check-accordion-panel a .dashicons {
  791. text-decoration: none;
  792. }
  793. .privacy-settings-accordion-actions {
  794. text-align: right;
  795. display: block;
  796. }
  797. .privacy-settings-accordion-actions .success {
  798. display: none;
  799. color: #008a20;
  800. padding-right: 1em;
  801. padding-top: 6px;
  802. }
  803. .privacy-settings-accordion-actions .success.visible {
  804. display: inline-block;
  805. }
  806. /* Suggested text for privacy policy */
  807. .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .wp-policy-help, /* For back-compat, see #49282 */
  808. .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-policy-tutorial,
  809. .privacy-settings-accordion-panel.hide-privacy-policy-tutorial .privacy-text-copy {
  810. display: none;
  811. }
  812. .privacy-settings-accordion-panel strong.wp-policy-help, /* For back-compat, see #49282 */
  813. .privacy-settings-accordion-panel strong.privacy-policy-tutorial {
  814. display: block;
  815. margin: 0 0 1em;
  816. }
  817. .privacy-text-copy span {
  818. pointer-events: none;
  819. }
  820. .privacy-settings-accordion-panel .wp-suggested-text > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
  821. .privacy-settings-accordion-panel .wp-suggested-text div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
  822. .privacy-settings-accordion-panel > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p),
  823. .privacy-settings-accordion-panel div > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6):not(div):not(.privacy-policy-tutorial):not(.wp-policy-help):not(.privacy-text-copy):not(span.success):not(.notice p) {
  824. margin: 0;
  825. padding: 1em;
  826. border-left: 2px solid #787c82;
  827. }
  828. /* Media queries */
  829. @media screen and (max-width: 782px) {
  830. .privacy-settings-body,
  831. .health-check-body {
  832. margin: 0 12px;
  833. width: auto;
  834. }
  835. .privacy-settings .notice,
  836. .site-health .notice {
  837. margin: 5px 10px 15px;
  838. }
  839. .privacy-settings .update-nag,
  840. .site-health .update-nag {
  841. margin-right: 10px;
  842. margin-left: 10px;
  843. }
  844. input#create-page {
  845. margin-top: 10px;
  846. }
  847. .wp-core-ui button.privacy-text-copy {
  848. white-space: normal;
  849. line-height: 1.8;
  850. }
  851. }
  852. @media only screen and (max-width: 1004px) {
  853. .privacy-settings-body,
  854. .health-check-body {
  855. margin: 0 22px;
  856. width: auto;
  857. }
  858. }
  859. /**
  860. * End Privacy Settings section
  861. */
  862. /*------------------------------------------------------------------------------
  863. 11.1 - Custom Fields
  864. ------------------------------------------------------------------------------*/
  865. #postcustomstuff thead th {
  866. padding: 5px 8px 8px;
  867. background-color: #f0f0f1;
  868. }
  869. #postcustom #postcustomstuff .submit {
  870. border: 0 none;
  871. float: none;
  872. padding: 0 8px 8px;
  873. }
  874. #side-sortables #postcustom #postcustomstuff .submit {
  875. margin: 0;
  876. padding: 0;
  877. }
  878. #side-sortables #postcustom #postcustomstuff #the-list textarea {
  879. height: 85px;
  880. }
  881. #side-sortables #postcustom #postcustomstuff td.left input,
  882. #side-sortables #postcustom #postcustomstuff td.left select,
  883. #side-sortables #postcustomstuff #newmetaleft a {
  884. margin: 3px 3px 0;
  885. }
  886. #postcustomstuff table {
  887. margin: 0;
  888. width: 100%;
  889. border: 1px solid #dcdcde;
  890. border-spacing: 0;
  891. background-color: #f6f7f7;
  892. }
  893. #postcustomstuff tr {
  894. vertical-align: top;
  895. }
  896. #postcustomstuff table input,
  897. #postcustomstuff table select,
  898. #postcustomstuff table textarea {
  899. width: 96%;
  900. margin: 8px;
  901. }
  902. #side-sortables #postcustomstuff table input,
  903. #side-sortables #postcustomstuff table select,
  904. #side-sortables #postcustomstuff table textarea {
  905. margin: 3px;
  906. }
  907. #postcustomstuff th.left,
  908. #postcustomstuff td.left {
  909. width: 38%;
  910. }
  911. #postcustomstuff .submit input {
  912. margin: 0;
  913. width: auto;
  914. }
  915. #postcustomstuff #newmetaleft a {
  916. display: inline-block;
  917. margin: 0 8px 8px;
  918. text-decoration: none;
  919. }
  920. .no-js #postcustomstuff #enternew {
  921. display: none;
  922. }
  923. #post-body-content .compat-attachment-fields {
  924. margin-bottom: 20px;
  925. }
  926. .compat-attachment-fields th {
  927. padding-top: 5px;
  928. padding-right: 10px;
  929. }
  930. /*------------------------------------------------------------------------------
  931. 11.3 - Featured Images
  932. ------------------------------------------------------------------------------*/
  933. #select-featured-image {
  934. padding: 4px 0;
  935. overflow: hidden;
  936. }
  937. #select-featured-image img {
  938. max-width: 100%;
  939. height: auto;
  940. margin-bottom: 10px;
  941. }
  942. #select-featured-image a {
  943. float: left;
  944. clear: both;
  945. }
  946. #select-featured-image .remove {
  947. display: none;
  948. margin-top: 10px;
  949. }
  950. .js #select-featured-image.has-featured-image .remove {
  951. display: inline-block;
  952. }
  953. .no-js #select-featured-image .choose {
  954. display: none;
  955. }
  956. /*------------------------------------------------------------------------------
  957. 11.4 - Post formats
  958. ------------------------------------------------------------------------------*/
  959. .post-format-icon::before {
  960. display: inline-block;
  961. vertical-align: middle;
  962. height: 20px;
  963. width: 20px;
  964. margin-top: -4px;
  965. margin-right: 7px;
  966. color: #dcdcde;
  967. font: normal 20px/1 dashicons;
  968. speak: never;
  969. -webkit-font-smoothing: antialiased;
  970. -moz-osx-font-smoothing: grayscale;
  971. }
  972. a.post-format-icon:hover:before {
  973. color: #135e96;
  974. }
  975. #post-formats-select {
  976. line-height: 2;
  977. }
  978. #post-formats-select .post-format-icon::before {
  979. top: 5px;
  980. }
  981. input.post-format {
  982. margin-top: 1px;
  983. }
  984. label.post-format-icon {
  985. margin-left: 0;
  986. padding: 2px 0;
  987. }
  988. .post-format-icon.post-format-standard::before {
  989. content: "\f109";
  990. }
  991. .post-format-icon.post-format-image::before {
  992. content: "\f128";
  993. }
  994. .post-format-icon.post-format-gallery::before {
  995. content: "\f161";
  996. }
  997. .post-format-icon.post-format-audio::before {
  998. content: "\f127";
  999. }
  1000. .post-format-icon.post-format-video::before {
  1001. content: "\f126";
  1002. }
  1003. .post-format-icon.post-format-chat::before {
  1004. content: "\f125";
  1005. }
  1006. .post-format-icon.post-format-status::before {
  1007. content: "\f130";
  1008. }
  1009. .post-format-icon.post-format-aside::before {
  1010. content: "\f123";
  1011. }
  1012. .post-format-icon.post-format-quote::before {
  1013. content: "\f122";
  1014. }
  1015. .post-format-icon.post-format-link::before {
  1016. content: "\f103";
  1017. }
  1018. /*------------------------------------------------------------------------------
  1019. 12.0 - Categories
  1020. ------------------------------------------------------------------------------*/
  1021. .category-adder {
  1022. margin-left: 120px;
  1023. padding: 4px 0;
  1024. }
  1025. .category-adder h4 {
  1026. margin: 0 0 8px;
  1027. }
  1028. #side-sortables .category-adder {
  1029. margin: 0;
  1030. }
  1031. .wp-tab-panel,
  1032. .categorydiv div.tabs-panel,
  1033. .customlinkdiv div.tabs-panel,
  1034. .posttypediv div.tabs-panel,
  1035. .taxonomydiv div.tabs-panel {
  1036. min-height: 42px;
  1037. max-height: 200px;
  1038. overflow: auto;
  1039. padding: 0 0.9em;
  1040. border: solid 1px #dcdcde;
  1041. background-color: #fff;
  1042. }
  1043. div.tabs-panel-active {
  1044. display: block;
  1045. }
  1046. div.tabs-panel-inactive {
  1047. display: none;
  1048. }
  1049. div.tabs-panel-active:focus {
  1050. box-shadow: inset 0 0 0 1px #4f94d4, inset 0 0 2px 1px rgba(79, 148, 212, 0.8);
  1051. outline: 0 none;
  1052. }
  1053. #front-page-warning,
  1054. #front-static-pages ul,
  1055. ul.export-filters,
  1056. .inline-editor ul.cat-checklist ul,
  1057. .categorydiv ul.categorychecklist ul,
  1058. .customlinkdiv ul.categorychecklist ul,
  1059. .posttypediv ul.categorychecklist ul,
  1060. .taxonomydiv ul.categorychecklist ul {
  1061. margin-left: 18px;
  1062. }
  1063. ul.categorychecklist li {
  1064. margin: 0;
  1065. padding: 0;
  1066. line-height: 1.69230769;
  1067. word-wrap: break-word;
  1068. }
  1069. .categorydiv .tabs-panel,
  1070. .customlinkdiv .tabs-panel,
  1071. .posttypediv .tabs-panel,
  1072. .taxonomydiv .tabs-panel {
  1073. border-width: 3px;
  1074. border-style: solid;
  1075. }
  1076. .form-wrap label {
  1077. display: block;
  1078. padding: 2px 0;
  1079. }
  1080. .form-field input[type="text"],
  1081. .form-field input[type="password"],
  1082. .form-field input[type="email"],
  1083. .form-field input[type="number"],
  1084. .form-field input[type="search"],
  1085. .form-field input[type="tel"],
  1086. .form-field input[type="url"],
  1087. .form-field textarea {
  1088. border-style: solid;
  1089. border-width: 1px;
  1090. width: 95%;
  1091. }
  1092. .form-field select,
  1093. .form-field p {
  1094. max-width: 95%;
  1095. }
  1096. p.description,
  1097. .form-wrap p {
  1098. margin: 2px 0 5px;
  1099. color: #646970;
  1100. }
  1101. p.help,
  1102. p.description,
  1103. span.description,
  1104. .form-wrap p {
  1105. font-size: 13px;
  1106. }
  1107. p.description code {
  1108. font-style: normal;
  1109. }
  1110. .form-wrap .form-field {
  1111. margin: 1em 0;
  1112. padding: 0;
  1113. }
  1114. .col-wrap h2 {
  1115. margin: 12px 0;
  1116. font-size: 1.1em;
  1117. }
  1118. .col-wrap p.submit {
  1119. margin-top: -10px;
  1120. }
  1121. .edit-term-notes {
  1122. margin-top: 2em;
  1123. }
  1124. /*------------------------------------------------------------------------------
  1125. 13.0 - Tags
  1126. ------------------------------------------------------------------------------*/
  1127. #poststuff .tagsdiv .ajaxtag {
  1128. margin-top: 1em;
  1129. }
  1130. #poststuff .tagsdiv .howto {
  1131. margin: 1em 0 6px 0;
  1132. }
  1133. .ajaxtag .newtag {
  1134. position: relative;
  1135. }
  1136. .tagsdiv .newtag {
  1137. width: 180px;
  1138. }
  1139. .tagsdiv .the-tags {
  1140. display: block;
  1141. height: 60px;
  1142. margin: 0 auto;
  1143. overflow: auto;
  1144. width: 260px;
  1145. }
  1146. #post-body-content .tagsdiv .the-tags {
  1147. margin: 0 5px;
  1148. }
  1149. p.popular-tags {
  1150. border: none;
  1151. line-height: 2em;
  1152. padding: 8px 12px 12px;
  1153. text-align: justify;
  1154. }
  1155. p.popular-tags a {
  1156. padding: 0 3px;
  1157. }
  1158. .tagcloud {
  1159. width: 97%;
  1160. margin: 0 0 40px;
  1161. text-align: justify;
  1162. }
  1163. .tagcloud h2 {
  1164. margin: 2px 0 12px;
  1165. }
  1166. #poststuff .inside .the-tagcloud {
  1167. margin: 5px 0 10px;
  1168. padding: 8px;
  1169. border: 1px solid #dcdcde;
  1170. line-height: 1.2;
  1171. word-spacing: 3px;
  1172. }
  1173. .the-tagcloud ul {
  1174. margin: 0;
  1175. }
  1176. .the-tagcloud ul li {
  1177. display: inline-block;
  1178. }
  1179. /* Back-compat styles from deprecated jQuery.suggest, see ticket #40260. */
  1180. .ac_results {
  1181. display: none;
  1182. margin: -1px 0 0;
  1183. padding: 0;
  1184. list-style: none;
  1185. position: absolute;
  1186. z-index: 10000;
  1187. border: 1px solid #4f94d4;
  1188. background-color: #fff;
  1189. }
  1190. .wp-customizer .ac_results {
  1191. z-index: 500000;
  1192. }
  1193. .ac_results li {
  1194. margin: 0;
  1195. padding: 5px 10px;
  1196. white-space: nowrap;
  1197. text-align: left;
  1198. }
  1199. .ac_results .ac_over,
  1200. .ac_over .ac_match {
  1201. background-color: #2271b1;
  1202. color: #fff;
  1203. cursor: pointer;
  1204. }
  1205. .ac_match {
  1206. text-decoration: underline;
  1207. }
  1208. #addtag .spinner {
  1209. float: none;
  1210. vertical-align: top;
  1211. }
  1212. #edittag {
  1213. max-width: 800px;
  1214. }
  1215. .edit-tag-actions {
  1216. margin-top: 20px;
  1217. }
  1218. /* Comments */
  1219. .comment-php .wp-editor-area {
  1220. height: 200px;
  1221. }
  1222. .comment-ays th,
  1223. .comment-ays td {
  1224. padding: 10px 15px;
  1225. }
  1226. .comment-ays .comment-content ul {
  1227. list-style: initial;
  1228. margin-left: 2em;
  1229. }
  1230. .comment-ays .comment-content a[href]:after {
  1231. content: "(" attr( href ) ")";
  1232. display: inline-block;
  1233. padding: 0 4px;
  1234. color: #646970;
  1235. font-size: 13px;
  1236. word-break: break-all;
  1237. }
  1238. .comment-ays .comment-content p.edit-comment {
  1239. margin-top: 10px;
  1240. }
  1241. .comment-ays .comment-content p.edit-comment a[href]:after {
  1242. content: "";
  1243. padding: 0;
  1244. }
  1245. .comment-ays-submit .button-cancel {
  1246. margin-left: 1em;
  1247. }
  1248. .trash-undo-inside,
  1249. .spam-undo-inside {
  1250. margin: 1px 8px 1px 0;
  1251. line-height: 1.23076923;
  1252. }
  1253. .spam-undo-inside .avatar,
  1254. .trash-undo-inside .avatar {
  1255. height: 20px;
  1256. width: 20px;
  1257. margin-right: 8px;
  1258. vertical-align: middle;
  1259. }
  1260. .stuffbox .editcomment {
  1261. clear: none;
  1262. margin-top: 0;
  1263. }
  1264. #namediv.stuffbox .editcomment input {
  1265. width: 100%;
  1266. }
  1267. #namediv.stuffbox .editcomment.form-table td {
  1268. padding: 10px;
  1269. }
  1270. #comment-status-radio p {
  1271. margin: 3px 0 5px;
  1272. }
  1273. #comment-status-radio input {
  1274. margin: 2px 3px 5px 0;
  1275. vertical-align: middle;
  1276. }
  1277. #comment-status-radio label {
  1278. padding: 5px 0;
  1279. }
  1280. /* links tables */
  1281. table.links-table {
  1282. width: 100%;
  1283. border-spacing: 0;
  1284. }
  1285. .links-table th {
  1286. font-weight: 400;
  1287. text-align: left;
  1288. vertical-align: top;
  1289. min-width: 80px;
  1290. width: 20%;
  1291. word-wrap: break-word;
  1292. }
  1293. .links-table th,
  1294. .links-table td {
  1295. padding: 5px 0;
  1296. }
  1297. .links-table td label {
  1298. margin-right: 8px;
  1299. }
  1300. .links-table td input[type="text"],
  1301. .links-table td textarea {
  1302. width: 100%;
  1303. }
  1304. .links-table #link_rel {
  1305. max-width: 280px;
  1306. }
  1307. /* DFW 2
  1308. -------------------------------------------------------------- */
  1309. #qt_content_dfw {
  1310. display: none;
  1311. }
  1312. .wp-editor-expand #qt_content_dfw {
  1313. display: inline-block;
  1314. }
  1315. .focus-on .wrap > h1,
  1316. .focus-on .page-title-action,
  1317. .focus-on #wpfooter,
  1318. .focus-on .postbox-container > *,
  1319. .focus-on div.updated,
  1320. .focus-on div.error,
  1321. .focus-on div.notice,
  1322. .focus-on .update-nag,
  1323. .focus-on #wp-toolbar,
  1324. .focus-on #screen-meta-links,
  1325. .focus-on #screen-meta {
  1326. opacity: 0;
  1327. transition-duration: 0.6s;
  1328. transition-property: opacity;
  1329. transition-timing-function: ease-in-out;
  1330. }
  1331. .focus-on #wp-toolbar {
  1332. opacity: 0.3;
  1333. }
  1334. .focus-off .wrap > h1,
  1335. .focus-off .page-title-action,
  1336. .focus-off #wpfooter,
  1337. .focus-off .postbox-container > *,
  1338. .focus-off div.updated,
  1339. .focus-off div.error,
  1340. .focus-off div.notice,
  1341. .focus-off .update-nag,
  1342. .focus-off #wp-toolbar,
  1343. .focus-off #screen-meta-links,
  1344. .focus-off #screen-meta {
  1345. opacity: 1;
  1346. transition-duration: 0.2s;
  1347. transition-property: opacity;
  1348. transition-timing-function: ease-in-out;
  1349. }
  1350. .focus-off #wp-toolbar {
  1351. -webkit-transform: translate(0, 0);
  1352. }
  1353. .focus-on #adminmenuback,
  1354. .focus-on #adminmenuwrap {
  1355. transition-duration: 0.6s;
  1356. transition-property: transform;
  1357. transition-timing-function: ease-in-out;
  1358. }
  1359. .focus-on #adminmenuback,
  1360. .focus-on #adminmenuwrap {
  1361. transform: translateX( -100% );
  1362. }
  1363. .focus-off #adminmenuback,
  1364. .focus-off #adminmenuwrap {
  1365. transform: translateX( 0 );
  1366. transition-duration: 0.2s;
  1367. transition-property: transform;
  1368. transition-timing-function: ease-in-out;
  1369. }
  1370. /* =Media Queries
  1371. -------------------------------------------------------------- */
  1372. /**
  1373. * HiDPI Displays
  1374. */
  1375. @media print,
  1376. (-webkit-min-device-pixel-ratio: 1.25),
  1377. (min-resolution: 120dpi) {
  1378. #content-resize-handle,
  1379. #post-body .wp_themeSkin .mceStatusbar a.mceResize {
  1380. background: transparent url(../images/resize-2x.gif) no-repeat scroll right bottom;
  1381. background-size: 11px 11px;
  1382. }
  1383. /*rtl:ignore*/
  1384. .rtl #content-resize-handle,
  1385. .rtl #post-body .wp_themeSkin .mceStatusbar a.mceResize {
  1386. background-image: url(../images/resize-rtl-2x.gif);
  1387. background-position: left bottom;
  1388. }
  1389. }
  1390. /*
  1391. * The edit attachment screen auto-switches to one column layout when the
  1392. * viewport is smaller than 1200 pixels.
  1393. */
  1394. @media only screen and (max-width: 1200px) {
  1395. .post-type-attachment #poststuff {
  1396. min-width: 0;
  1397. }
  1398. .post-type-attachment #wpbody-content #poststuff #post-body {
  1399. margin: 0;
  1400. }
  1401. .post-type-attachment #wpbody-content #post-body.columns-2 #postbox-container-1 {
  1402. margin-right: 0;
  1403. width: 100%;
  1404. }
  1405. .post-type-attachment #poststuff #postbox-container-1 .empty-container,
  1406. .post-type-attachment #poststuff #postbox-container-1 #side-sortables:empty {
  1407. outline: none;
  1408. height: 0;
  1409. min-height: 0;
  1410. }
  1411. .post-type-attachment #poststuff #post-body.columns-2 #side-sortables {
  1412. min-height: 0;
  1413. width: auto;
  1414. }
  1415. .is-dragging-metaboxes.post-type-attachment #post-body .meta-box-sortables {
  1416. outline: none;
  1417. min-height: 0;
  1418. margin-bottom: 0;
  1419. }
  1420. /* hide the radio buttons for column prefs */
  1421. .post-type-attachment .screen-layout,
  1422. .post-type-attachment .columns-prefs {
  1423. display: none;
  1424. }
  1425. }
  1426. /* one column on the post write/edit screen */
  1427. @media only screen and (max-width: 850px) {
  1428. #poststuff {
  1429. min-width: 0;
  1430. }
  1431. #wpbody-content #poststuff #post-body {
  1432. margin: 0;
  1433. }
  1434. #wpbody-content #post-body.columns-2 #postbox-container-1 {
  1435. margin-right: 0;
  1436. width: 100%;
  1437. }
  1438. #poststuff #postbox-container-1 .empty-container,
  1439. #poststuff #postbox-container-1 #side-sortables:empty {
  1440. height: 0;
  1441. min-height: 0;
  1442. }
  1443. #poststuff #post-body.columns-2 #side-sortables {
  1444. min-height: 0;
  1445. width: auto;
  1446. }
  1447. /* Increase min-height while dragging for the #side-sortables and any potential sortables area with custom ID. */
  1448. .is-dragging-metaboxes #poststuff #postbox-container-1 .empty-container,
  1449. .is-dragging-metaboxes #poststuff #postbox-container-1 #side-sortables:empty,
  1450. .is-dragging-metaboxes #poststuff #post-body.columns-2 #side-sortables,
  1451. .is-dragging-metaboxes #poststuff #post-body.columns-2 .meta-box-sortables {
  1452. height: auto;
  1453. min-height: 60px;
  1454. }
  1455. /* hide the radio buttons for column prefs */
  1456. .screen-layout,
  1457. .columns-prefs {
  1458. display: none;
  1459. }
  1460. }
  1461. @media screen and (max-width: 782px) {
  1462. .wp-core-ui .edit-tag-actions .button-primary {
  1463. margin-bottom: 0;
  1464. }
  1465. #post-body-content {
  1466. min-width: 0;
  1467. }
  1468. #titlediv #title-prompt-text {
  1469. padding: 10px 10px;
  1470. }
  1471. #poststuff .stuffbox .inside {
  1472. padding: 0 2px 4px 0;
  1473. }
  1474. #poststuff h3.hndle, /* Back-compat for pre-4.4 */
  1475. #poststuff .stuffbox > h3, /* Back-compat for pre-4.4 */
  1476. #poststuff h2 {
  1477. padding: 12px;
  1478. }
  1479. #namediv.stuffbox .editcomment.form-table td {
  1480. padding: 5px 10px;
  1481. }
  1482. .post-format-options {
  1483. padding-right: 0;
  1484. }
  1485. .post-format-options a {
  1486. margin-right: 5px;
  1487. margin-bottom: 5px;
  1488. min-width: 52px;
  1489. }
  1490. .post-format-options .post-format-title {
  1491. font-size: 11px;
  1492. }
  1493. .post-format-options a div {
  1494. height: 28px;
  1495. width: 28px;
  1496. }
  1497. .post-format-options a div:before {
  1498. font-size: 26px !important;
  1499. }
  1500. /* Publish Metabox Options */
  1501. #post-visibility-select {
  1502. line-height: 280%;
  1503. }
  1504. .wp-core-ui .save-post-visibility,
  1505. .wp-core-ui .save-timestamp {
  1506. vertical-align: middle;
  1507. margin-right: 15px;
  1508. }
  1509. .timestamp-wrap select#mm {
  1510. display: block;
  1511. width: 100%;
  1512. margin-bottom: 10px;
  1513. }
  1514. .timestamp-wrap #jj,
  1515. .timestamp-wrap #aa,
  1516. .timestamp-wrap #hh,
  1517. .timestamp-wrap #mn {
  1518. padding: 12px 3px;
  1519. font-size: 14px;
  1520. margin-bottom: 5px;
  1521. width: auto;
  1522. text-align: center;
  1523. }
  1524. /* Categories Metabox */
  1525. ul.category-tabs {
  1526. margin: 30px 0 15px;
  1527. }
  1528. ul.category-tabs li.tabs {
  1529. padding: 15px;
  1530. }
  1531. ul.categorychecklist li {
  1532. margin-bottom: 15px;
  1533. }
  1534. ul.categorychecklist ul {
  1535. margin-top: 15px;
  1536. }
  1537. .category-add input[type=text],
  1538. .category-add select {
  1539. max-width: none;
  1540. margin-bottom: 15px;
  1541. }
  1542. /* Tags Metabox */
  1543. .tagsdiv .newtag {
  1544. width: 100%;
  1545. height: auto;
  1546. margin-bottom: 15px;
  1547. }
  1548. .tagchecklist {
  1549. margin: 25px 10px;
  1550. }
  1551. .tagchecklist > li {
  1552. font-size: 16px;
  1553. line-height: 1.4;
  1554. }
  1555. /* Discussion */
  1556. #commentstatusdiv p {
  1557. line-height: 2.8;
  1558. }
  1559. /* TinyMCE Adjustments */
  1560. .mceToolbar * {
  1561. white-space: normal !important;
  1562. }
  1563. .mceToolbar tr,
  1564. .mceToolbar td {
  1565. float: left !important;
  1566. }
  1567. .wp_themeSkin a.mceButton {
  1568. width: 30px;
  1569. height: 30px;
  1570. }
  1571. .wp_themeSkin .mceButton .mceIcon {
  1572. margin-top: 5px;
  1573. margin-left: 5px;
  1574. }
  1575. .wp_themeSkin .mceSplitButton {
  1576. margin-top: 1px;
  1577. }
  1578. .wp_themeSkin .mceSplitButton td a.mceAction {
  1579. padding: 6px 3px 6px 6px;
  1580. }
  1581. .wp_themeSkin .mceSplitButton td a.mceOpen,
  1582. .wp_themeSkin .mceSplitButtonEnabled:hover td a.mceOpen {
  1583. padding-top: 6px;
  1584. padding-bottom: 6px;
  1585. background-position: 1px 6px;
  1586. }
  1587. .wp_themeSkin table.mceListBox {
  1588. margin: 5px;
  1589. }
  1590. div.quicktags-toolbar input {
  1591. padding: 10px 20px;
  1592. }
  1593. button.wp-switch-editor {
  1594. font-size: 16px;
  1595. line-height: 1;
  1596. margin: 7px 0 0 7px;
  1597. padding: 8px 12px;
  1598. }
  1599. #wp-content-media-buttons a {
  1600. font-size: 14px;
  1601. padding: 6px 10px;
  1602. }
  1603. .wp-media-buttons span.wp-media-buttons-icon,
  1604. .wp-media-buttons span.jetpack-contact-form-icon {
  1605. width: 22px !important;
  1606. margin-left: -2px !important;
  1607. }
  1608. .wp-media-buttons .add_media span.wp-media-buttons-icon:before,
  1609. .wp-media-buttons #insert-jetpack-contact-form span.jetpack-contact-form-icon:before {
  1610. font-size: 20px !important;
  1611. }
  1612. #content_wp_fullscreen {
  1613. display: none;
  1614. }
  1615. .misc-pub-section {
  1616. padding: 20px 10px 20px;
  1617. }
  1618. .misc-pub-section > a {
  1619. float: right;
  1620. font-size: 16px;
  1621. }
  1622. #delete-action,
  1623. #publishing-action {
  1624. line-height: 3.61538461;
  1625. }
  1626. #publishing-action .spinner {
  1627. float: none;
  1628. margin-top: -2px; /* Half of the Publish button's bottom margin. */
  1629. }
  1630. /* Moderate Comment */
  1631. .comment-ays th,
  1632. .comment-ays td {
  1633. padding-bottom: 0;
  1634. }
  1635. .comment-ays td {
  1636. padding-top: 6px;
  1637. }
  1638. /* Links */
  1639. .links-table #link_rel {
  1640. max-width: none;
  1641. }
  1642. .links-table th,
  1643. .links-table td {
  1644. padding: 10px 0;
  1645. }
  1646. .edit-term-notes {
  1647. display: none;
  1648. }
  1649. .privacy-text-box {
  1650. width: auto;
  1651. }
  1652. .privacy-text-box-toc {
  1653. float: none;
  1654. width: auto;
  1655. height: 100%;
  1656. display: flex;
  1657. flex-direction: column;
  1658. }
  1659. .privacy-text-section .return-to-top {
  1660. margin: 2em 0 0;
  1661. }
  1662. }