<message>Modify the first-boot configuration to include the gir1.2-gtklayershell-0.1 package for improved GTK layer shell support. Update the first-boot script to enhance the portal status reporting with connection timeouts. Additionally, implement a restart mechanism for the kanshi service in rotation scripts to ensure immediate application of configuration changes. Introduce a Chromium kiosk extension to disable text selection, improving user experience in kiosk mode. These changes streamline the setup process and enhance the overall functionality of the kiosk environment.
16 lines
512 B
CSS
16 lines
512 B
CSS
/* Disable text selection so touch-drag scrolls. Apply to everything. */
|
|
html, body, body *,
|
|
body *::before, body *::after,
|
|
input, textarea, [contenteditable="true"] {
|
|
user-select: none !important;
|
|
-webkit-user-select: none !important;
|
|
-moz-user-select: none !important;
|
|
-ms-user-select: none !important;
|
|
}
|
|
|
|
/* Allow selection in inputs so users can edit if needed */
|
|
input:focus, textarea:focus, [contenteditable="true"]:focus {
|
|
user-select: text !important;
|
|
-webkit-user-select: text !important;
|
|
}
|