|
|
@ -3,24 +3,36 @@ |
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc. |
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc. |
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later |
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
@use 'animations.scss'; |
|
|
|
@use 'animations'; |
|
|
|
|
|
|
|
|
|
|
|
/* Default and reset */ |
|
|
|
/* Default and reset */ |
|
|
|
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; } |
|
|
|
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; } |
|
|
|
|
|
|
|
|
|
|
|
html { height:100%; } |
|
|
|
html { height:100%; } |
|
|
|
|
|
|
|
|
|
|
|
article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; } |
|
|
|
article, aside, dialog, figure, footer, header, hgroup, nav, section { display:block; } |
|
|
|
body { line-height:1.5; } |
|
|
|
|
|
|
|
table { border-collapse:separate; border-spacing:0; white-space:nowrap; } |
|
|
|
table { border-collapse:separate; border-spacing:0; white-space:nowrap; } |
|
|
|
caption, th, td { text-align:left; font-weight:normal; } |
|
|
|
|
|
|
|
|
|
|
|
caption, th, td { text-align:start; font-weight:normal; } |
|
|
|
|
|
|
|
|
|
|
|
table, td, th { vertical-align:middle; } |
|
|
|
table, td, th { vertical-align:middle; } |
|
|
|
|
|
|
|
|
|
|
|
a { border:0; color: var(--color-main-text); text-decoration:none;} |
|
|
|
a { border:0; color: var(--color-main-text); text-decoration:none;} |
|
|
|
|
|
|
|
|
|
|
|
a, a *, input, input *, select, .button span, label { cursor:pointer; } |
|
|
|
a, a *, input, input *, select, .button span, label { cursor:pointer; } |
|
|
|
|
|
|
|
|
|
|
|
ul { list-style:none; } |
|
|
|
ul { list-style:none; } |
|
|
|
|
|
|
|
|
|
|
|
body { |
|
|
|
body { |
|
|
|
font-weight: normal; |
|
|
|
/* Guest content uses flexbox */ |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
/* bring the default font size up to 14px */ |
|
|
|
/* bring the default font size up to 14px */ |
|
|
|
font-size: .875em; |
|
|
|
font-size: .875em; |
|
|
|
|
|
|
|
font-weight: normal; |
|
|
|
line-height: 1.6em; |
|
|
|
line-height: 1.6em; |
|
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
|
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, Oxygen-Sans, Cantarell, Ubuntu, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; |
|
|
|
color: var(--color-background-plain-text, #ffffff); |
|
|
|
color: var(--color-background-plain-text, #ffffff); |
|
|
@ -73,19 +85,13 @@ h2 { |
|
|
|
margin-bottom: 12px; |
|
|
|
margin-bottom: 12px; |
|
|
|
line-height: 140%; |
|
|
|
line-height: 140%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
h3 { |
|
|
|
h3 { |
|
|
|
font-size: 15px; |
|
|
|
font-size: 15px; |
|
|
|
margin: 12px 0; |
|
|
|
margin: 12px 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Global content */ |
|
|
|
/* Global content */ |
|
|
|
body { |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#header { |
|
|
|
#header { |
|
|
|
.logo { |
|
|
|
.logo { |
|
|
|
background-image: var(--image-logo, url('../../core/img/logo/logo.svg')); |
|
|
|
background-image: var(--image-logo, url('../../core/img/logo/logo.svg')); |
|
|
@ -112,6 +118,7 @@ form { |
|
|
|
margin: auto; |
|
|
|
margin: auto; |
|
|
|
padding: 0; |
|
|
|
padding: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form.install-form { |
|
|
|
form.install-form { |
|
|
|
max-width: 300px; |
|
|
|
max-width: 300px; |
|
|
|
} |
|
|
|
} |
|
|
@ -120,6 +127,7 @@ form.install-form fieldset, |
|
|
|
form.install-form fieldset input { |
|
|
|
form.install-form fieldset input { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form.install-form .strengthify-wrapper { |
|
|
|
form.install-form .strengthify-wrapper { |
|
|
|
bottom: 17px; |
|
|
|
bottom: 17px; |
|
|
|
width: calc(100% - 8px); |
|
|
|
width: calc(100% - 8px); |
|
|
@ -135,24 +143,30 @@ form #sqliteInformation { |
|
|
|
margin-top: 0.5rem; |
|
|
|
margin-top: 0.5rem; |
|
|
|
margin-bottom: 20px; |
|
|
|
margin-bottom: 20px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form #adminaccount, form #use_other_db { |
|
|
|
form #adminaccount, form #use_other_db { |
|
|
|
margin-bottom: 15px; |
|
|
|
margin-bottom: 15px; |
|
|
|
text-align: start; |
|
|
|
text-align: start; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form #adminaccount > legend, |
|
|
|
form #adminaccount > legend, |
|
|
|
form #adminlogin { |
|
|
|
form #adminlogin { |
|
|
|
margin-bottom: 1rem; |
|
|
|
margin-bottom: 1rem; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form #advancedHeader { |
|
|
|
form #advancedHeader { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form fieldset legend, #datadirContent label { |
|
|
|
form fieldset legend, #datadirContent label { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#datadirContent label { |
|
|
|
#datadirContent label { |
|
|
|
display: block; |
|
|
|
display: block; |
|
|
|
margin: 0; |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
form #datadirField legend { |
|
|
|
form #datadirField legend { |
|
|
|
margin-bottom: 15px; |
|
|
|
margin-bottom: 15px; |
|
|
|
} |
|
|
|
} |
|
|
@ -161,19 +175,12 @@ form #datadirField legend { |
|
|
|
#showAdvanced { |
|
|
|
#showAdvanced { |
|
|
|
padding: 13px; /* increase clickable area of Advanced dropdown */ |
|
|
|
padding: 13px; /* increase clickable area of Advanced dropdown */ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#showAdvanced img { |
|
|
|
#showAdvanced img { |
|
|
|
vertical-align: middle; /* adjust position of Advanced dropdown arrow */ |
|
|
|
vertical-align: middle; /* adjust position of Advanced dropdown arrow */ |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Buttons and input */ |
|
|
|
/* Buttons and input */ |
|
|
|
#submit-wrapper { |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
padding: 10px 5px; |
|
|
|
|
|
|
|
position: relative; /* Make the wrapper the containing block of its |
|
|
|
|
|
|
|
absolutely positioned descendant icons */ |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@media only screen and (max-width: 1024px) { |
|
|
|
@media only screen and (max-width: 1024px) { |
|
|
|
.wrapper { |
|
|
|
.wrapper { |
|
|
@ -181,10 +188,14 @@ form #datadirField legend { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#submit-wrapper { |
|
|
|
#submit-wrapper { |
|
|
|
margin: 0 auto; |
|
|
|
margin: 0 auto; |
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
|
|
padding: 10px 5px; |
|
|
|
|
|
|
|
position: relative; /* Make the wrapper the containing block of its |
|
|
|
|
|
|
|
absolutely positioned descendant icons */ |
|
|
|
|
|
|
|
|
|
|
|
.submit-icon { |
|
|
|
.submit-icon { |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
@ -245,6 +256,7 @@ select { |
|
|
|
input[type='submit']:focus { |
|
|
|
input[type='submit']:focus { |
|
|
|
box-shadow: 0 0 0 2px inset var(--color-main-text) !important; |
|
|
|
box-shadow: 0 0 0 2px inset var(--color-main-text) !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='text'], |
|
|
|
input[type='text'], |
|
|
|
input[type='tel'], |
|
|
|
input[type='tel'], |
|
|
|
input[type='password'], |
|
|
|
input[type='password'], |
|
|
@ -257,15 +269,18 @@ input[type='email'] { |
|
|
|
font-weight: normal; |
|
|
|
font-weight: normal; |
|
|
|
margin-inline: 0; |
|
|
|
margin-inline: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='password'].password-with-toggle, input[type='text'].password-with-toggle { |
|
|
|
input[type='password'].password-with-toggle, input[type='text'].password-with-toggle { |
|
|
|
width: 238px; |
|
|
|
width: 238px; |
|
|
|
padding-inline-end: 40px !important; |
|
|
|
padding-inline-end: 40px !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input.login { |
|
|
|
input.login { |
|
|
|
width: 260px; |
|
|
|
width: 260px; |
|
|
|
height: 50px; |
|
|
|
height: 50px; |
|
|
|
background-position: right 16px center; |
|
|
|
background-position: right 16px center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='submit'], |
|
|
|
input[type='submit'], |
|
|
|
input[type='submit'].icon-confirm, |
|
|
|
input[type='submit'].icon-confirm, |
|
|
|
input.updateButton, |
|
|
|
input.updateButton, |
|
|
@ -307,13 +322,16 @@ input[type='checkbox'].checkbox { |
|
|
|
height: 1px; |
|
|
|
height: 1px; |
|
|
|
overflow: hidden; |
|
|
|
overflow: hidden; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox + label { |
|
|
|
input[type='checkbox'].checkbox + label { |
|
|
|
user-select: none; |
|
|
|
user-select: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox:disabled + label, |
|
|
|
input[type='checkbox'].checkbox:disabled + label, |
|
|
|
input[type='checkbox'].checkbox:disabled + label:before { |
|
|
|
input[type='checkbox'].checkbox:disabled + label:before { |
|
|
|
cursor: default; |
|
|
|
cursor: default; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox + label:before { |
|
|
|
input[type='checkbox'].checkbox + label:before { |
|
|
|
content: ''; |
|
|
|
content: ''; |
|
|
|
display: inline-block; |
|
|
|
display: inline-block; |
|
|
@ -326,25 +344,26 @@ input[type='checkbox'].checkbox + label:before { |
|
|
|
width: 10px; |
|
|
|
width: 10px; |
|
|
|
background-position: center; |
|
|
|
background-position: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox--white + label:before { |
|
|
|
input[type='checkbox'].checkbox--white + label:before { |
|
|
|
border-color: #ddd; |
|
|
|
border-color: #ddd; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before, |
|
|
|
input[type='checkbox'].checkbox--white:not(:disabled):not(:checked) + label:hover:before, |
|
|
|
input[type='checkbox'].checkbox--white:focus + label:before { |
|
|
|
input[type='checkbox'].checkbox--white:focus + label:before { |
|
|
|
border-color: #fff; |
|
|
|
border-color: #fff; |
|
|
|
} |
|
|
|
} |
|
|
|
input[type='checkbox'].checkbox--white:checked + label:before { |
|
|
|
|
|
|
|
background-color: #eee; |
|
|
|
|
|
|
|
border-color: #eee; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
input[type='checkbox'].checkbox--white:disabled + label:before { |
|
|
|
input[type='checkbox'].checkbox--white:disabled + label:before { |
|
|
|
background-color: #666 !important; |
|
|
|
background-color: #666 !important; |
|
|
|
border-color: #999 !important; |
|
|
|
border-color: #999 !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox--white:checked:disabled + label:before { |
|
|
|
input[type='checkbox'].checkbox--white:checked:disabled + label:before { |
|
|
|
border-color: #666; |
|
|
|
border-color: #666; |
|
|
|
background-color: #222; |
|
|
|
background-color: #222; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
input[type='checkbox'].checkbox--white:checked + label:before { |
|
|
|
input[type='checkbox'].checkbox--white:checked + label:before { |
|
|
|
background-color: transparent !important; |
|
|
|
background-color: transparent !important; |
|
|
|
border-color: #fff !important; |
|
|
|
border-color: #fff !important; |
|
|
@ -364,6 +383,7 @@ input[type='checkbox'].checkbox--white:checked + label:before { |
|
|
|
overflow: hidden; |
|
|
|
overflow: hidden; |
|
|
|
height: 3px; |
|
|
|
height: 3px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.tooltip-inner { |
|
|
|
.tooltip-inner { |
|
|
|
font-weight: bold; |
|
|
|
font-weight: bold; |
|
|
|
padding: 3px 6px; |
|
|
|
padding: 3px 6px; |
|
|
@ -386,12 +406,14 @@ input[type='checkbox'].checkbox--white:checked + label:before { |
|
|
|
padding: .6em 2.5em .4em .4em; |
|
|
|
padding: .6em 2.5em .4em .4em; |
|
|
|
width: 8em; |
|
|
|
width: 8em; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#personal-show + label { |
|
|
|
#personal-show + label { |
|
|
|
height: 14px; |
|
|
|
height: 14px; |
|
|
|
margin-top: -25px; |
|
|
|
margin-top: -25px; |
|
|
|
inset-inline-start: 295px; |
|
|
|
inset-inline-start: 295px; |
|
|
|
display: block; |
|
|
|
display: block; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
#passwordbutton { |
|
|
|
#passwordbutton { |
|
|
|
margin-inline-start: .5em; |
|
|
|
margin-inline-start: .5em; |
|
|
|
} |
|
|
|
} |
|
|
@ -416,6 +438,7 @@ form .warning input[type='checkbox']+label { |
|
|
|
width: 320px; |
|
|
|
width: 320px; |
|
|
|
box-sizing: border-box; |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.two-factor-provider { |
|
|
|
.two-factor-provider { |
|
|
|
display: flex; |
|
|
|
display: flex; |
|
|
|
border-radius: 3px; /* --border-radius */ |
|
|
|
border-radius: 3px; /* --border-radius */ |
|
|
@ -445,11 +468,13 @@ form .warning input[type='checkbox']+label { |
|
|
|
font-weight: normal; |
|
|
|
font-weight: normal; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.two-factor-icon { |
|
|
|
.two-factor-icon { |
|
|
|
width: 100px; |
|
|
|
width: 100px; |
|
|
|
display: block; |
|
|
|
display: block; |
|
|
|
margin: 0 auto; |
|
|
|
margin: 0 auto; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.two-factor-submit { |
|
|
|
.two-factor-submit { |
|
|
|
width: 100%; |
|
|
|
width: 100%; |
|
|
|
padding: 10px; |
|
|
|
padding: 10px; |
|
|
@ -457,11 +482,13 @@ form .warning input[type='checkbox']+label { |
|
|
|
border-radius: 100px; /* --border-radius-pill */ |
|
|
|
border-radius: 100px; /* --border-radius-pill */ |
|
|
|
font-size: 20px; |
|
|
|
font-size: 20px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.two-factor-primary { |
|
|
|
.two-factor-primary { |
|
|
|
/* Fix for 'Use backup codes' button not taking correct styles */ |
|
|
|
/* Fix for 'Use backup codes' button not taking correct styles */ |
|
|
|
padding: 14px !important; |
|
|
|
padding: 14px !important; |
|
|
|
width: 226px; |
|
|
|
width: 226px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.two-factor-secondary { |
|
|
|
.two-factor-secondary { |
|
|
|
display: inline-block; |
|
|
|
display: inline-block; |
|
|
|
padding: 12px; |
|
|
|
padding: 12px; |
|
|
@ -519,15 +546,19 @@ form #selectDbType { |
|
|
|
position: relative; |
|
|
|
position: relative; |
|
|
|
user-select: none; |
|
|
|
user-select: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.grouptop, .groupmiddle { |
|
|
|
.grouptop, .groupmiddle { |
|
|
|
margin-bottom: 8px !important; |
|
|
|
margin-bottom: 8px !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.groupbottom { |
|
|
|
.groupbottom { |
|
|
|
margin-bottom: 13px; |
|
|
|
margin-bottom: 13px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.groupbottom input[type=submit] { |
|
|
|
.groupbottom input[type=submit] { |
|
|
|
box-shadow: none !important; |
|
|
|
box-shadow: none !important; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.grouptop.groupbottom input { |
|
|
|
.grouptop.groupbottom input { |
|
|
|
border-radius: 3px !important; |
|
|
|
border-radius: 3px !important; |
|
|
|
margin: 5px 0 !important; |
|
|
|
margin: 5px 0 !important; |
|
|
@ -567,9 +598,11 @@ form #selectDbType { |
|
|
|
.infogroup { |
|
|
|
.infogroup { |
|
|
|
margin: 8px 0; |
|
|
|
margin: 8px 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.infogroup:last-child { |
|
|
|
.infogroup:last-child { |
|
|
|
margin-bottom: 0; |
|
|
|
margin-bottom: 0; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
p.info { |
|
|
|
p.info { |
|
|
|
margin: 20px auto; |
|
|
|
margin: 20px auto; |
|
|
|
-webkit-user-select: none; |
|
|
|
-webkit-user-select: none; |
|
|
@ -598,6 +631,7 @@ p.info { |
|
|
|
body[dir='ltr'] .update img.float-spinner { |
|
|
|
body[dir='ltr'] .update img.float-spinner { |
|
|
|
float: left; |
|
|
|
float: left; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
body[dir='rtl'] .update img.float-spinner { |
|
|
|
body[dir='rtl'] .update img.float-spinner { |
|
|
|
float: right; |
|
|
|
float: right; |
|
|
|
} |
|
|
|
} |
|
|
@ -606,6 +640,7 @@ body[dir='rtl'] .update img.float-spinner { |
|
|
|
text-align: start; |
|
|
|
text-align: start; |
|
|
|
margin-bottom: 12px; |
|
|
|
margin-bottom: 12px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.update-show-detailed { |
|
|
|
.update-show-detailed { |
|
|
|
padding: 12px; |
|
|
|
padding: 12px; |
|
|
|
display: block; |
|
|
|
display: block; |
|
|
@ -628,18 +663,23 @@ body[dir='rtl'] .update img.float-spinner { |
|
|
|
.icon-info-white { |
|
|
|
.icon-info-white { |
|
|
|
background-image: url('../img/actions/info-white.svg?v=2'); |
|
|
|
background-image: url('../img/actions/info-white.svg?v=2'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-error-white { |
|
|
|
.icon-error-white { |
|
|
|
background-image: url('../img/actions/error-white.svg?v=1'); |
|
|
|
background-image: url('../img/actions/error-white.svg?v=1'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-caret-white { |
|
|
|
.icon-caret-white { |
|
|
|
background-image: url('../img/actions/caret-white.svg?v=1'); |
|
|
|
background-image: url('../img/actions/caret-white.svg?v=1'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-confirm { |
|
|
|
.icon-confirm { |
|
|
|
background-image: url('../img/actions/confirm.svg?v=2'); |
|
|
|
background-image: url('../img/actions/confirm.svg?v=2'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-confirm-white { |
|
|
|
.icon-confirm-white { |
|
|
|
background-image: url('../img/actions/confirm-white.svg?v=2'); |
|
|
|
background-image: url('../img/actions/confirm-white.svg?v=2'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-checkmark-white { |
|
|
|
.icon-checkmark-white { |
|
|
|
background-image: url('../img/actions/checkmark-white.svg?v=1'); |
|
|
|
background-image: url('../img/actions/checkmark-white.svg?v=1'); |
|
|
|
} |
|
|
|
} |
|
|
@ -652,17 +692,24 @@ body[dir='rtl'] .update img.float-spinner { |
|
|
|
height: 32px; |
|
|
|
height: 32px; |
|
|
|
display: none; |
|
|
|
display: none; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
[class^='icon-'], [class*=' icon-'] { |
|
|
|
[class^='icon-'], [class*=' icon-'] { |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-repeat: no-repeat; |
|
|
|
background-position: center; |
|
|
|
background-position: center; |
|
|
|
min-width: 16px; |
|
|
|
min-width: 16px; |
|
|
|
min-height: 16px; |
|
|
|
min-height: 16px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark { |
|
|
|
.loading, .loading-small, .icon-loading, .icon-loading-dark, .icon-loading-small, .icon-loading-small-dark { |
|
|
|
position: relative; |
|
|
|
position: relative; |
|
|
|
filter: var(--background-invert-if-dark) |
|
|
|
filter: var(--background-invert-if-dark) |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after { |
|
|
|
.loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after { |
|
|
|
|
|
|
|
border: 2px solid rgba(150, 150, 150, 0.5); |
|
|
|
|
|
|
|
border-radius: 100%; |
|
|
|
|
|
|
|
border-top-color: #646464; |
|
|
|
|
|
|
|
|
|
|
|
z-index: 2; |
|
|
|
z-index: 2; |
|
|
|
content: ''; |
|
|
|
content: ''; |
|
|
|
height: 32px; |
|
|
|
height: 32px; |
|
|
@ -671,24 +718,22 @@ body[dir='rtl'] .update img.float-spinner { |
|
|
|
position: absolute; |
|
|
|
position: absolute; |
|
|
|
top: 50%; |
|
|
|
top: 50%; |
|
|
|
inset-inline-start: 50%; |
|
|
|
inset-inline-start: 50%; |
|
|
|
border-radius: 100%; |
|
|
|
|
|
|
|
-webkit-animation: rotate .8s infinite linear; |
|
|
|
-webkit-animation: rotate .8s infinite linear; |
|
|
|
animation: rotate .8s infinite linear; |
|
|
|
animation: rotate .8s infinite linear; |
|
|
|
-webkit-transform-origin: center; |
|
|
|
-webkit-transform-origin: center; |
|
|
|
-ms-transform-origin: center; |
|
|
|
-ms-transform-origin: center; |
|
|
|
transform-origin: center; |
|
|
|
transform-origin: center; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.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 { |
|
|
|
.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 { |
|
|
|
filter: var(--primary-invert-if-bright) |
|
|
|
filter: var(--primary-invert-if-bright) |
|
|
|
} |
|
|
|
} |
|
|
|
.loading:after, .loading-small:after, .icon-loading:after, .icon-loading-dark:after, .icon-loading-small:after, .icon-loading-small-dark:after { |
|
|
|
|
|
|
|
border: 2px solid rgba(150, 150, 150, 0.5); |
|
|
|
|
|
|
|
border-top-color: #646464; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
.icon-loading-dark:after, .icon-loading-small-dark:after { |
|
|
|
.icon-loading-dark:after, .icon-loading-small-dark:after { |
|
|
|
border: 2px solid rgba(187, 187, 187, 0.5); |
|
|
|
border: 2px solid rgba(187, 187, 187, 0.5); |
|
|
|
border-top-color: #bbb; |
|
|
|
border-top-color: #bbb; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.icon-loading-small:after, .icon-loading-small-dark:after { |
|
|
|
.icon-loading-small:after, .icon-loading-small-dark:after { |
|
|
|
height: 16px; |
|
|
|
height: 16px; |
|
|
|
width: 16px; |
|
|
|
width: 16px; |
|
|
@ -698,12 +743,15 @@ body[dir='rtl'] .update img.float-spinner { |
|
|
|
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 { |
|
|
|
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 { |
|
|
|
background-image: url('../img/loading.gif'); |
|
|
|
background-image: url('../img/loading.gif'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
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 { |
|
|
|
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 { |
|
|
|
background-image: url('../img/loading-dark.gif'); |
|
|
|
background-image: url('../img/loading-dark.gif'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
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 { |
|
|
|
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 { |
|
|
|
background-image: url('../img/loading-small.gif'); |
|
|
|
background-image: url('../img/loading-small.gif'); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
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 { |
|
|
|
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 { |
|
|
|
background-image: url('../img/loading-small-dark.gif'); |
|
|
|
background-image: url('../img/loading-small-dark.gif'); |
|
|
|
} |
|
|
|
} |
|
|
@ -798,7 +846,6 @@ a.legal { |
|
|
|
.guest-box, .body-login-container { |
|
|
|
.guest-box, .body-login-container { |
|
|
|
// Ensure the maxcontrast color is set for the background |
|
|
|
// Ensure the maxcontrast color is set for the background |
|
|
|
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text)); |
|
|
|
--color-text-maxcontrast: var(--color-text-maxcontrast-background-blur, var(--color-main-text)); |
|
|
|
|
|
|
|
|
|
|
|
color: var(--color-main-text); |
|
|
|
color: var(--color-main-text); |
|
|
|
background-color: var(--color-main-background-blur); |
|
|
|
background-color: var(--color-main-background-blur); |
|
|
|
padding: calc(3 * var(--default-grid-baseline)); |
|
|
|
padding: calc(3 * var(--default-grid-baseline)); |
|
|
|