You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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