diff --git a/.run/Docker Compose Up.run.xml b/.run/Docker Compose Up.run.xml
index 75885b8..bf1385f 100644
--- a/.run/Docker Compose Up.run.xml
+++ b/.run/Docker Compose Up.run.xml
@@ -1,11 +1,17 @@
-
-
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/.run/Spring Development.run.xml b/.run/Spring Development.run.xml
index bfc3866..8a9845c 100644
--- a/.run/Spring Development.run.xml
+++ b/.run/Spring Development.run.xml
@@ -5,7 +5,6 @@
-
\ No newline at end of file
diff --git a/README.md b/README.md
index 5cce395..ea039b7 100644
--- a/README.md
+++ b/README.md
@@ -47,9 +47,6 @@ spring:
jpa:
hibernate:
ddl-auto: validate
- sql:
- init:
- mode: always
thymeleaf:
cache: false
prefix: file:src/main/resources/templates/
diff --git a/src/main/resources/static/css/input.css b/src/main/resources/static/css/input.css
index 91b604c..19cfe1b 100644
--- a/src/main/resources/static/css/input.css
+++ b/src/main/resources/static/css/input.css
@@ -125,21 +125,13 @@
overflow-y: auto;
max-height: calc(100vh - 11rem);
}
-.contacts-table th:nth-child(1),
-.contacts-table td:nth-child(1) { width: 2.5rem; }
-.contacts-table td:nth-child(3) { width: 9rem; }
-.contacts-table td:nth-child(4) { width: 5rem; }
-
-/* Table header selected state */
-.thead-selected {
- background-color: oklch(47.3% 0.217 264.4); /* blue-600 */
-}
-.thead-selected,
-.thead-selected * {
- color: white;
-}
-.thead-selected .btn-ghost:hover {
- background-color: oklch(55% 0.217 264.4);
+.contacts-table td:nth-child(2) { width: 9rem; }
+.contacts-table td:nth-child(3) { width: 5rem; }
+
+/* Selection accent colors */
+:root {
+ --color-selection: oklch(47.3% 0.217 264.4);
+ --color-selection-bold: oklch(55% 0.2 260);
}
/* Unlayered - beats all @layer styles */
@@ -157,8 +149,9 @@
transition: none;
animation: none;
}
-.checkbox:checked {
- background-color: oklch(55% 0.2 260);
- border-color: oklch(55% 0.2 260);
+.checkbox:checked,
+.checkbox:indeterminate {
+ background-color: var(--color-selection-bold);
+ border-color: var(--color-selection-bold);
color: white;
}
diff --git a/src/main/resources/templates/contacts/index.html b/src/main/resources/templates/contacts/index.html
index 5dd8f6d..4e52987 100644
--- a/src/main/resources/templates/contacts/index.html
+++ b/src/main/resources/templates/contacts/index.html
@@ -12,44 +12,105 @@