edit.css 37 KB

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