press-this.css 33 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136
  1. /*
  2. Press This styles :)
  3. */
  4. /**
  5. * Normalize
  6. *
  7. * normalize.css v3.0.0 | MIT License | git.io/normalize
  8. */
  9. html {
  10. font-family: sans-serif;
  11. -ms-text-size-adjust: 100%;
  12. -webkit-text-size-adjust: 100%;
  13. }
  14. body {
  15. margin: 0;
  16. }
  17. *,
  18. *:before,
  19. *:after {
  20. box-sizing: border-box;
  21. }
  22. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  23. *,
  24. *:before,
  25. *:after {
  26. -webkit-font-smoothing: antialiased;
  27. }
  28. }
  29. article,
  30. aside,
  31. details,
  32. figcaption,
  33. figure,
  34. footer,
  35. header,
  36. hgroup,
  37. main,
  38. nav,
  39. section,
  40. summary {
  41. display: block;
  42. }
  43. audio,
  44. canvas,
  45. progress,
  46. video {
  47. display: inline-block;
  48. vertical-align: baseline;
  49. }
  50. audio:not([controls]) {
  51. display: none;
  52. height: 0;
  53. }
  54. [hidden],
  55. template {
  56. display: none;
  57. }
  58. a {
  59. background: transparent;
  60. }
  61. a:active,
  62. a:hover {
  63. outline: 0;
  64. }
  65. abbr[title] {
  66. border-bottom: 1px dotted;
  67. }
  68. b,
  69. strong {
  70. font-weight: 700;
  71. }
  72. dfn {
  73. font-style: italic;
  74. }
  75. h1 {
  76. font-size: 2em;
  77. margin: 0.67em 0;
  78. }
  79. mark {
  80. background: #ff0;
  81. color: #000;
  82. }
  83. small {
  84. font-size: 80%;
  85. }
  86. sub,
  87. sup {
  88. font-size: 75%;
  89. line-height: 0;
  90. position: relative;
  91. vertical-align: baseline;
  92. }
  93. sup {
  94. top: -0.5em;
  95. }
  96. sub {
  97. bottom: -0.25em;
  98. }
  99. img {
  100. border: 0;
  101. }
  102. svg:not(:root) {
  103. overflow: hidden;
  104. }
  105. figure {
  106. margin: 1em 40px;
  107. }
  108. hr {
  109. box-sizing: content-box;
  110. height: 0;
  111. }
  112. pre {
  113. overflow: auto;
  114. }
  115. code,
  116. kbd,
  117. pre,
  118. samp {
  119. font-family: monospace, monospace;
  120. font-size: 1em;
  121. }
  122. button,
  123. input,
  124. optgroup,
  125. select,
  126. textarea {
  127. color: inherit;
  128. font: inherit;
  129. margin: 0;
  130. }
  131. button {
  132. overflow: visible;
  133. }
  134. button,
  135. select {
  136. text-transform: none;
  137. }
  138. button,
  139. html input[type="button"],
  140. input[type="reset"],
  141. input[type="submit"] {
  142. -webkit-appearance: button;
  143. cursor: pointer;
  144. }
  145. button[disabled],
  146. html input[disabled] {
  147. cursor: default;
  148. }
  149. button::-moz-focus-inner,
  150. input::-moz-focus-inner {
  151. border: 0;
  152. padding: 0;
  153. }
  154. input {
  155. line-height: normal;
  156. }
  157. input[type="checkbox"],
  158. input[type="radio"] {
  159. box-sizing: border-box;
  160. padding: 0;
  161. }
  162. input[type="number"]::-webkit-inner-spin-button,
  163. input[type="number"]::-webkit-outer-spin-button {
  164. height: auto;
  165. }
  166. input[type="search"] {
  167. -webkit-appearance: textfield;
  168. box-sizing: content-box;
  169. }
  170. input[type="search"]::-webkit-search-cancel-button,
  171. input[type="search"]::-webkit-search-decoration {
  172. -webkit-appearance: none;
  173. }
  174. fieldset {
  175. border: 0;
  176. margin: 0;
  177. padding: 0;
  178. }
  179. legend {
  180. border: 0;
  181. padding: 0;
  182. }
  183. textarea {
  184. overflow: auto;
  185. }
  186. optgroup {
  187. font-weight: 700;
  188. }
  189. table {
  190. border-collapse: collapse;
  191. border-spacing: 0;
  192. }
  193. td,
  194. th {
  195. padding: 0;
  196. }
  197. ::-webkit-input-placeholder {
  198. color: #72777c;
  199. }
  200. ::-moz-placeholder {
  201. color: #72777c;
  202. opacity: 1;
  203. }
  204. :-ms-input-placeholder {
  205. color: #72777c;
  206. }
  207. .clearfix:before,
  208. .clearfix:after {
  209. content: "";
  210. display: table;
  211. }
  212. .clearfix:after {
  213. clear: both;
  214. }
  215. .hide-if-js {
  216. display: none;
  217. }
  218. .screen-reader-text {
  219. position: absolute;
  220. margin: -1px;
  221. padding: 0;
  222. height: 1px;
  223. width: 1px;
  224. overflow: hidden;
  225. clip: rect(0 0 0 0);
  226. border: 0;
  227. }
  228. /**
  229. * Typography
  230. *
  231. * Base element typographic styles.
  232. */
  233. body,
  234. button,
  235. input,
  236. select,
  237. textarea {
  238. color: #404040;
  239. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  240. font-size: 20px;
  241. font-weight: 400;
  242. line-height: 1.6;
  243. }
  244. h1,
  245. h2,
  246. h3,
  247. h4,
  248. h5,
  249. h6 {
  250. clear: both;
  251. }
  252. p {
  253. margin-bottom: 1.5em;
  254. }
  255. b,
  256. strong {
  257. font-weight: 700;
  258. }
  259. /**
  260. * Buttons
  261. *
  262. * Pushing buttons is what I do.
  263. */
  264. .scan-submit {
  265. display: inline-block;
  266. margin: 0;
  267. padding: 0 10px 1px;
  268. border-width: 1px;
  269. border-style: solid;
  270. border-radius: 3px;
  271. font-size: 13px;
  272. line-height: 2;
  273. text-decoration: none;
  274. white-space: nowrap;
  275. cursor: pointer;
  276. -webkit-appearance: none;
  277. }
  278. .split-button {
  279. position: relative;
  280. display: inline-block;
  281. vertical-align: middle;
  282. }
  283. .split-button-body {
  284. display: none;
  285. position: absolute;
  286. bottom: 39px;
  287. right: 0;
  288. border: 1px solid #ddd;
  289. background-color: #fff;
  290. min-width: 180px;
  291. max-width: 100%;
  292. margin: 0;
  293. padding: 8px;
  294. list-style: none;
  295. box-shadow: 1px 0 4px rgba( 0, 0, 0, 0.15 );
  296. }
  297. .split-button-body:before,
  298. .split-button-body:after {
  299. position: absolute;
  300. right: 12px;
  301. display: block;
  302. width: 0;
  303. height: 0;
  304. border-style: solid;
  305. border-color: transparent;
  306. content: "";
  307. }
  308. .split-button-body:before {
  309. bottom: -18px;
  310. border-top-color: #ccc;
  311. border-width: 9px;
  312. right: 11px;
  313. }
  314. .split-button-body:after {
  315. bottom: -16px;
  316. border-top-color: #fff;
  317. border-width: 8px;
  318. }
  319. .split-button-body .split-button-option {
  320. display: block;
  321. padding: 5px 15px;
  322. margin: 0;
  323. width: 100%;
  324. border: 0;
  325. text-align: left;
  326. line-height: 2;
  327. background: none;
  328. color: inherit;
  329. text-decoration: none;
  330. outline: none;
  331. transition: none;
  332. }
  333. .split-button-body .split-button-option:hover,
  334. .split-button-body .split-button-option:active {
  335. color: inherit;
  336. }
  337. .is-open .split-button-body {
  338. display: block;
  339. }
  340. .split-button-primary,
  341. .split-button-toggle {
  342. border-radius: 0;
  343. display: block;
  344. margin: 0;
  345. font-size: 13px;
  346. text-decoration: none;
  347. white-space: nowrap;
  348. cursor: pointer;
  349. -webkit-appearance: none;
  350. line-height: 2;
  351. padding: 0 10px 1px;
  352. background: #0085ba;
  353. border-color: #0073aa #006799 #006799;
  354. border-width: 1px;
  355. border-style: solid;
  356. box-shadow: 0 1px 0 #006799;
  357. color: #fff;
  358. text-shadow: 0 -1px 1px #006799,
  359. 1px 0 1px #006799,
  360. 0 1px 1px #006799,
  361. -1px 0 1px #006799;
  362. }
  363. .split-button-primary {
  364. border-top-left-radius: 3px;
  365. border-bottom-left-radius: 3px;
  366. border-right: 0 none;
  367. float: left;
  368. }
  369. .split-button-toggle {
  370. padding: 0;
  371. border-top-right-radius: 3px;
  372. border-bottom-right-radius: 3px;
  373. border-left: 1px solid #006799;
  374. float: right;
  375. }
  376. .split-button-toggle i {
  377. margin: 4px 20px 3px 0;
  378. padding: 0 10px;
  379. }
  380. .split-button-primary:hover,
  381. .split-button-toggle:hover {
  382. outline: none;
  383. background: #008ec2;
  384. border-color: #006799;
  385. }
  386. .split-button-primary:focus,
  387. .split-button-toggle:focus {
  388. outline: none;
  389. box-shadow: 0 1px 0 #0073aa,
  390. 0 0 2px 1px #33b3db;
  391. }
  392. .split-button-primary:active,
  393. .split-button-toggle:active {
  394. background: #0073aa;
  395. border-color: #006799;
  396. box-shadow: inset 0 2px 10px #006799, 0 1px 0 #0073aa;
  397. }
  398. /**
  399. * Forms
  400. *
  401. * So many input types.
  402. */
  403. button,
  404. input,
  405. select,
  406. textarea {
  407. font-size: 100%;
  408. margin: 0;
  409. vertical-align: baseline;
  410. *vertical-align: middle;
  411. }
  412. [type="checkbox"],
  413. [type="radio"] {
  414. padding: 0;
  415. }
  416. [type="search"] {
  417. -webkit-appearance: textfield;
  418. box-sizing: content-box;
  419. }
  420. [type="search"]::-webkit-search-decoration {
  421. -webkit-appearance: none;
  422. }
  423. button::-moz-focus-inner,
  424. input::-moz-focus-inner {
  425. border: 0;
  426. padding: 0;
  427. }
  428. [type="text"],
  429. [type="email"],
  430. [type="url"],
  431. [type="password"],
  432. [type="search"],
  433. textarea {
  434. padding: 0.4em 0.75em;
  435. color: #32373c;
  436. border: 1px solid #ccc;
  437. }
  438. [type="text"]:focus,
  439. [type="email"]:focus,
  440. [type="url"]:focus,
  441. [type="password"]:focus,
  442. [type="search"]:focus,
  443. textarea:focus {
  444. color: #32373c;
  445. outline: 0;
  446. }
  447. textarea {
  448. overflow: auto;
  449. padding-left: 3px;
  450. vertical-align: top;
  451. }
  452. /**
  453. * Links
  454. */
  455. a {
  456. color: #0073aa;
  457. }
  458. a:visited {
  459. color: #0073aa;
  460. }
  461. a:hover,
  462. a:focus,
  463. a:active {
  464. color: #00a0d2;
  465. }
  466. /**
  467. * Lists
  468. */
  469. ul,
  470. ol {
  471. margin: 0 0 1.5em 3em;
  472. }
  473. ul {
  474. list-style: disc;
  475. }
  476. ol {
  477. list-style: decimal;
  478. }
  479. li > ul,
  480. li > ol {
  481. margin-bottom: 0;
  482. margin-left: 1.5em;
  483. }
  484. dt {
  485. font-weight: 700;
  486. }
  487. dd {
  488. margin: 0 1.5em 1.5em;
  489. }
  490. /**
  491. * Post formats
  492. *
  493. * Complete styles for post formats UI
  494. */
  495. /* TODO if we remove the <br> during merge, this can go. */
  496. #post-formats-select br {
  497. display: none;
  498. }
  499. .post-format {
  500. width: 1px;
  501. height: 1px;
  502. position: absolute;
  503. top: -9999px;
  504. }
  505. .lt-ie9 .post-format {
  506. margin: 17px 12px 0 13px;
  507. width: auto;
  508. height: auto;
  509. position: static;
  510. top: auto;
  511. float: left;
  512. width: 16px;
  513. height: 16px;
  514. }
  515. .post-format-icon {
  516. position: relative;
  517. display: block;
  518. padding: 13px 2px 14px 13px;
  519. cursor: pointer;
  520. }
  521. .post-format-icon:before,
  522. .post-format-icon:after {
  523. content: "";
  524. display: inline-block;
  525. width: 20px;
  526. height: 20px;
  527. margin-right: 10px;
  528. font-size: 20px;
  529. line-height: 1;
  530. font-family: dashicons;
  531. text-decoration: inherit;
  532. color: #9ea7af;
  533. font-weight: 400;
  534. font-style: normal;
  535. vertical-align: top;
  536. text-align: center;
  537. transition: color .1s ease-in 0;
  538. -webkit-font-smoothing: antialiased;
  539. -moz-osx-font-smoothing: grayscale;
  540. }
  541. .post-format-icon:before {
  542. content: "\f109";
  543. }
  544. .post-format-icon:after {
  545. display: none;
  546. content: "\f147";
  547. float: right;
  548. }
  549. .post-format:checked + .post-format-icon {
  550. box-shadow: inset 6px 0 0 #00a0d2;
  551. background: rgba(46, 162, 204, 0.1);
  552. }
  553. .post-format:checked + .post-format-icon:before,
  554. .post-format:checked + .post-format-icon:after {
  555. color: #32373c;
  556. }
  557. .post-format:focus + .post-format-icon {
  558. background: #00a0d2;
  559. color: #fff;
  560. }
  561. .post-format:focus + .post-format-icon:before,
  562. .post-format:focus + .post-format-icon:after {
  563. color: #fff;
  564. }
  565. .post-format:checked + .post-format-icon:after {
  566. display: block;
  567. }
  568. .lt-ie9 .post-format-icon {
  569. margin-left: 16px;
  570. }
  571. .post-format-aside:before {
  572. content: "\f123";
  573. }
  574. .post-format-chat:before {
  575. content: "\f125";
  576. }
  577. .post-format-gallery:before {
  578. content: "\f161";
  579. }
  580. .post-format-link:before {
  581. content: "\f103";
  582. }
  583. .post-format-image:before {
  584. content: "\f128";
  585. }
  586. .post-format-quote:before {
  587. content: "\f122";
  588. }
  589. .post-format-status:before {
  590. content: "\f130";
  591. }
  592. .post-format-video:before {
  593. content: "\f126";
  594. }
  595. .post-format-audio:before {
  596. content: "\f127";
  597. }
  598. /**
  599. * Tags
  600. *
  601. * Complete styles for tags UI
  602. */
  603. .tagsdiv p {
  604. margin: 0;
  605. }
  606. .tagsdiv .ajaxtag {
  607. position: relative;
  608. }
  609. .tagsdiv .newtag {
  610. display: block;
  611. position: relative;
  612. padding: 11px 58px 11px 16px;
  613. width: 100%;
  614. border: 0;
  615. border-bottom: 1px solid #e5e5e5;
  616. font-size: 16px;
  617. }
  618. .tagsdiv .tagadd {
  619. position: absolute;
  620. top: 0;
  621. right: 0;
  622. bottom: 1px;
  623. border: 0;
  624. border-radius: 0;
  625. margin: 0;
  626. padding: 0 16px;
  627. background: #f7f7f7;
  628. border-left: 1px solid #f1f1f1;
  629. box-shadow: none;
  630. }
  631. .tagsdiv .tagadd:hover,
  632. .tagsdiv .tagadd:active,
  633. .tagsdiv .tagadd:focus {
  634. outline: 0;
  635. background: #2991b7;
  636. border-color: #20708e;
  637. color: #fff;
  638. box-shadow: none;
  639. }
  640. .tagsdiv .howto {
  641. color: #727272;
  642. font-style: italic;
  643. margin: 10px 0 6px 16px;
  644. }
  645. /* Tags */
  646. .tagchecklist {
  647. padding: 16px 28px 5px;
  648. }
  649. .tagchecklist:before,
  650. .tagchecklist:after {
  651. content: "";
  652. display: table;
  653. }
  654. .tagchecklist:after {
  655. clear: both;
  656. }
  657. .tagchecklist > span {
  658. float: left;
  659. margin-right: 25px;
  660. font-size: 13px;
  661. line-height: 1.8;
  662. white-space: nowrap;
  663. cursor: default;
  664. }
  665. .tagchecklist > li {
  666. list-style-type: none;
  667. }
  668. @media (max-width: 600px) {
  669. .tagchecklist > span {
  670. margin-bottom: 15px;
  671. font-size: 16px;
  672. line-height: 1.3;
  673. }
  674. }
  675. .tagchecklist .ntdelbutton {
  676. position: absolute;
  677. width: 24px;
  678. height: 24px;
  679. border: none;
  680. margin: 0 0 0 -19px;
  681. padding: 0;
  682. background: none;
  683. cursor: pointer;
  684. text-indent: 0;;
  685. position: absolute;
  686. }
  687. .tagchecklist .ntdelbutton .remove-tag-icon:before {
  688. content: "\f153";
  689. display: block;
  690. margin-left: 2px;
  691. height: 20px;
  692. width: 20px;
  693. border-radius: 50%;
  694. background: transparent;
  695. color: #0073aa;
  696. /* line-height tweak to vertically center the icon cross browsers */
  697. font: 400 16px/1.28 dashicons;
  698. text-align: center;
  699. -webkit-font-smoothing: antialiased;
  700. }
  701. .tagchecklist .ntdelbutton:focus {
  702. outline: 0;
  703. }
  704. .tagchecklist .ntdelbutton:hover .remove-tag-icon:before,
  705. .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
  706. color: #c00;
  707. }
  708. .tagchecklist .ntdelbutton:focus .remove-tag-icon:before {
  709. box-shadow:
  710. 0 0 0 1px #5b9dd9,
  711. 0 0 2px 1px rgba(30, 140, 190, .8);
  712. }
  713. /* THE TAG CLOUD. */
  714. .tagsdiv + p {
  715. margin: 0;
  716. }
  717. .press-this .tagcloud-link {
  718. display: block;
  719. margin: 0 16px 5px;
  720. padding: 0;
  721. text-decoration: none;
  722. outline: 0;
  723. color: inherit;
  724. }
  725. .press-this .tagcloud-link:hover,
  726. .press-this .tagcloud-link:active {
  727. color: inherit;
  728. }
  729. .tagcloud-link:focus {
  730. text-decoration: underline;
  731. }
  732. .popular-tags {
  733. border: none;
  734. line-height: 2em;
  735. padding: 8px 12px 12px;
  736. text-align: justify;
  737. }
  738. .popular-tags a {
  739. padding: 0 3px;
  740. }
  741. .the-tagcloud {
  742. margin: 0;
  743. padding: 16px;
  744. }
  745. .the-tagcloud a {
  746. text-decoration: none;
  747. outline: 0;
  748. }
  749. .the-tagcloud a:focus {
  750. text-decoration: underline;
  751. }
  752. .tagcloud h3 {
  753. margin: 2px 0 12px;
  754. }
  755. /**
  756. * Categories
  757. *
  758. * Complete styles for post categories UI
  759. */
  760. input[type="search"].categories-search,
  761. .add-category-name {
  762. display: block;
  763. width: 100%;
  764. padding: 0.85714em 1.07143em;
  765. border: 0;
  766. border-radius: 0;
  767. border-bottom: 1px solid #e5e5e5;
  768. font-size: 14px;
  769. -webkit-appearance: none;
  770. -moz-appearance: none;
  771. appearance: none;
  772. }
  773. @media (max-width: 600px) {
  774. input[type="search"].categories-search,
  775. .add-category-name {
  776. /* Needs to be 16px to prevent zooming on iOS. Guh. */
  777. font-size: 16px;
  778. }
  779. }
  780. .press-this .add-cat-toggle {
  781. float: right;
  782. margin-top: -45px;
  783. line-height: 20px;
  784. padding: 12px 10px 8px;
  785. color: #0073aa;
  786. text-decoration: none;
  787. transition: none;
  788. }
  789. .press-this .add-cat-toggle:focus {
  790. color: #00a0d2;
  791. }
  792. .press-this .add-cat-toggle.is-toggled {
  793. padding: 10px;
  794. }
  795. .press-this .add-cat-toggle.is-toggled .dashicons:before {
  796. content: "\f179";
  797. }
  798. .add-category {
  799. position: relative;
  800. border-bottom: 1px solid #e5e5e5;
  801. }
  802. .add-category.is-hidden {
  803. display: none;
  804. }
  805. .add-category .add-cat-submit {
  806. position: absolute;
  807. top: 0;
  808. right: 0;
  809. border: 0;
  810. border-radius: 0;
  811. padding: 12px 16px;
  812. background: #f7f7f7;
  813. border-left: 1px solid #f1f1f1;
  814. }
  815. .add-category .add-cat-submit:hover,
  816. .add-category .add-cat-submit:active,
  817. .add-category .add-cat-submit:focus {
  818. outline: 0;
  819. background: #2991b7;
  820. border-color: #20708e;
  821. color: #fff;
  822. }
  823. /* Parent category select */
  824. .postform-wrapper {
  825. padding: 12px;
  826. }
  827. .postform {
  828. display: block;
  829. margin: 0;
  830. width: 100%;
  831. height: 34px;
  832. border: 0;
  833. border-radius: 0;
  834. border: 1px solid #e5e5e5;
  835. background: #fff;
  836. background-size: 20px 20px;
  837. overflow: hidden;
  838. line-height: 21px;
  839. text-overflow: ellipsis;
  840. text-decoration: none;
  841. vertical-align: top;
  842. white-space: nowrap;
  843. cursor: pointer;
  844. outline: 0;
  845. }
  846. .postform:focus {
  847. border-color: #0073aa;
  848. box-shadow: 0 0 0 3px #00a0d2;
  849. outline: 0;
  850. -moz-outline: none;
  851. -moz-user-focus: ignore;
  852. }
  853. .postform::-ms-expand {
  854. display: none;
  855. }
  856. .postform::-ms-value {
  857. background: none;
  858. color: #727272;
  859. }
  860. .postform:-moz-focusring {
  861. color: transparent;
  862. text-shadow: 0 0 0 #727272;
  863. }
  864. /* Category list */
  865. .categories-select {
  866. margin: 0;
  867. padding: 0;
  868. list-style: none;
  869. }
  870. .categories-select ul {
  871. margin: 0;
  872. padding: 0;
  873. list-style: none;
  874. }
  875. .category {
  876. position: relative;
  877. display: block;
  878. padding: 13px 16px 14px 16px;
  879. cursor: pointer;
  880. background: #fff;
  881. }
  882. .category:focus,
  883. .category.selected:focus {
  884. outline: 0;
  885. background: #00a0d2;
  886. color: #fff;
  887. }
  888. .category.selected {
  889. box-shadow: inset 6px 0 0 #00a0d2;
  890. background: #E9F5F9;
  891. }
  892. .category.selected:after {
  893. display: inline-block;
  894. content: "\f147";
  895. position: absolute;
  896. top: 13px;
  897. right: 0;
  898. width: 20px;
  899. height: 20px;
  900. margin-right: 10px;
  901. font-size: 20px;
  902. line-height: 1;
  903. font-family: dashicons;
  904. text-decoration: inherit;
  905. color: #23282d;
  906. font-weight: 400;
  907. font-style: normal;
  908. vertical-align: top;
  909. text-align: center;
  910. transition: color .1s ease-in 0;
  911. -webkit-font-smoothing: antialiased;
  912. -moz-osx-font-smoothing: grayscale;
  913. }
  914. .category.selected:focus:after {
  915. color: #fff;
  916. }
  917. .categories-select ul .category {
  918. padding-left: 24px;
  919. }
  920. .categories-select ul ul .category {
  921. padding-left: 32px;
  922. }
  923. .categories-select ul ul ul .category {
  924. padding-left: 40px;
  925. }
  926. .categories-select ul ul ul ul .category {
  927. padding-left: 48px;
  928. }
  929. .categories-select ul ul ul ul ul .category {
  930. padding-left: 56px;
  931. }
  932. .categories-select ul ul ul ul ul ul .category {
  933. padding-left: 64px;
  934. }
  935. .categories-select .is-hidden {
  936. display: none;
  937. }
  938. .categories-select .is-hidden.searched-parent {
  939. display: block;
  940. }
  941. /* Category search */
  942. .categories-search-wrapper {
  943. position: relative;
  944. }
  945. .categories-search-wrapper.is-hidden {
  946. display: none;
  947. }
  948. .categories-search-wrapper label {
  949. position: absolute;
  950. top: 50%;
  951. right: 10px;
  952. margin-top: -10px;
  953. color: #9ea7af;
  954. }
  955. /**
  956. * Main
  957. */
  958. html {
  959. overflow: auto;
  960. }
  961. body {
  962. overflow-x: hidden;
  963. height: 100%;
  964. }
  965. html {
  966. background: #fff;
  967. box-shadow: -10px 0 0 rgba(0, 0, 0, 0.3);
  968. }
  969. @media (max-width: 900px) {
  970. body {
  971. font-size: 16px;
  972. }
  973. }
  974. @media (max-width: 320px) {
  975. body {
  976. font-size: 14px;
  977. }
  978. }
  979. .lt-ie9 {
  980. overflow: visible;
  981. }
  982. .adminbar {
  983. position: relative;
  984. width: 100%;
  985. padding: 0 0.8em;
  986. min-height: 3.2em;
  987. background: #23282d;
  988. color: #fff;
  989. z-index: 9999;
  990. }
  991. .adminbar:before,
  992. .adminbar:after {
  993. content: "";
  994. display: table;
  995. }
  996. .adminbar:after {
  997. clear: both;
  998. }
  999. .adminbar .dashicons {
  1000. color: #a0a5aa; /* same as WP admin bar icons */
  1001. }
  1002. .press-this .adminbar button {
  1003. position: absolute;
  1004. top: 50%;
  1005. right: 6px;
  1006. margin-top: -13px;
  1007. padding: 0 10px 1px;
  1008. font-size: 13px;
  1009. text-decoration: none;
  1010. transition: none;
  1011. }
  1012. @media (max-width: 320px) {
  1013. .adminbar {
  1014. min-height: 45px;
  1015. }
  1016. }
  1017. .current-site {
  1018. margin-top: 0.5625em;
  1019. font-size: 16px;
  1020. line-height: 44px;
  1021. font-weight: 400;
  1022. overflow: hidden;
  1023. white-space: nowrap;
  1024. text-overflow: ellipsis;
  1025. }
  1026. @media (max-width: 600px) {
  1027. .current-site {
  1028. margin: 3px 0 0;
  1029. }
  1030. }
  1031. @media (max-width: 320px) {
  1032. .current-site {
  1033. margin: 0;
  1034. font-size: 14px;
  1035. }
  1036. }
  1037. .current-site-link {
  1038. text-decoration: none;
  1039. }
  1040. .current-site-link:focus {
  1041. outline: 0;
  1042. }
  1043. .current-site-link:focus .current-site-name{
  1044. text-decoration: underline;
  1045. }
  1046. .current-site-name {
  1047. color: #ededed;
  1048. }
  1049. @media (max-width: 320px) {
  1050. .current-site-name {
  1051. font-weight: 600;
  1052. }
  1053. }
  1054. .current-site .dashicons-wordpress {
  1055. position: relative;
  1056. top: -1px;
  1057. margin-right: 10px;
  1058. vertical-align: middle;
  1059. }
  1060. .options,
  1061. .options.open .on-closed,
  1062. .options.closed .on-open {
  1063. display: none;
  1064. }
  1065. @media (max-width: 900px) {
  1066. .options {
  1067. display: block;
  1068. }
  1069. }
  1070. .options-panel-back.is-hidden {
  1071. display: none;
  1072. }
  1073. .options:focus .dashicons {
  1074. color: #fff;
  1075. text-decoration: none;
  1076. }
  1077. .options .dashicons {
  1078. margin-top: 3px;
  1079. }
  1080. .options {
  1081. color: #00a0d2;
  1082. }
  1083. .scan {
  1084. position: relative;
  1085. border-bottom: 1px solid #e5e5e5;
  1086. }
  1087. @media (max-width: 900px) {
  1088. .scan form {
  1089. transition: opacity .3s ease-in-out;
  1090. }
  1091. .scan.is-hidden form {
  1092. opacity: .2;
  1093. pointer-events: none;
  1094. }
  1095. }
  1096. .scan-url {
  1097. display: block;
  1098. border: 0;
  1099. padding: 0.85714em 1.07143em;
  1100. font-size: 14px;
  1101. width: 100%;
  1102. }
  1103. @media (max-width: 600px) {
  1104. .scan-url {
  1105. font-size: 16px;
  1106. }
  1107. }
  1108. .scan-submit {
  1109. position: absolute;
  1110. top: 0;
  1111. right: 0;
  1112. bottom: 0;
  1113. padding: 0 1.07143em;
  1114. background: #f7f7f7;
  1115. border-color: #ddd;
  1116. border: 0;
  1117. border-left: 1px solid #f1f1f1;
  1118. border-radius: 0;
  1119. color: #555;
  1120. font-size: 14px;
  1121. line-height: 1.6;
  1122. }
  1123. .scan-submit:hover,
  1124. .scan-submit:focus {
  1125. background: #008ec2;
  1126. border-color: #006799;
  1127. color: #fff;
  1128. outline: 0;
  1129. }
  1130. .scan-submit:active {
  1131. background: #0073aa;
  1132. border-color: #006799;
  1133. color: #fff;
  1134. }
  1135. .scan-submit:visited {
  1136. color: #555;
  1137. }
  1138. .wrapper {
  1139. position: relative;
  1140. margin-bottom: 60px;
  1141. margin-right: 320px;
  1142. }
  1143. .wrapper:before,
  1144. .wrapper:after {
  1145. content: "";
  1146. display: table;
  1147. }
  1148. .wrapper:after {
  1149. clear: both;
  1150. }
  1151. @media (max-width: 900px) {
  1152. .wrapper {
  1153. margin: 0;
  1154. width: 100%;
  1155. }
  1156. }
  1157. .editor-wrapper {
  1158. overflow: auto;
  1159. float: left;
  1160. width: 100%;
  1161. }
  1162. .editor-wrapper:before,
  1163. .editor-wrapper:after {
  1164. content: "";
  1165. display: table;
  1166. }
  1167. .editor-wrapper:after {
  1168. clear: both;
  1169. }
  1170. .editor {
  1171. padding: 0 1.5em 4.75em;
  1172. max-width: 700px;
  1173. margin: 0 auto;
  1174. }
  1175. .spinner {
  1176. height: 20px;
  1177. width: 20px;
  1178. display: inline-block;
  1179. visibility: hidden;
  1180. background: url(spinner.gif) no-repeat center;
  1181. background-size: 20px 20px;
  1182. opacity: 0.7;
  1183. filter: alpha(opacity=70);
  1184. line-height: 1;
  1185. vertical-align: middle;
  1186. }
  1187. @media print,
  1188. (-webkit-min-device-pixel-ratio: 1.25),
  1189. (min-resolution: 120dpi) {
  1190. .spinner {
  1191. background-image: url(spinner-2x.gif);
  1192. }
  1193. }
  1194. .spinner.is-active {
  1195. visibility: visible;
  1196. }
  1197. /* Make the text inside the editor textarea white. Prevents a "flash" on loading the page */
  1198. #pressthis {
  1199. color: #fff;
  1200. }
  1201. @media (min-width: 901px) {
  1202. .editor {
  1203. max-width: 760px;
  1204. }
  1205. }
  1206. @media (max-width: 320px) {
  1207. .editor {
  1208. padding: 0;
  1209. }
  1210. }
  1211. .post-title,
  1212. .post-title-placeholder {
  1213. margin: 0;
  1214. padding: .83em 0;
  1215. width: 100%;
  1216. border-bottom: 1px solid #e5e5e5;
  1217. font-size: 32px;
  1218. line-height: 1.4;
  1219. font-weight: 700;
  1220. }
  1221. .post-title:active,
  1222. .post-title:focus,
  1223. .post-title-placeholder:active,
  1224. .post-title-placeholder:focus {
  1225. outline: 0;
  1226. box-shadow: inset 0px -3px 0 #00a0d2;
  1227. border-color: #00a0d2;
  1228. }
  1229. @media (max-width: 900px) {
  1230. .post-title,
  1231. .post-title-placeholder {
  1232. font-size: 24px;
  1233. }
  1234. }
  1235. @media (max-height: 400px) {
  1236. .post-title,
  1237. .post-title-placeholder {
  1238. padding: 15px 0;
  1239. font-size: 16px;
  1240. }
  1241. }
  1242. @media (max-width: 320px) {
  1243. .post-title,
  1244. .post-title-placeholder {
  1245. font-size: 16px;
  1246. font-weight: 600;
  1247. padding: 1.14286em 1.42857em;
  1248. }
  1249. }
  1250. .post-title {
  1251. /* IE8 fallback */
  1252. background: url(data:image/gif;base64,R0lGODlhAQABAJEAAAAAAP///////wAAACH5BAEHAAIALAAAAAABAAEAAAICVAEAOw==);
  1253. background: none, none;
  1254. }
  1255. .post-title:before {
  1256. /* Keeps empty container from collapsing */
  1257. content: "\a0";
  1258. display: inline-block;
  1259. width: 0;
  1260. speak: none;
  1261. }
  1262. .post-title-placeholder {
  1263. position: absolute;
  1264. border: 0;
  1265. color: #82878c;
  1266. z-index: -1;
  1267. }
  1268. .post-title-placeholder.is-hidden {
  1269. display: none;
  1270. }
  1271. /* Suggested images */
  1272. .media-list-container {
  1273. position: relative;
  1274. padding: 2px 0;
  1275. border-bottom: 1px solid #e5e5e5;
  1276. display: none;
  1277. }
  1278. .media-list-inner-container {
  1279. overflow: auto;
  1280. max-height: 150px;
  1281. max-height: 40vw;
  1282. }
  1283. .media-list-container.has-media {
  1284. display: block;
  1285. }
  1286. .media-list-inner-container:before,
  1287. .media-list-inner-container:after {
  1288. content: "";
  1289. display: table;
  1290. }
  1291. .media-list-inner-container:after {
  1292. clear: both;
  1293. }
  1294. .media-list {
  1295. margin: 0;
  1296. padding: 0;
  1297. }
  1298. @media (min-width: 321px) {
  1299. .media-list-inner-container {
  1300. max-height: 250px;
  1301. max-height: 40vw;
  1302. }
  1303. }
  1304. @media (min-width: 601px) {
  1305. .media-list-inner-container {
  1306. max-height: 200px;
  1307. max-height: 18.75vw;
  1308. }
  1309. }
  1310. .wppt-all-media-list {
  1311. list-style: none;
  1312. margin: 0;
  1313. padding: 0;
  1314. }
  1315. .suggested-media-thumbnail:focus,
  1316. .is-embed:focus {
  1317. outline: 0;
  1318. box-shadow: inset 0 0 0 3px #00a0d2;
  1319. }
  1320. .suggested-media-thumbnail {
  1321. position: relative;
  1322. display: block;
  1323. float: left;
  1324. width: 16.66%;
  1325. padding: 16.66% 0 0 16.66%;
  1326. background-position: center;
  1327. background-repeat: no-repeat;
  1328. background-size: cover;
  1329. background-color: #d8d8d8;
  1330. color: #fff;
  1331. color: rgba(255, 255, 255, 0.6);
  1332. cursor: pointer;
  1333. }
  1334. .suggested-media-thumbnail:hover,
  1335. .suggested-media-thumbnail:active,
  1336. .suggested-media-thumbnail:focus {
  1337. color: #fff;
  1338. }
  1339. .suggested-media-thumbnail:before,
  1340. .suggested-media-thumbnail:after {
  1341. display: inline-block;
  1342. position: absolute;
  1343. font-size: 20px;
  1344. line-height: 1;
  1345. font-family: dashicons;
  1346. text-decoration: inherit;
  1347. font-weight: 400;
  1348. font-style: normal;
  1349. transition: color .1s ease-in 0;
  1350. -webkit-font-smoothing: antialiased;
  1351. -moz-osx-font-smoothing: grayscale;
  1352. }
  1353. .suggested-media-thumbnail:before {
  1354. left: 50%;
  1355. top: 50%;
  1356. margin: -20px 0 0 -20px;
  1357. font-size: 40px;
  1358. }
  1359. .suggested-media-thumbnail:after {
  1360. content: "\f132";
  1361. right: 3%;
  1362. bottom: 2%;
  1363. }
  1364. @media (min-width: 601px) {
  1365. .suggested-media-thumbnail {
  1366. width: 12.5%;
  1367. padding: 12.5% 0 0 12.5%;
  1368. }
  1369. }
  1370. .is-embed:before {
  1371. content: "\f104";
  1372. color: #fff;
  1373. color: rgba(255, 255, 255, 0.9);
  1374. }
  1375. .is-embed.is-audio:hover:before,
  1376. .is-embed.is-audio:active:before,
  1377. .is-embed.is-audio:focus:before,
  1378. .is-embed.is-tweet:hover:before,
  1379. .is-embed.is-tweet:active:before,
  1380. .is-embed.is-tweet:focus:before {
  1381. color: #fff;
  1382. }
  1383. .is-embed.is-video {
  1384. background-color: #23282d;
  1385. }
  1386. .is-embed.is-video:hover:before,
  1387. .is-embed.is-video:active:before,
  1388. .is-embed.is-video:focus:before {
  1389. color: rgba(255, 255, 255, 0.2);
  1390. }
  1391. .is-embed.is-video:before {
  1392. content: "\f236";
  1393. }
  1394. .is-embed.is-audio {
  1395. background-color: #ff7d44;
  1396. }
  1397. .is-embed.is-audio:before {
  1398. content: "\f127";
  1399. }
  1400. .is-embed.is-tweet {
  1401. background-color: #55acee;
  1402. }
  1403. .is-embed.is-tweet:before {
  1404. content: "\f301";
  1405. }
  1406. .no-media {
  1407. margin: 0;
  1408. padding: 0;
  1409. border: 0;
  1410. }
  1411. /* Actions bar */
  1412. .press-this-actions {
  1413. position: fixed;
  1414. bottom: 0;
  1415. left: 0;
  1416. width: 100%;
  1417. background: #f1f1f1;
  1418. background: rgba(241, 241, 241, 0.9);
  1419. border-top: 1px solid #e5e5e5;
  1420. }
  1421. @media (max-width: 900px) {
  1422. .press-this-actions {
  1423. -webkit-transform: translateY(0);
  1424. transform: translateY(0);
  1425. transition: -webkit-transform .3s ease-in-out;
  1426. transition: transform .3s ease-in-out;
  1427. transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  1428. }
  1429. .press-this-actions.is-hidden {
  1430. -webkit-transform: translateY(100%);
  1431. transform: translateY(100%);
  1432. }
  1433. }
  1434. .add-media {
  1435. float: left;
  1436. margin: 14px 0 14px 30px;
  1437. font-size: 0;
  1438. }
  1439. @media (max-width: 320px) {
  1440. .add-media {
  1441. margin: 10px 0 10px 10px;
  1442. }
  1443. }
  1444. .insert-media {
  1445. color: #9ea7af;
  1446. float: left;
  1447. margin: 0;
  1448. padding: 0;
  1449. border: 0;
  1450. border-radius: 0;
  1451. background: none;
  1452. box-shadow: none;
  1453. overflow: hidden;
  1454. }
  1455. .insert-media:hover,
  1456. .insert-media:focus,
  1457. .insert-media:active {
  1458. color: #23282d;
  1459. }
  1460. .insert-media:focus,
  1461. .insert-media:active {
  1462. outline: 0;
  1463. color: #00a0d2;
  1464. box-shadow:
  1465. 0 0 0 1px #5b9dd9,
  1466. 0 0 2px 1px rgba(30, 140, 190, .8);
  1467. }
  1468. .insert-media .dashicons {
  1469. padding: 11px;
  1470. width: 63px;
  1471. height: 58px;
  1472. font-size: 40px;
  1473. }
  1474. @media (max-width: 320px) {
  1475. .insert-media .dashicons {
  1476. width: 55px;
  1477. height: 49px;
  1478. padding: 14px;
  1479. font-size: 20px;
  1480. }
  1481. }
  1482. .post-actions {
  1483. float: right;
  1484. margin: 14px 30px 14px 0;
  1485. font-size: 13px;
  1486. }
  1487. @media (max-width: 320px) {
  1488. .post-actions {
  1489. margin: 10px 10px 10px 0;
  1490. }
  1491. }
  1492. .publish-button .saving-draft,
  1493. .publish-button.is-saving .publish {
  1494. display: none;
  1495. }
  1496. .publish-button.is-saving .saving-draft {
  1497. display: inline;
  1498. }
  1499. /* TinyMCE styles */
  1500. .editor .wp-media-buttons {
  1501. float: none;
  1502. }
  1503. .editor div.mce-toolbar-grp {
  1504. padding: 0.71429em 0;
  1505. background: none;
  1506. border: 0;
  1507. }
  1508. @media (max-height: 400px), (max-width: 320px) {
  1509. .editor div.mce-toolbar-grp {
  1510. padding: 0;
  1511. }
  1512. }
  1513. .mce-stack-layout:before,
  1514. .mce-stack-layout:after {
  1515. content: "";
  1516. display: table;
  1517. }
  1518. .mce-stack-layout:after {
  1519. clear: both;
  1520. }
  1521. .mce-container.mce-toolbar {
  1522. float: left;
  1523. }
  1524. .mce-container.mce-toolbar:nth-child(2) {
  1525. float: right;
  1526. }
  1527. @media (max-width: 600px) {
  1528. .mce-first .mce-btn:nth-child(3),
  1529. .mce-first .mce-btn:nth-child(4) {
  1530. position: absolute;
  1531. margin: -1px;
  1532. padding: 0;
  1533. height: 1px;
  1534. width: 1px;
  1535. overflow: hidden;
  1536. clip: rect(0 0 0 0);
  1537. border: 0;
  1538. }
  1539. .mce-first .mce-btn:nth-child(3):focus,
  1540. .mce-first .mce-btn:nth-child(4):focus {
  1541. position: static;
  1542. margin: 1px;
  1543. padding: inherit;
  1544. height: auto;
  1545. width: auto;
  1546. overflow: visible;
  1547. clip: auto;
  1548. border: 1px solid #999;
  1549. }
  1550. }
  1551. #wp-link-wrap {
  1552. font-size: 13px;
  1553. }
  1554. #wp-link-wrap input[type="text"] {
  1555. padding: 3px 5px;
  1556. margin: 1px;
  1557. }
  1558. @media screen and (max-width: 782px) {
  1559. #wp-link-wrap {
  1560. font-size: 14px;
  1561. }
  1562. #wp-link-wrap input[type="text"] {
  1563. padding: 6px 10px;
  1564. }
  1565. }
  1566. #wp-link-wrap .howto {
  1567. color: #666;
  1568. font-style: italic;
  1569. }
  1570. /* Options panel (sidebar) */
  1571. .options-panel {
  1572. position: relative;
  1573. float: right;
  1574. margin-right: -320px;
  1575. width: 320px;
  1576. border-left: 1px solid #e5e5e5;
  1577. font-size: 14px;
  1578. /* Keeps background the full height of the screen, but only visually. Clicks go through. */
  1579. box-shadow: 5001px 5000px 0 5000px #fff, 5000px 5000px 0 5000px #e5e5e5;
  1580. outline: 0;
  1581. }
  1582. .options-panel-back {
  1583. position: absolute;
  1584. top: 0;
  1585. right: 0;
  1586. bottom: 0;
  1587. width: 320px;
  1588. outline: 0;
  1589. }
  1590. @media (max-width: 900px) {
  1591. .options-panel {
  1592. background: #fff;
  1593. -webkit-transform: translateX(-100%);
  1594. transform: translateX(-100%);
  1595. transition: -webkit-transform .3s ease-in-out;
  1596. transition: transform .3s ease-in-out;
  1597. transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  1598. }
  1599. .options-panel.is-hidden {
  1600. visibility: hidden;
  1601. }
  1602. .options-panel.is-off-screen {
  1603. -webkit-transform: translateX(0);
  1604. transform: translateX(0);
  1605. }
  1606. }
  1607. @media (max-width: 320px) {
  1608. .options-panel {
  1609. margin-right: -100%;
  1610. width: 100%;
  1611. border: 0;
  1612. box-shadow: 5001px 5000px 0 5000px #fff;
  1613. }
  1614. .options-panel-back {
  1615. width: 100%;
  1616. }
  1617. }
  1618. .post-options {
  1619. background: #fff;
  1620. position: absolute;
  1621. right: 0;
  1622. width: 100%;
  1623. overflow-x: hidden;
  1624. }
  1625. .post-options .post-option-contents {
  1626. margin-left: 3px;
  1627. color: #32373c;
  1628. }
  1629. .post-option-forward:before {
  1630. position: absolute;
  1631. top: 50%;
  1632. right: 8px;
  1633. margin-top: -10px;
  1634. content: "\f345"
  1635. }
  1636. .post-option-back:before {
  1637. content: "\f341";
  1638. }
  1639. .lt-ie9 .options-panel,
  1640. .lt-ie9 .post-options {
  1641. border-left: 1px solid #e5e5e5;
  1642. }
  1643. .lt-ie9 .post-options.is-off-screen {
  1644. border: 0;
  1645. }
  1646. .post-option {
  1647. position: relative;
  1648. }
  1649. .post-options .post-option {
  1650. display: block;
  1651. width: 100%;
  1652. margin: 0;
  1653. padding: 13px 37px 13px 14px;
  1654. border: 0;
  1655. border-bottom: 1px solid #e5e5e5;
  1656. text-decoration: none;
  1657. text-align: left;
  1658. background: none;
  1659. color: #9ea7af;
  1660. text-overflow: ellipsis;
  1661. white-space: nowrap;
  1662. overflow: hidden;
  1663. transition: -webkit-transform .3s ease-in-out;
  1664. transition: transform .3s ease-in-out;
  1665. transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  1666. }
  1667. .post-options .post-option:focus {
  1668. outline: 0;
  1669. box-shadow: inset 5px 0 0 #00a0d2;
  1670. border-color: #e5e5e5;
  1671. }
  1672. .is-off-screen > .post-option {
  1673. right: 100%;
  1674. }
  1675. .is-hidden > .post-option {
  1676. visibility: hidden;
  1677. }
  1678. @media (min-width: 1px) {
  1679. .is-off-screen > .post-option {
  1680. right: auto;
  1681. -webkit-transform: translateX(-100%);
  1682. transform: translateX(-100%);
  1683. }
  1684. }
  1685. .post-option-title {
  1686. display: inline-block;
  1687. margin: 0 0 0 8px;
  1688. font-size: 14px;
  1689. font-weight: 400;
  1690. }
  1691. .setting-modal {
  1692. position: relative;
  1693. top: 0;
  1694. left: 0;
  1695. width: 100%;
  1696. overflow: hidden;
  1697. transition: -webkit-transform .3s ease-in-out;
  1698. transition: transform .3s ease-in-out;
  1699. transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
  1700. }
  1701. .setting-modal.is-hidden {
  1702. visibility: hidden;
  1703. height: 0;
  1704. }
  1705. .setting-modal.is-off-screen {
  1706. left: 100%;
  1707. }
  1708. @media (min-width: 1px) {
  1709. .setting-modal.is-off-screen {
  1710. left: 0;
  1711. -webkit-transform: translateX(100%);
  1712. transform: translateX(100%);
  1713. }
  1714. }
  1715. .press-this .modal-close {
  1716. display: block;
  1717. width: 100%;
  1718. padding: 13px 14px;
  1719. border: 0;
  1720. border-bottom: 1px solid #e5e5e5;
  1721. background: none;
  1722. color: #00a0d2;
  1723. text-decoration: none;
  1724. text-align: left;
  1725. }
  1726. .press-this .modal-close:focus {
  1727. outline: 0;
  1728. box-shadow: inset 5px 0 0 #00a0d2;
  1729. border-color: #e5e5e5;
  1730. }
  1731. .setting-title {
  1732. position: relative;
  1733. top: -1px;
  1734. margin-left: 11px;
  1735. }
  1736. /* Text editor */
  1737. #pressthis {
  1738. color: #404040;
  1739. resize: none;
  1740. padding-top: 30px;
  1741. font-size: 16px;
  1742. }
  1743. .wp-editor-wrap .quicktags-toolbar {
  1744. background: transparent;
  1745. border: none;
  1746. }
  1747. /* Switch editor buttons */
  1748. .wp-editor-wrap .wp-editor-tools {
  1749. z-index: 0;
  1750. }
  1751. .wp-editor-wrap .wp-editor-tabs {
  1752. padding: 2px;
  1753. }
  1754. .wp-editor-wrap .wp-switch-editor {
  1755. top: 0;
  1756. margin: 3px 0 0 5px;
  1757. padding: 3px 8px;
  1758. background: #f5f5f5;
  1759. color: #555;
  1760. border-color: #ccc;
  1761. }
  1762. .wp-editor-wrap .wp-switch-editor:hover {
  1763. background: #fafafa;
  1764. border-color: #999;
  1765. color: #23282d;
  1766. }
  1767. .wp-editor-wrap.tmce-active .switch-tmce,
  1768. .wp-editor-wrap.html-active .switch-html {
  1769. background: #fff;
  1770. border-color: #d8d8d8;
  1771. }
  1772. /* Inline link dialog */
  1773. .wp-link-input input {
  1774. border: 1px solid #ddd;
  1775. box-shadow: inset 0 1px 2px rgba( 0, 0, 0, 0.07 );
  1776. background-color: #fff;
  1777. color: #32373c;
  1778. outline: none;
  1779. transition: 0.05s border-color ease-in-out;
  1780. }
  1781. /* UI Autocomplete (for inline link and wpLink) */
  1782. .ui-autocomplete {
  1783. padding: 0;
  1784. margin: 0;
  1785. list-style: none;
  1786. position: absolute;
  1787. z-index: 10000;
  1788. border: 1px solid #5b9dd9;
  1789. box-shadow: 0 1px 2px rgba( 30, 140, 190, 0.8 );
  1790. background-color: #fff;
  1791. font-size: 14px;
  1792. }
  1793. .ui-autocomplete li {
  1794. margin-bottom: 0;
  1795. padding: 4px 10px;
  1796. white-space: nowrap;
  1797. text-align: left;
  1798. cursor: pointer;
  1799. }
  1800. /* Colors for the wplink toolbar autocomplete. */
  1801. .ui-autocomplete .ui-state-focus {
  1802. background-color: #ddd;
  1803. }
  1804. /* Colors for the tags autocomplete. */
  1805. .wp-tags-autocomplete .ui-state-focus {
  1806. background-color: #0073aa;
  1807. color: #fff;
  1808. }