mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/d51a2637-5128-4c8a-a18c-a86085d2cb88 aio-interface: do not cache the containers, logs and setup screen as it shows credentials Signed-off-by: Simon L. <szaimen@e.mail.de> fix: address PR review comments - remove inline script (CSP), use default font string Agent-Logs-Url: https://github.com/nextcloud/all-in-one/sessions/62e290a3-94de-4988-aeb8-b577fec135a7 Co-Authored-By: szaimen <42591237+szaimen@users.noreply.github.com>
51 lines
1.1 KiB
CSS
51 lines
1.1 KiB
CSS
html, body {
|
|
height: 100%;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
pre {
|
|
height: 100%;
|
|
overflow: auto;
|
|
margin: 0;
|
|
padding: 1rem;
|
|
box-sizing: border-box;
|
|
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';
|
|
}
|
|
#floating-box {
|
|
position: fixed;
|
|
top: 1rem;
|
|
right: 1rem;
|
|
max-width: calc(100vw - 2rem);
|
|
z-index: 10;
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: center;
|
|
}
|
|
#autoloading-box {
|
|
display: grid;
|
|
gap: 0.5rem;
|
|
font-size: large;
|
|
border: solid thin gray;
|
|
background-color: var(--color-main-background);
|
|
color: var(--color-main-text);
|
|
width: 10rem;
|
|
padding: 0.5rem 1rem;
|
|
margin: 0 0 0 1rem;
|
|
}
|
|
.loader {
|
|
opacity: 1;
|
|
width: 40px;
|
|
height: 40px;
|
|
align-self: inherit;
|
|
}
|
|
@starting-style {
|
|
.loader {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
.loader.hidden {
|
|
display: none;
|
|
opacity: 0;
|
|
transition: opacity 1s, display 1s allow-discrete;
|
|
} |