fix padding in basic modals style
- Updated margin in memory-dashboard.html for better layout consistency. - Modified padding in scheduler-modal.html to enhance visual spacing. - Simplified padding in modals.css for a cleaner modal appearance. - Removed unnecessary margin-top in settings.css to streamline styling.
Alessandro committed
Mar 7, 2026 at 18:31 UTC
870351280a5a5fb5244a3a0cc2de380759c59cce
4 files changed
+3
-4
plugins/memory/webui/memory-dashboard.html
+1
-1
@@ -373,7 +373,7 @@
373
display: grid;
374
grid-template-columns: 35% 25% 10% auto;
375
grid-template-rows: auto auto;
376
- margin: 1rem 0;
376
+ margin: 0 0 1rem 0;
377
}
378
379
/* Grid positioning for desktop - 2 rows */
webui/components/modals/scheduler/scheduler-modal.html
+1
-1
@@ -49,7 +49,7 @@
49
padding: 0;
50
}
51
.scheduler-dashboard-description {
52
- padding: 1rem 0;
52
+ padding: 0 0 1rem 0;
53
}
54
55
.scheduler-modal-footer {
webui/css/modals.css
+1
-1
@@ -136,7 +136,7 @@ some classes like modal-header are shared between the old and the new system */
136
.modal-scroll {
137
max-height: 90vh;
138
overflow-y: auto;
139
- padding: 0 1rem 1rem 1rem;
139
+ padding: 1rem;
140
}
141
142
.modal-x {
webui/css/settings.css
-1
@@ -251,7 +251,6 @@ nav ul li a img {
251
width: 100%;
252
margin-bottom: 8px;
253
padding: 0;
254
- margin-top: 20px;
254
position: relative;
255
overflow: visible;
256
}