+ |
+
@@ -216,6 +232,7 @@
|
From 5b1812a49f551cbbd6d74cb7e0bcf65cbe4d77cd Mon Sep 17 00:00:00 2001 From: seb1k <64972483+seb1k@users.noreply.github.com> Date: Wed, 19 Jun 2024 00:10:06 +0200 Subject: [PATCH] Add files via upload --- deps/bootstrap.min.css | 19 ++----- meta.json | 5 +- styles/styles.min.css | 32 ++++++++--- templates/compose.html | 43 ++++++++------ templates/includes/layout.html | 2 +- templates/includes/menu.html | 1 - templates/includes/settings-menu.html | 2 +- templates/mail.html | 4 +- ui.min.js | 82 +++++++++++++++++++++++---- 9 files changed, 132 insertions(+), 58 deletions(-) diff --git a/deps/bootstrap.min.css b/deps/bootstrap.min.css index 97f00e7..504958e 100644 --- a/deps/bootstrap.min.css +++ b/deps/bootstrap.min.css @@ -347,7 +347,7 @@ pre code{font-size:inherit;color:inherit;word-break:normal} .offset-xl-11{margin-left:91.666667%} } .table{width:100%;margin-bottom:1rem;color:#212529} -.table td,.table th{padding:.75rem;vertical-align:top;border-top:1px solid #dee2e6} +.table td,.table th{padding:.75rem;vertical-align:top;} .table thead th{vertical-align:bottom;border-bottom:2px solid #dee2e6} .table tbody+tbody{border-top:2px solid #dee2e6} .table-sm td,.table-sm th{padding:.3rem} @@ -399,20 +399,9 @@ pre code{font-size:inherit;color:inherit;word-break:normal} .table-dark.table-bordered{border:0} .table-dark.table-striped tbody tr:nth-of-type(odd){background-color:rgba(255,255,255,.05)} .table-dark.table-hover tbody tr:hover{color:#fff;background-color:rgba(255,255,255,.075)} -@media (max-width:575.98px){.table-responsive-sm{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch} -.table-responsive-sm>.table-bordered{border:0} -} -@media (max-width:767.98px){.table-responsive-md{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch} -.table-responsive-md>.table-bordered{border:0} -} -@media (max-width:991.98px){.table-responsive-lg{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch} -.table-responsive-lg>.table-bordered{border:0} -} -@media (max-width:1199.98px){.table-responsive-xl{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch} -.table-responsive-xl>.table-bordered{border:0} -} -.table-responsive{display:block;width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch} -.table-responsive>.table-bordered{border:0} + + + .form-control{display:block;width:100%;height:calc(1.5em + .75rem + 2px);padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out} @media (prefers-reduced-motion:reduce){.form-control{transition:none} } diff --git a/meta.json b/meta.json index 199f35a..60d0acd 100644 --- a/meta.json +++ b/meta.json @@ -14,8 +14,7 @@ "additional_logo_types": ["dark", "small", "small-dark"] }, "meta": { - "viewport": "width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0", - "theme-color": "#f4f4f4", - "msapplication-navbutton-color": "#f4f4f4" + "viewport": "width=device-width, initial-scale=1.0, shrink-to-fit=no, maximum-scale=1.0", + "theme-color": "#ffffff" } } diff --git a/styles/styles.min.css b/styles/styles.min.css index d8387c3..ee469b8 100644 --- a/styles/styles.min.css +++ b/styles/styles.min.css @@ -18,6 +18,15 @@ html.dark-mode { } + +fieldset:nth-of-type(1) legend { +display:none; +} + +#pluginlist td{ +padding:2px 10px +} + .insummary{ opacity:.5; padding:5px; @@ -934,11 +943,18 @@ vertical-align:top; float:initial !important; } +#mailtoolbar{ +margin-top:-25px; +} #mailtoolbar a{ display:inline-block; } +.header-headers td.date{ +position:absolute; +right:20px; +} html.layout-normal #mailtoolbar span, html.layout-small #mailtoolbar span{ @@ -3669,6 +3685,7 @@ color: var(--font2); white-space: nowrap; vertical-align: middle; color: #2c363a; + padding: 0 .5rem; } @@ -3770,11 +3787,6 @@ html.layout-small td.selection { opacity: 0.4; } -html:not(.touch) .listing li > a, -html:not(.touch) .listing tbody tr > td:first-child, -html:not(.touch) .listing:not(.withselection) tbody tr > td.selection + td { -} - html:not(.touch) .listing li > a:focus, html:not(.touch) .listing.focus tbody tr.focused > td:first-child, html:not(.touch) .listing.focus:not(.withselection) tbody tr.focused > td.selection + td { @@ -3851,9 +3863,10 @@ ul.listing.simplelist li { font-weight: 700; } -html.touch .listing tbody td, -html.touch .listing:not(.toolbar) li { - line-height: 47px; + +html:not(.layout-large) .listing tbody td, +html:not(.layout-large) .listing:not(.toolbar) li { + line-height: 44px; font-size: 1.2rem; } @@ -6750,7 +6763,8 @@ body.task-error-login #layout #layout-content > .header{ #message-header .header-content { min-height: 4rem; flex: 1; - max-width: 200px; + width: calc(100vw - 230px); + white-space: nowrap; } diff --git a/templates/compose.html b/templates/compose.html index a6f197f..f94c8b4 100644 --- a/templates/compose.html +++ b/templates/compose.html @@ -36,6 +36,22 @@
+ |
+
@@ -216,6 +232,7 @@
|