guest.css 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921
  1. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  2. This file is licensed under the Affero General Public License version 3 or later.
  3. See the COPYING-README file. */
  4. /* Default and reset */
  5. html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section { margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; cursor:default; }
  6. html { height:100%; }
  7. article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; }
  8. body { line-height:1.5; }
  9. table { border-collapse:separate; border-spacing:0; white-space:nowrap; }
  10. caption, th, td { text-align:left; font-weight:normal; }
  11. table, td, th { vertical-align:middle; }
  12. a { border:0; color:#000; text-decoration:none;}
  13. a, a *, input, input *, select, .button span, label { cursor:pointer; }
  14. ul { list-style:none; }
  15. body {
  16. background-color: #ffffff;
  17. font-weight: normal;
  18. /* bring the default font size up to 14px */
  19. font-size: .875em;
  20. line-height: 1.6em;
  21. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  22. color: #000;
  23. text-align: center;
  24. background-color: #0082c9;
  25. background-image: url('../img/background.png?v=2');
  26. background-image: url('../img/background.png?v=2'), linear-gradient(40deg, #0082c9 0%, rgba(28,175,255,1) 100%);
  27. background-position: 50% 50%;
  28. background-repeat: repeat;
  29. background-size: 275px, contain;
  30. background-attachment: fixed; /* fix background gradient */
  31. min-height: 100%; /* fix sticky footer */
  32. height: auto;
  33. }
  34. /* Various fonts settings */
  35. #body-login a {
  36. color: #fff;
  37. font-weight: 600;
  38. }
  39. #body-login a:not(.button):hover,
  40. #body-login a:not(.button):focus {
  41. text-decoration: underline;
  42. text-decoration-skip-ink: auto;
  43. }
  44. #showAdvanced {
  45. color: #fff;
  46. }
  47. em {
  48. font-style: normal;
  49. opacity: .5;
  50. }
  51. /* heading styles */
  52. h2,
  53. h3,
  54. h4 {
  55. font-weight: bold;
  56. }
  57. h2 {
  58. font-size: 20px;
  59. margin-bottom: 12px;
  60. line-height: 140%;
  61. }
  62. h3 {
  63. font-size: 15px;
  64. margin: 12px 0;
  65. }
  66. /* Global content */
  67. body {
  68. display: flex;
  69. flex-direction: column;
  70. justify-content: center;
  71. align-items: center;
  72. }
  73. #header .logo {
  74. background-image: url('../img/logo/logo.svg?v=1');
  75. background-repeat: no-repeat;
  76. background-size: 175px;
  77. background-position: center;
  78. width: 256px;
  79. min-height: 128px;
  80. max-height: 200px;
  81. margin: 0 auto;
  82. position: relative;
  83. left: unset;
  84. }
  85. #header .logo img {
  86. opacity: 0;
  87. max-width: 100%;
  88. max-height: 200px;
  89. }
  90. .wrapper {
  91. width: 100%;
  92. max-width: 700px;
  93. margin-top: 10vh;
  94. }
  95. /* Default FORM */
  96. form {
  97. position: relative;
  98. margin: auto;
  99. padding: 0;
  100. }
  101. form fieldset {
  102. width: 260px;
  103. margin: auto auto 20px;
  104. -webkit-user-select: none;
  105. -moz-user-select: none;
  106. -ms-user-select: none;
  107. user-select: none;
  108. }
  109. form #sqliteInformation {
  110. margin-top: -20px;
  111. margin-bottom: 20px;
  112. }
  113. form #adminaccount {
  114. margin-bottom: 15px;
  115. }
  116. form fieldset legend, #datadirContent label {
  117. width: 100%;
  118. }
  119. #datadirContent label {
  120. display: block;
  121. margin: 0;
  122. }
  123. form #datadirField legend {
  124. margin-bottom: 15px;
  125. }
  126. /* View more button */
  127. #showAdvanced {
  128. padding: 13px; /* increase clickable area of Advanced dropdown */
  129. }
  130. #showAdvanced img {
  131. vertical-align: middle; /* adjust position of Advanced dropdown arrow */
  132. }
  133. /* Buttons and input */
  134. #submit-wrapper,
  135. #reset-password-wrapper,
  136. #alternative-logins {
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. position: relative; /* Make the wrapper the containing block of its
  141. absolutely positioned descendant icons */
  142. }
  143. #alternative-logins {
  144. margin: auto;
  145. display: block;
  146. min-width: 260px;
  147. max-width: 400px;
  148. overflow: hidden;
  149. }
  150. #alternative-logins a {
  151. margin: 10px 5px;
  152. display: block;
  153. font-size: 15px;
  154. white-space: nowrap;
  155. overflow: hidden;
  156. text-overflow: ellipsis;
  157. }
  158. #alternative-logins a.button::before {
  159. content: "";
  160. background-repeat: no-repeat;
  161. background-size: contain;
  162. width: 0;
  163. margin-right: 0;
  164. height: 18px;
  165. display: inline-block;
  166. vertical-align: bottom;
  167. }
  168. #alternative-logins .button {
  169. color: #0082c9;
  170. padding: 12px 20px;
  171. }
  172. @media only screen and (max-width: 1024px) {
  173. .wrapper {
  174. margin-top: 0;
  175. }
  176. #alternative-logins {
  177. margin: auto;
  178. }
  179. }
  180. #submit-wrapper .submit-icon,
  181. #reset-password-wrapper .submit-icon {
  182. position: absolute;
  183. top: 22px;
  184. right: 24px;
  185. transition: right 100ms ease-in-out;
  186. pointer-events: none; /* The submit icon is positioned on the submit button.
  187. From the user point of view the icon is part of the
  188. button, so the clicks on the icon have to be
  189. applied to the button instead. */
  190. }
  191. #submit-wrapper {
  192. margin: 0 auto;
  193. }
  194. #submit-wrapper input.login:hover ~ .submit-icon.icon-confirm-white,
  195. #submit-wrapper input.login:focus ~ .submit-icon.icon-confirm-white,
  196. #submit-wrapper input.login:active ~ .submit-icon.icon-confirm-white {
  197. right: 20px;
  198. }
  199. #reset-password-submit {
  200. padding: 10px;
  201. overflow: hidden;
  202. text-overflow: ellipsis;
  203. }
  204. #submit-wrapper .icon-loading-small {
  205. position: absolute;
  206. top: 22px;
  207. right: 26px;
  208. }
  209. input, textarea, select, button, div[contenteditable=true] {
  210. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  211. }
  212. input,
  213. input:not([type='range']),
  214. a.button {
  215. font-size: 20px;
  216. margin: 5px;
  217. padding: 11px 10px 9px;
  218. outline: none;
  219. border-radius: 3px; /* --border-radius */
  220. -webkit-appearance: none;
  221. }
  222. input[type='submit'],
  223. input[type='submit'].icon-confirm,
  224. input[type='button'],
  225. button,
  226. a.button,
  227. .button,
  228. select {
  229. display: inline-block;
  230. width: auto;
  231. min-width: 25px;
  232. padding: 12px;
  233. background-color: white;
  234. font-weight: bold;
  235. color: #555;
  236. border: none;
  237. border-radius: 100px; /* --border-radius-pill */
  238. cursor: pointer;
  239. }
  240. input[type='text'],
  241. input[type='tel'],
  242. input[type='password'],
  243. input[type='email'] {
  244. width: 249px;
  245. background: #fff;
  246. color: #555;
  247. cursor: text;
  248. font-family: inherit;
  249. -webkit-appearance: textfield;
  250. -moz-appearance: textfield;
  251. box-sizing: content-box;
  252. border: none;
  253. font-weight: normal;
  254. }
  255. input[type='password'].password-with-toggle, input[type='text'].password-with-toggle {
  256. width: 219px;
  257. padding-right: 40px;
  258. }
  259. .toggle-password {
  260. position: absolute;
  261. top: 17px;
  262. right: 20px;
  263. }
  264. input.login {
  265. width: 260px;
  266. height: 50px;
  267. background-position: right 16px center;
  268. }
  269. input[type='submit'],
  270. input[type='submit'].icon-confirm,
  271. input.updateButton,
  272. input.update-continue {
  273. padding: 10px 20px; /* larger log in and installation buttons */
  274. overflow: hidden;
  275. text-overflow: ellipsis;
  276. }
  277. .updateAnyways a.updateAnywaysButton {
  278. font-size: 14px;
  279. padding: 10px 20px;
  280. color: #666 !important;
  281. display: inline-block;
  282. border-radius: 100px; /* --border-radius-pill */
  283. margin: 15px 5px;
  284. }
  285. .updateAnyways a.updateAnywaysButton:hover {
  286. color: #222 !important;
  287. }
  288. /* Get rid of the inside dotted line in Firefox */
  289. button::-moz-focus-inner,
  290. input::-moz-focus-inner {
  291. border: 0;
  292. }
  293. input.primary,
  294. button.primary,
  295. a.primary {
  296. border: 1px solid #fff;
  297. background-color: #0082c9;
  298. color: #fff;
  299. transition: color 100ms ease-in-out;
  300. }
  301. input.primary:not(:disabled):hover,
  302. input.primary:not(:disabled):focus,
  303. button.primary:not(:disabled):hover,
  304. button.primary:not(:disabled):focus,
  305. a.primary:not(:disabled):hover,
  306. a.primary:not(:disabled):focus {
  307. color: rgba(255, 255, 255, .8);
  308. }
  309. /* Checkboxes - white only for login */
  310. input[type='checkbox'].checkbox {
  311. position: absolute;
  312. left: -10000px;
  313. top: auto;
  314. width: 1px;
  315. height: 1px;
  316. overflow: hidden;
  317. }
  318. input[type='checkbox'].checkbox + label {
  319. user-select: none;
  320. }
  321. input[type='checkbox'].checkbox:disabled + label,
  322. input[type='checkbox'].checkbox:disabled + label:before {
  323. cursor: default;
  324. }
  325. input[type='checkbox'].checkbox + label:before {
  326. content: '';
  327. display: inline-block;
  328. vertical-align: middle;
  329. margin: 3px;
  330. margin-top: 1px;
  331. border: 1px solid #888;
  332. border-radius: 1px;
  333. height: 10px;
  334. width: 10px;
  335. background-position: center;
  336. }
  337. input[type='checkbox'].checkbox--white + label:before {
  338. border-color: #ddd;
  339. }
  340. input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before,
  341. input[type='checkbox'].checkbox--white:focus + label:before {
  342. border-color: #fff;
  343. }
  344. input[type='checkbox'].checkbox--white:checked + label:before {
  345. background-color: #eee;
  346. border-color: #eee;
  347. }
  348. input[type='checkbox'].checkbox--white:disabled + label:before {
  349. background-color: #666 !important;
  350. border-color: #999 !important;
  351. }
  352. input[type='checkbox'].checkbox--white:checked:disabled + label:before {
  353. border-color: #666;
  354. background-color: #222;
  355. }
  356. input[type='checkbox'].checkbox--white:checked + label:before {
  357. background-color: transparent !important;
  358. border-color: #fff !important;
  359. background-image: url('../img/actions/checkbox-mark-white.svg');
  360. }
  361. /* Password strength meter */
  362. .strengthify-wrapper {
  363. display: inline-block;
  364. position: relative;
  365. top: -20px;
  366. width: 269px;
  367. border-radius: 0 0 3px 3px;
  368. overflow: hidden;
  369. height: 3px;
  370. }
  371. .tooltip-inner {
  372. font-weight: bold;
  373. color: #ccc;
  374. padding: 3px 6px;
  375. text-align: center;
  376. }
  377. /* Show password toggle */
  378. #show, #dbpassword-toggle {
  379. position: absolute;
  380. right: 1em;
  381. top: .8em;
  382. float: right;
  383. }
  384. #show + label, #dbpassword-toggle + label {
  385. right: 21px;
  386. top: 15px !important;
  387. margin: -14px !important;
  388. padding: 14px !important;
  389. }
  390. #show:checked + label, #dbpassword-toggle:checked + label, #personal-show:checked + label {
  391. opacity: .8;
  392. }
  393. #show + label, #dbpassword-toggle + label, #personal-show + label {
  394. position: absolute !important;
  395. height: 20px;
  396. width: 24px;
  397. background-image: url('../img/actions/toggle.svg?v=1');
  398. background-repeat: no-repeat;
  399. background-position: center;
  400. opacity: .3;
  401. }
  402. #show + label:before, #dbpassword-toggle + label:before, #personal-show + label:before {
  403. display: none;
  404. }
  405. /* Feedback for keyboard focus and mouse hover */
  406. #show:focus + label, #dbpassword-toggle:focus + label, #personal-show:focus + label,
  407. #show + label:hover, #dbpassword-toggle + label:hover, #personal-show + label:hover {
  408. opacity: 1;
  409. }
  410. #pass2, input[name='personal-password-clone'] {
  411. padding: .6em 2.5em .4em .4em;
  412. width: 8em;
  413. }
  414. #personal-show + label {
  415. height: 14px;
  416. margin-top: -25px;
  417. left: 295px;
  418. display: block;
  419. }
  420. #passwordbutton {
  421. margin-left: .5em;
  422. }
  423. /* Dark subtle label text */
  424. p.info,
  425. form fieldset legend,
  426. #datadirContent label,
  427. form fieldset .warning-info,
  428. form input[type='checkbox']+label {
  429. text-align: center;
  430. color: #fff;
  431. }
  432. /* overrides another !important statement that sets this to unreadable black */
  433. form .warning input[type='checkbox']:hover+label,
  434. form .warning input[type='checkbox']:focus+label,
  435. form .warning input[type='checkbox']+label {
  436. color: #fff !important;
  437. }
  438. .body-login-container.two-factor {
  439. max-width: 290px;
  440. margin: 15px auto 0;
  441. }
  442. .two-factor-provider {
  443. display: flex;
  444. border-radius: 3px; /* --border-radius */
  445. margin: 12px 0;
  446. border: 1px solid transparent;
  447. text-align: left;
  448. align-items: center;
  449. text-decoration: none !important;
  450. }
  451. .two-factor-provider:hover,
  452. .two-factor-provider:focus,
  453. .two-factor-provider:active {
  454. border: 1px solid #fff;
  455. }
  456. .two-factor-provider img {
  457. width: 64px;
  458. height: 64px;
  459. padding: 0 12px;
  460. }
  461. .two-factor-provider div {
  462. margin: 12px 0;
  463. }
  464. .two-factor-provider h3 {
  465. margin: 0;
  466. }
  467. .two-factor-provider p {
  468. font-weight: normal;
  469. }
  470. .two-factor-icon {
  471. width: 100px;
  472. display: block;
  473. margin: 0 auto;
  474. }
  475. .two-factor-submit {
  476. width: 100%;
  477. padding: 10px;
  478. margin: 0 0 5px 0;
  479. border-radius: 100px; /* --border-radius-pill */
  480. font-size: 20px;
  481. }
  482. .two-factor-primary {
  483. /* Fix for 'Use backup codes' button not taking correct styles */
  484. padding: 14px !important;
  485. width: 226px;
  486. }
  487. .two-factor-secondary {
  488. display: inline-block;
  489. padding: 12px;
  490. }
  491. /* Additional login options */
  492. #remember_login {
  493. margin: 18px 5px 0 16px !important;
  494. }
  495. .lost-password-container {
  496. display: inline-block;
  497. margin: 10px 0;
  498. text-align: center;
  499. width: 100%;
  500. }
  501. #lost-password,
  502. #lost-password-back,
  503. #reset-password-wrapper + a {
  504. display: inline-block;
  505. font-weight: normal !important;
  506. padding: 12px;
  507. color: #fff;
  508. cursor: pointer;
  509. text-shadow: 0 0 2px rgba(0, 0, 0, .4); /* better readability on bright background */
  510. }
  511. #lost-password {
  512. margin-top: -6px;
  513. }
  514. #forgot-password {
  515. padding: 11px;
  516. float: right;
  517. color: #fff;
  518. }
  519. /* Alternative Logins */
  520. #alternative-logins legend {
  521. margin-bottom: 10px;
  522. }
  523. #alternative-logins li {
  524. height: 40px;
  525. white-space: nowrap;
  526. padding: 05px;
  527. }
  528. #alternative-logins li a {
  529. width: 100%;
  530. display: inline-block;
  531. text-align: center;
  532. box-sizing: border-box;
  533. background-color: #0082c9;
  534. color: white;
  535. border-radius: 100px; /* --border-radius-pill */
  536. }
  537. /* fixes for update page TODO should be fixed some time in a proper way */
  538. /* this is just for an error while updating the ownCloud instance */
  539. .updateProgress .error {
  540. margin-top: 10px;
  541. margin-bottom: 10px;
  542. }
  543. /* Database selector on install page */
  544. form #selectDbType {
  545. text-align:center;
  546. white-space: nowrap;
  547. margin: 0;
  548. display: flex;
  549. }
  550. form #selectDbType .info {
  551. white-space: normal;
  552. }
  553. form #selectDbType label {
  554. flex-grow: 1;
  555. margin: 0 -1px 5px;
  556. font-size: 12px;
  557. background:#f8f8f8;
  558. color:#888;
  559. cursor:pointer;
  560. border: 1px solid #ddd;
  561. padding: 10px 17px;
  562. }
  563. form #selectDbType label.ui-state-hover,
  564. form #selectDbType label.ui-state-active {
  565. font-weight: normal;
  566. color:#000;
  567. background-color:#e8e8e8;
  568. }
  569. form #selectDbType .ui-visual-focus {
  570. box-shadow: none;
  571. }
  572. form #selectDbType label span {
  573. display: none;
  574. }
  575. /* Nicely grouping input field sets */
  576. .grouptop,
  577. .groupmiddle,
  578. .groupbottom {
  579. position: relative;
  580. -webkit-user-select: none;
  581. -moz-user-select: none;
  582. -ms-user-select: none;
  583. user-select: none;
  584. }
  585. .grouptop input {
  586. margin-bottom: 0 !important;
  587. border-bottom: 0 !important;
  588. border-bottom-left-radius: 0 !important;
  589. border-bottom-right-radius: 0 !important;
  590. }
  591. .groupmiddle input {
  592. margin-top: 0 !important;
  593. margin-bottom: 0 !important;
  594. border-top: 0 !important;
  595. border-bottom: 0 !important;
  596. border-radius: 0 !important;
  597. box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important;
  598. }
  599. .groupbottom input {
  600. margin-top: 0 !important;
  601. border-top: 0 !important;
  602. border-top-right-radius: 0 !important;
  603. border-top-left-radius: 0 !important;
  604. box-shadow: 0 1px 0 rgba(0,0,0,.1) inset !important;
  605. }
  606. .groupbottom input[type=submit] {
  607. box-shadow: none !important;
  608. }
  609. #install-recommended-apps + label span {
  610. display: inline-block;
  611. opacity: .7;
  612. }
  613. /* Errors */
  614. /* Warnings and errors are the same */
  615. .body-login-container,
  616. .warning,
  617. .update,
  618. .error {
  619. display: block;
  620. margin-top: 15px;
  621. padding: 15px;
  622. background-color: rgba(0,0,0,.3);
  623. color: #fff;
  624. text-align: left;
  625. word-wrap: break-word;
  626. border-radius: 10px; /* --border-radius-large */
  627. cursor: default;
  628. -moz-user-select: text;
  629. -webkit-user-select: text;
  630. -ms-user-select: text;
  631. user-select: text;
  632. }
  633. .body-login-container h2,
  634. .warning h2,
  635. .update h2,
  636. .error h2 {
  637. color: #fff;
  638. text-align: center;
  639. }
  640. /* TODO: Change all .warning/.update/.error to .body-login-container */
  641. .body-login-container .icon-big {
  642. background-size: 70px;
  643. height: 70px;
  644. }
  645. .body-login-container form {
  646. width: initial;
  647. }
  648. .body-login-container p:not(:last-child) {
  649. margin-bottom: 12px;
  650. }
  651. .warning.updateAnyways {
  652. text-align: center;
  653. }
  654. .warning legend,
  655. .warning a,
  656. .error a {
  657. color: #fff !important;
  658. font-weight: bold !important;
  659. opacity: 1;
  660. }
  661. .error a.button {
  662. color: #555 !important;
  663. display: inline-block;
  664. text-align: center;
  665. }
  666. .error pre {
  667. white-space: pre-wrap;
  668. text-align: left;
  669. }
  670. .error-wide {
  671. width: 700px;
  672. margin-top: 35px;
  673. }
  674. .error-wide .button {
  675. color: black !important;
  676. }
  677. .warning-input {
  678. border-color: #ce3702 !important;
  679. }
  680. a.warning {
  681. cursor: pointer;
  682. }
  683. fieldset.warning legend,
  684. fieldset.update legend {
  685. top: 18px;
  686. position: relative;
  687. }
  688. fieldset.warning legend + p,
  689. fieldset.update legend + p {
  690. margin-top: 12px;
  691. }
  692. /* Various paragraph styles */
  693. .infogroup {
  694. margin: 8px 0;
  695. }
  696. .infogroup:last-child {
  697. margin-bottom: 0;
  698. }
  699. p.info {
  700. margin: 20px auto;
  701. text-shadow: 0 0 2px rgba(0, 0, 0, .4); /* better readability on bright background */
  702. -webkit-user-select: none;
  703. -moz-user-select: none;
  704. -ms-user-select: none;
  705. user-select: none;
  706. }
  707. /* Update */
  708. .update {
  709. width: inherit;
  710. text-align: center;
  711. }
  712. .update .appList {
  713. list-style: disc;
  714. text-align: left;
  715. margin-left: 25px;
  716. margin-right: 25px;
  717. }
  718. .update img.float-spinner {
  719. float: left;
  720. }
  721. .update a.update-show-detailed {
  722. border-bottom: inherit;
  723. }
  724. #update-progress-detailed {
  725. text-align: left;
  726. margin-bottom: 12px;
  727. }
  728. .update-show-detailed {
  729. padding: 12px;
  730. display: block;
  731. opacity: .75;
  732. }
  733. .update-show-detailed .icon-caret-white {
  734. display: inline-block;
  735. vertical-align: middle;
  736. }
  737. #update-progress-icon {
  738. height: 32px;
  739. margin: 10px;
  740. background-size: 32px;
  741. }
  742. /* Icons */
  743. .icon-info-white {
  744. background-image: url('../img/actions/info-white.svg?v=2');
  745. }
  746. .icon-error-white {
  747. background-image: url('../img/actions/error-white.svg?v=1');
  748. }
  749. .icon-caret-white {
  750. background-image: url('../img/actions/caret-white.svg?v=1');
  751. }
  752. .icon-confirm {
  753. background-image: url('../img/actions/confirm.svg?v=2');
  754. }
  755. .icon-confirm-white {
  756. background-image: url('../img/actions/confirm-white.svg?v=2');
  757. }
  758. .icon-checkmark-white {
  759. background-image: url('../img/actions/checkmark-white.svg?v=1');
  760. }
  761. /* Loading */
  762. .float-spinner {
  763. margin-top: -32px;
  764. padding-top: 32px;
  765. height: 32px;
  766. display: none;
  767. }
  768. [class^='icon-'], [class*=' icon-'] {
  769. background-repeat: no-repeat;
  770. background-position: center;
  771. min-width: 16px;
  772. min-height: 16px;
  773. }
  774. .loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark {
  775. position: relative;
  776. }
  777. .loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
  778. z-index: 2;
  779. content: '';
  780. height: 32px;
  781. width: 32px;
  782. margin: -17px 0 0 -17px;
  783. position: absolute;
  784. top: 50%;
  785. left: 50%;
  786. border-radius: 100%;
  787. -webkit-animation: rotate .8s infinite linear;
  788. animation: rotate .8s infinite linear;
  789. -webkit-transform-origin: center;
  790. -ms-transform-origin: center;
  791. transform-origin: center;
  792. }
  793. .loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after {
  794. border: 2px solid rgba(150, 150, 150, 0.5);
  795. border-top-color: #646464;
  796. }
  797. .icon-loading-dark:after, .icon-loading-small-dark:after {
  798. border: 2px solid rgba(187, 187, 187, 0.5);
  799. border-top-color: #bbb;
  800. }
  801. .icon-loading-small:after, .icon-loading-small-dark:after {
  802. height: 16px;
  803. width: 16px;
  804. margin: -9px 0 0 -9px;
  805. }
  806. /* Css replaced elements don't have ::after nor ::before */
  807. img.icon-loading, object.icon-loading, video.icon-loading, button.icon-loading, textarea.icon-loading, input.icon-loading, select.icon-loading, div[contenteditable=true].icon-loading {
  808. background-image: url('../img/loading.gif');
  809. }
  810. img.icon-loading-dark, object.icon-loading-dark, video.icon-loading-dark, button.icon-loading-dark, textarea.icon-loading-dark, input.icon-loading-dark, select.icon-loading-dark, div[contenteditable=true].icon-loading-dark {
  811. background-image: url('../img/loading-dark.gif');
  812. }
  813. img.icon-loading-small, object.icon-loading-small, video.icon-loading-small, button.icon-loading-small, textarea.icon-loading-small, input.icon-loading-small, select.icon-loading-small, div[contenteditable=true].icon-loading-small {
  814. background-image: url('../img/loading-small.gif');
  815. }
  816. img.icon-loading-small-dark, object.icon-loading-small-dark, video.icon-loading-small-dark, button.icon-loading-small-dark, textarea.icon-loading-small-dark, input.icon-loading-small-dark, select.icon-loading-small-dark, div[contenteditable=true].icon-loading-small-dark {
  817. background-image: url('../img/loading-small-dark.gif');
  818. }
  819. @-webkit-keyframes rotate {
  820. from {
  821. -webkit-transform: rotate(0deg);
  822. transform: rotate(0deg);
  823. }
  824. to {
  825. -webkit-transform: rotate(360deg);
  826. transform: rotate(360deg);
  827. }
  828. }
  829. @keyframes rotate {
  830. from {
  831. -webkit-transform: rotate(0deg);
  832. transform: rotate(0deg);
  833. }
  834. to {
  835. -webkit-transform: rotate(360deg);
  836. transform: rotate(360deg);
  837. }
  838. }
  839. /* FOOTER */
  840. footer {
  841. height: 70px;
  842. margin-top: auto;
  843. }
  844. footer .info .entity-name {
  845. font-weight: bold;
  846. }
  847. .hidden {
  848. display: none;
  849. }
  850. /* keep the labels for screen readers but hide them since we use placeholders */
  851. label.infield,
  852. .hidden-visually {
  853. position: absolute;
  854. left: -10000px;
  855. top: -10000px;
  856. width: 1px;
  857. height: 1px;
  858. overflow: hidden;
  859. }
  860. a.legal {
  861. font-size: smaller;
  862. }