Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-05-04 10:56:50 +0300
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-05-13 17:13:00 +0300
commit73918b8af9626d445f8b58faed15b32dc195ce7f (patch)
tree6eefbb1d5cd1b793de6224d635dfbb40b3271fee /core/css/public.css
parent3e29e0ad13b427b6ba4b62c7a35497e9a75de976 (diff)
Cleanup and compile
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'core/css/public.css')
-rw-r--r--core/css/public.css72
1 files changed, 72 insertions, 0 deletions
diff --git a/core/css/public.css b/core/css/public.css
new file mode 100644
index 00000000000..a936d0c4152
--- /dev/null
+++ b/core/css/public.css
@@ -0,0 +1,72 @@
+#body-public {
+ /** don't apply content header padding on the base layout */
+ /* force layout to make sure the content element's height matches its contents' height */
+ /* public footer */
+}
+#body-public .header-right #header-primary-action a {
+ color: var(--color-primary-text);
+}
+#body-public .header-right #header-secondary-action ul li {
+ min-width: 270px;
+}
+#body-public .header-right #header-secondary-action #header-actions-toggle {
+ background-color: transparent;
+ border-color: transparent;
+}
+#body-public .header-right #header-secondary-action #header-actions-toggle:hover, #body-public .header-right #header-secondary-action #header-actions-toggle:focus, #body-public .header-right #header-secondary-action #header-actions-toggle:active {
+ opacity: 1;
+}
+#body-public .header-right #header-secondary-action #external-share-menu-item form {
+ display: flex;
+}
+#body-public .header-right #header-secondary-action #external-share-menu-item .hidden {
+ display: none;
+}
+#body-public .header-right #header-secondary-action #external-share-menu-item #save-button-confirm {
+ flex-grow: 0;
+}
+#body-public #content {
+ min-height: calc(100% - 65px);
+}
+#body-public.layout-base #content {
+ padding-top: 0;
+}
+#body-public .ie #content {
+ display: inline-block;
+}
+#body-public p.info {
+ margin: 20px auto;
+ text-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
+ -moz-user-select: none;
+ -ms-user-select: none;
+ user-select: none;
+}
+#body-public p.info, #body-public form fieldset legend,
+#body-public #datadirContent label,
+#body-public form fieldset .warning-info,
+#body-public form input[type=checkbox] + label {
+ text-align: center;
+}
+#body-public footer {
+ position: relative;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ height: 65px;
+ flex-direction: column;
+}
+#body-public footer p {
+ text-align: center;
+ color: var(--color-text-lighter);
+}
+#body-public footer p a {
+ color: var(--color-text-lighter);
+ font-weight: bold;
+ white-space: nowrap;
+ /* increasing clickability to more than the text height */
+ padding: 10px;
+ margin: -10px;
+ line-height: 200%;
+}
+
+/*# sourceMappingURL=public.css.map */