2024-06-18 10:46:56 -04:00
|
|
|
/*!
|
2024-05-10 09:09:14 -04:00
|
|
|
* SPDX-FileCopyrightText: 2018 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
*/
|
2022-02-08 12:09:24 -05:00
|
|
|
#body-public {
|
2024-09-05 19:19:22 -04:00
|
|
|
--footer-height: calc(2lh + 2 * var(--default-grid-baseline)); // Set the initial value, will be updated programmatically to match the actual height
|
2024-07-26 09:01:27 -04:00
|
|
|
|
2023-12-23 11:16:25 -05:00
|
|
|
.header-end {
|
2018-04-05 06:21:39 -04:00
|
|
|
#header-primary-action a {
|
2023-05-12 09:41:40 -04:00
|
|
|
color: var(--color-primary-element-text);
|
2018-03-07 05:05:23 -05:00
|
|
|
}
|
2018-01-25 13:15:16 -05:00
|
|
|
|
2018-03-07 05:05:23 -05:00
|
|
|
#header-secondary-action {
|
2018-04-05 07:11:55 -04:00
|
|
|
ul li {
|
|
|
|
|
min-width: 270px;
|
|
|
|
|
}
|
2019-11-07 06:28:43 -05:00
|
|
|
#header-actions-toggle {
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
border-color: transparent;
|
2022-09-12 07:56:32 -04:00
|
|
|
filter: var(--background-invert-if-dark);
|
2019-11-07 06:28:43 -05:00
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
|
&:focus,
|
|
|
|
|
&:active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-07 15:30:56 -05:00
|
|
|
#external-share-menu-item {
|
2018-04-05 07:11:55 -04:00
|
|
|
form {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
#save-button-confirm {
|
|
|
|
|
flex-grow: 0;
|
|
|
|
|
}
|
2018-04-05 06:21:39 -04:00
|
|
|
}
|
2018-03-07 05:05:23 -05:00
|
|
|
}
|
|
|
|
|
}
|
2018-04-05 06:21:39 -04:00
|
|
|
|
2022-02-08 12:09:24 -05:00
|
|
|
#content {
|
2024-07-26 09:01:27 -04:00
|
|
|
min-height: var(--body-height, calc(100% - var(--footer-height)));
|
2024-09-05 19:19:22 -04:00
|
|
|
padding-block-end: var(--footer-height);
|
2024-07-26 09:01:27 -04:00
|
|
|
}
|
2022-02-08 12:09:24 -05:00
|
|
|
|
2024-07-26 09:01:27 -04:00
|
|
|
#app-content-vue {
|
|
|
|
|
padding-block-end: var(--footer-height);
|
2022-02-08 12:09:24 -05:00
|
|
|
}
|
|
|
|
|
|
2018-08-03 13:21:10 -04:00
|
|
|
/** don't apply content header padding on the base layout */
|
|
|
|
|
&.layout-base #content {
|
|
|
|
|
padding-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-24 04:29:46 -04:00
|
|
|
p.info {
|
|
|
|
|
margin: 20px auto;
|
|
|
|
|
text-shadow: 0 0 2px rgba(0, 0, 0, .4);
|
|
|
|
|
-moz-user-select: none;
|
|
|
|
|
-ms-user-select: none;
|
|
|
|
|
user-select: none;
|
|
|
|
|
}
|
|
|
|
|
p.info, form fieldset legend,
|
|
|
|
|
#datadirContent label,
|
|
|
|
|
form fieldset .warning-info,
|
|
|
|
|
form input[type='checkbox']+label {
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
2018-08-15 02:11:13 -04:00
|
|
|
|
|
|
|
|
/* public footer */
|
|
|
|
|
footer {
|
2022-10-03 06:33:45 -04:00
|
|
|
position: fixed;
|
2024-07-26 09:01:27 -04:00
|
|
|
bottom: var(--body-container-margin);;
|
|
|
|
|
background-color: var(--color-main-background);
|
|
|
|
|
border-radius: var(--body-container-radius);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
2018-08-15 02:11:13 -04:00
|
|
|
display: flex;
|
2024-07-26 09:01:27 -04:00
|
|
|
flex-direction: column;
|
2018-08-15 02:11:13 -04:00
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
2024-07-26 09:01:27 -04:00
|
|
|
|
|
|
|
|
width: calc(100% - 2 * var(--body-container-margin));
|
|
|
|
|
margin-inline: var(--body-container-margin);
|
|
|
|
|
padding-block: var(--default-grid-baseline);
|
|
|
|
|
|
|
|
|
|
.footer__legal-links {
|
|
|
|
|
margin-block-end: var(--default-grid-baseline);
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-15 02:11:13 -04:00
|
|
|
p {
|
2018-08-23 08:32:42 -04:00
|
|
|
text-align: center;
|
2024-07-26 09:01:27 -04:00
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
margin-block: 0 var(--default-grid-baseline);
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
2018-08-15 02:11:13 -04:00
|
|
|
a {
|
2024-07-26 09:01:27 -04:00
|
|
|
display: inline-block;
|
|
|
|
|
font-size: var(--default-font-size);
|
2018-10-01 17:29:46 -04:00
|
|
|
font-weight: bold;
|
2024-07-26 09:01:27 -04:00
|
|
|
line-height: var(--default-line-height);
|
|
|
|
|
height: var(--default-line-height);
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
2018-10-01 05:14:31 -04:00
|
|
|
white-space: nowrap;
|
2018-08-15 02:11:13 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-03-07 05:05:23 -05:00
|
|
|
}
|