checkboxradio.css 789 B

12345678910111213141516171819202122232425262728293031323334
  1. /*!
  2. * jQuery UI Checkboxradio 1.12.1
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/checkboxradio/#theming
  10. */
  11. .ui-checkboxradio-label .ui-icon-background {
  12. box-shadow: inset 1px 1px 1px #ccc;
  13. border-radius: .12em;
  14. border: none;
  15. }
  16. .ui-checkboxradio-radio-label .ui-icon-background {
  17. width: 16px;
  18. height: 16px;
  19. border-radius: 1em;
  20. overflow: visible;
  21. border: none;
  22. }
  23. .ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
  24. .ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
  25. background-image: none;
  26. width: 8px;
  27. height: 8px;
  28. border-width: 4px;
  29. border-style: solid;
  30. }
  31. .ui-checkboxradio-disabled {
  32. pointer-events: none;
  33. }