update.css 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. #update-progress-icon {
  2. height: 32px;
  3. margin: 10px;
  4. background-size: 32px;
  5. }
  6. #update-progress-message-error,
  7. #update-progress-message-warnings {
  8. font-weight: 600;
  9. margin-bottom: 10px;
  10. }
  11. #update-progress-message {
  12. margin-bottom: 10px;
  13. }
  14. .update-show-detailed {
  15. padding: 13px;
  16. display: block;
  17. opacity: .75;
  18. }
  19. #body-login .update a.update-show-detailed {
  20. border-bottom: inherit;
  21. }
  22. #update-progress-detailed {
  23. text-align: left;
  24. }
  25. #body-login .warning.hidden {
  26. display: none;
  27. }
  28. /**
  29. * Below this is a copy of the original CSS because we moved to on-the-fly
  30. * generated CSS from SCSS which doesn't work during update
  31. */
  32. /** HEADER **/
  33. /* prevent ugly selection effect on accidental selection */
  34. #header {
  35. -webkit-user-select: none;
  36. -moz-user-select: none;
  37. -ms-user-select: none;
  38. }
  39. /* removed until content-focusing issue is fixed */
  40. #skip-to-content a {
  41. position: absolute;
  42. left: -10000px;
  43. top: auto;
  44. width: 1px;
  45. height: 1px;
  46. overflow: hidden;
  47. }
  48. #skip-to-content a:focus {
  49. left: 76px;
  50. top: -9px;
  51. color: #fff;
  52. width: auto;
  53. height: auto;
  54. }
  55. /* HEADERS ------------------------------------------------------------------ */
  56. #header .logo {
  57. background-image: url('../img/logo-icon.svg?v=1');
  58. background-repeat: no-repeat;
  59. background-size: 175px;
  60. background-position: center;
  61. width: 252px;
  62. height: 120px;
  63. margin: 0 auto;
  64. }
  65. /** STYLES **/
  66. /* Copyright (c) 2011, Jan-Christoph Borchardt, http://jancborchardt.net
  67. This file is licensed under the Affero General Public License version 3 or later.
  68. See the COPYING-README file. */
  69. 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; }
  70. html, body { height:100%; }
  71. article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; }
  72. body { line-height:1.5; }
  73. table { border-collapse:separate; border-spacing:0; white-space:nowrap; }
  74. caption, th, td { text-align:left; font-weight:normal; }
  75. table, td, th { vertical-align:middle; }
  76. a { border:0; color:#000; text-decoration:none;}
  77. a, a *, input, input *, select, .button span, label { cursor:pointer; }
  78. ul { list-style:none; }
  79. body {
  80. background-color: #ffffff;
  81. font-weight: 400;
  82. font-size: .8em;
  83. line-height: 1.6em;
  84. font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
  85. color: #000;
  86. height: auto;
  87. }
  88. #body-login {
  89. text-align: center;
  90. background-color: #0082c9;
  91. background-image: url('../img/background.jpg?v=1');
  92. background-position: 50% 50%;
  93. background-repeat: no-repeat;
  94. background-size: cover;
  95. }
  96. #nojavascript {
  97. position: fixed;
  98. top: 0;
  99. bottom: 0;
  100. height: 100%;
  101. width: 100%;
  102. z-index: 9000;
  103. text-align: center;
  104. background-color: rgba(0,0,0,0.5);
  105. color: #fff;
  106. line-height: 125%;
  107. font-size: 24px;
  108. }
  109. #nojavascript div {
  110. display: block;
  111. position: relative;
  112. width: 50%;
  113. top: 35%;
  114. margin: 0px auto;
  115. }
  116. #nojavascript a {
  117. color: #fff;
  118. border-bottom: 2px dotted #fff;
  119. }
  120. #nojavascript a:hover,
  121. #nojavascript a:focus {
  122. color: #ddd;
  123. }
  124. /* SCROLLING */
  125. ::-webkit-scrollbar {
  126. width: 5px;
  127. }
  128. ::-webkit-scrollbar-track-piece {
  129. background-color: transparent;
  130. }
  131. ::-webkit-scrollbar-thumb {
  132. background: #ddd;
  133. border-radius: 3px;
  134. }
  135. /* LOG IN & INSTALLATION ------------------------------------------------------------ */
  136. /* Some whitespace to the top */
  137. #body-login #header {
  138. padding-top: 100px;
  139. }
  140. #body-login {
  141. background-attachment: fixed; /* fix background gradient */
  142. height: 100%; /* fix sticky footer */
  143. }
  144. /* Dark subtle label text */
  145. #body-login p.info {
  146. text-align: center;
  147. color: #fff;
  148. }
  149. #body-login .update h2 {
  150. margin: 0 0 20px;
  151. }
  152. #body-login .update a {
  153. color: #fff;
  154. border-bottom: 1px solid #aaa;
  155. }
  156. #body-login .infogroup {
  157. margin-bottom: 15px;
  158. }
  159. #body-login p#message img {
  160. vertical-align: middle;
  161. padding: 5px;
  162. }
  163. #body-login p.info {
  164. margin: 0 auto;
  165. padding-top: 20px;
  166. -webkit-user-select: none;
  167. -moz-user-select: none;
  168. -ms-user-select: none;
  169. user-select: none;
  170. }
  171. #body-login p.info a {
  172. font-weight: 600;
  173. padding: 13px;
  174. margin: -13px;
  175. color: #fff;
  176. }
  177. #body-login .success {
  178. background:#d7fed7;
  179. border:1px solid #0f0;
  180. width: 35%;
  181. margin: 30px auto;
  182. padding:1em;
  183. text-align: center;
  184. }
  185. #body-login p.info a:hover,
  186. #body-login p.info a:focus {
  187. opacity: .6;
  188. }
  189. /* Warnings and errors are the same */
  190. #body-login .warning,
  191. #body-login .update,
  192. #body-login .error {
  193. display: block;
  194. padding: 10px;
  195. background-color: rgba(0,0,0,.3);
  196. color: #fff;
  197. text-align: left;
  198. border-radius: 3px;
  199. cursor: default;
  200. }
  201. #body-login .update {
  202. width: inherit;
  203. text-align: center;
  204. }
  205. #body-login .update .appList {
  206. list-style: disc;
  207. text-align: left;
  208. margin-left: 25px;
  209. margin-right: 25px;
  210. }
  211. #body-login .v-align {
  212. width: inherit;
  213. }
  214. .error a {
  215. color: #fff !important;
  216. font-weight: 600 !important;
  217. }
  218. .error a.button {
  219. color: #555 !important;
  220. display: inline-block;
  221. text-align: center;
  222. }
  223. .error pre {
  224. white-space: pre-wrap;
  225. text-align: left;
  226. }
  227. /* fixes for update page TODO should be fixed some time in a proper way */
  228. /* this is just for an error while updating the ownCloud instance */
  229. #body-login .updateProgress .error {
  230. margin-top: 10px;
  231. margin-bottom: 10px;
  232. }
  233. /* Log in and install button */
  234. #body-login input {
  235. font-size: 20px;
  236. margin: 5px;
  237. padding: 11px 10px 9px;
  238. }
  239. #body-login input.login {
  240. width: 269px;
  241. background-position: right 16px center;
  242. }
  243. /* Sticky footer */
  244. #body-login .wrapper {
  245. min-height: 100%;
  246. margin: 0 auto -70px;
  247. width: 300px;
  248. }
  249. #body-login footer, #body-login .push {
  250. height: 70px;
  251. }
  252. code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; }
  253. /* for IE10 */
  254. @-ms-viewport {
  255. width: device-width;
  256. }
  257. /** APPS **/
  258. /* buttons */
  259. button.loading {
  260. background-image: url('../img/loading.gif');
  261. background-position: right 10px center; background-repeat: no-repeat;
  262. background-size: 16px;
  263. padding-right: 30px;
  264. }
  265. /* heading styles */
  266. h2 {
  267. font-size: 20px;
  268. font-weight: 300;
  269. margin-bottom: 12px;
  270. line-height: 140%;
  271. }
  272. h3 {
  273. font-size: 15px;
  274. font-weight: 300;
  275. margin: 12px 0;
  276. }
  277. /* do not use italic typeface style, instead lighter color */
  278. em {
  279. font-style: normal;
  280. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  281. opacity: .5;
  282. }
  283. /** ICONS **/
  284. [class^="icon-"], [class*=" icon-"] {
  285. background-repeat: no-repeat;
  286. background-position: center;
  287. min-width: 16px;
  288. min-height: 16px;
  289. }
  290. /* general assets */
  291. .icon-loading-dark {
  292. position: relative;
  293. }
  294. .icon-loading-dark:after {
  295. z-index: 2;
  296. content: "";
  297. height: 30px;
  298. width: 30px;
  299. margin: -16px 0 0 -16px;
  300. position: absolute;
  301. top: 50%;
  302. left: 50%;
  303. border-radius: 100%;
  304. -webkit-animation: rotate .8s infinite linear;
  305. animation: rotate .8s infinite linear;
  306. -webkit-transform-origin: center;
  307. -ms-transform-origin: center;
  308. transform-origin: center;
  309. }
  310. .icon-loading-dark:after {
  311. border: 2px solid rgba(150, 150, 150, .5);
  312. border-top-color: rgb(100, 100, 100);
  313. }
  314. .icon-loading-dark:after,
  315. .icon-loading-small-dark:after {
  316. border: 2px solid rgba(187, 187, 187, .5);
  317. border-top-color: #bbb;
  318. }
  319. /* Css replaced elements don't have ::after nor ::before */
  320. 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 {
  321. background-image: url("../img/loading-dark.gif");
  322. }
  323. @-webkit-keyframes rotate {
  324. from {
  325. -webkit-transform: rotate(0deg);
  326. transform: rotate(0deg);
  327. }
  328. to {
  329. -webkit-transform: rotate(360deg);
  330. transform: rotate(360deg);
  331. }
  332. }
  333. @keyframes rotate {
  334. from {
  335. -webkit-transform: rotate(0deg);
  336. transform: rotate(0deg);
  337. }
  338. to {
  339. -webkit-transform: rotate(360deg);
  340. transform: rotate(360deg);
  341. }
  342. }
  343. .icon-32 {
  344. background-size: 32px !important;
  345. }
  346. .icon-checkmark-white {
  347. background-image: url('../img/actions/checkmark-white.svg?v=1');
  348. }
  349. .icon-error-white {
  350. background-image: url('../img/actions/error-white.svg?v=1');
  351. }
  352. /* INPUTS */
  353. /* specifically override browser styles */
  354. input {
  355. font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif;
  356. }
  357. input[type="button"] {
  358. width: 130px;
  359. margin: 3px 3px 3px 0;
  360. padding: 7px 6px 5px;
  361. font-size: 13px;
  362. background-color: #fff;
  363. color: #333;
  364. border: 1px solid #ddd;
  365. outline: none;
  366. border-radius: 3px;
  367. }
  368. /* correctly align images inside of buttons */
  369. input img {
  370. vertical-align: text-bottom;
  371. }
  372. /* BUTTONS */
  373. input[type="button"] {
  374. width: auto;
  375. min-width: 25px;
  376. padding: 5px;
  377. background-color: rgba(240,240,240,.9);
  378. font-weight: 600;
  379. color: #555;
  380. border: 1px solid rgba(240,240,240,.9);
  381. cursor: pointer;
  382. }
  383. input[type="button"]:hover, input[type="button"]:focus {
  384. background-color: rgba(255, 255, 255, .95);
  385. color: #111;
  386. }
  387. input[type="button"] img {
  388. border: none;
  389. box-shadow: none;
  390. }