Split CSS to separate files.

This commit is contained in:
2025-08-21 02:19:58 +00:00
parent 38bc50a5ff
commit f94ab1d4c3
6 changed files with 332 additions and 328 deletions
+19
View File
@@ -0,0 +1,19 @@
/* Prevent text selection in calendar */
#calendar-viewport, #calendar-content, .week-row, .cell,
.calendar-header, .week-label, .month-name-label,
.calendar-container, .jogwheel-viewport, .jogwheel-content {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: transparent;
}
input {
background: transparent;
border: none;
color: var(--ink);
width: 11em;
}
label:has(input[value]) { display: block }