not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.2 KiB

  1. .theme-fu button:focus,
  2. .theme-fu .button:focus {
  3. outline: none;
  4. }
  5. .theme-fu button,
  6. .theme-fu .button {
  7. position: relative;
  8. cursor: pointer;
  9. /**/
  10. color: #404040;
  11. background-color: #CDCDCD;
  12. /**/
  13. /*margin: 2px 8px 2px 1px;*/
  14. padding: 0.5em 0.7em;
  15. border: 0;
  16. -moz-border-radius: .2em;
  17. border-radius: .2em;
  18. /**/
  19. -webkit-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
  20. -moz-box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
  21. box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.5);
  22. }
  23. .theme-fu.dark button,
  24. .theme-fu.dark .button {
  25. background-color: #484848;
  26. color: #ababab;
  27. }
  28. .theme-fu button:enabled:hover, .theme-fu button:hover,
  29. .theme-fu .button:enabled:hover, .theme-fu .button:hover {
  30. background-color: #C0C0C0;
  31. }
  32. .theme-fu.dark button:enabled:hover, .theme-fu.dark button:hover,
  33. .theme-fu.dark .button:enabled:hover, .theme-fu.dark .button:hover {
  34. background-color: #383838;
  35. }
  36. .theme-fu button:enabled:active, .theme-fu button:active,
  37. .theme-fu .active, .theme-fu .button:enabled:active, .theme-fu .button:active {
  38. top: 1px;
  39. left: 1px;
  40. -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  41. -moz-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  42. box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
  43. }