2023-08-24 11:01:09 +01:00
|
|
|
/*
|
|
|
|
|
* Stylesheet designed to be used as the user stylesheet by apps that want their
|
|
|
|
|
* web content to look like the native GUI.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
html {
|
|
|
|
|
background-color: -libweb-palette-base;
|
|
|
|
|
color: -libweb-palette-base-text;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input, textarea {
|
2024-09-07 14:22:17 -04:00
|
|
|
background-color: -libweb-palette-base;
|
2023-08-24 11:01:09 +01:00
|
|
|
border-color: -libweb-palette-threed-shadow1;
|
2024-09-07 14:22:17 -04:00
|
|
|
color: -libweb-palette-base-text;
|
2023-08-24 11:01:09 +01:00
|
|
|
}
|
|
|
|
|
|
2024-09-07 14:22:17 -04:00
|
|
|
button, input[type=submit], input[type=button], input[type=reset], select {
|
2023-08-24 11:01:09 +01:00
|
|
|
background-color: -libweb-palette-button;
|
|
|
|
|
border-color: -libweb-palette-threed-shadow1;
|
|
|
|
|
color: -libweb-palette-button-text;
|
|
|
|
|
}
|
|
|
|
|
|
2024-09-07 14:22:17 -04:00
|
|
|
button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, select:hover {
|
2023-08-24 11:01:09 +01:00
|
|
|
background-color: -libweb-palette-hover-highlight;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:link {
|
|
|
|
|
color: -libweb-link;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:visited {
|
|
|
|
|
color: -libweb-palette-visited-link;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
:link:active, :visited:active {
|
|
|
|
|
color: -libweb-palette-active-link;
|
|
|
|
|
}
|