20 lines
520 B
CSS
20 lines
520 B
CSS
/* 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 }
|