Native.css 922 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Stylesheet designed to be used as the user stylesheet by apps that want their
  3. * web content to look like the native GUI.
  4. */
  5. html {
  6. background-color: -libweb-palette-base;
  7. color: -libweb-palette-base-text;
  8. }
  9. input, textarea {
  10. background-color: -libweb-palette-base;
  11. border-color: -libweb-palette-threed-shadow1;
  12. color: -libweb-palette-base-text;
  13. }
  14. button, input[type=submit], input[type=button], input[type=reset], select {
  15. background-color: -libweb-palette-button;
  16. border-color: -libweb-palette-threed-shadow1;
  17. color: -libweb-palette-button-text;
  18. }
  19. button:hover, input[type=submit]:hover, input[type=button]:hover, input[type=reset]:hover, select:hover {
  20. background-color: -libweb-palette-hover-highlight;
  21. }
  22. :link {
  23. color: -libweb-link;
  24. }
  25. :visited {
  26. color: -libweb-palette-visited-link;
  27. }
  28. :link:active, :visited:active {
  29. color: -libweb-palette-active-link;
  30. }