tristatemenuitem.css 918 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright 2007 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: pupius@google.com (Daniel Pupius) */
  8. /* goog.ui.TriStateMenuItem */
  9. .goog-tristatemenuitem {
  10. padding: 2px 5px;
  11. margin: 0;
  12. list-style: none;
  13. }
  14. .goog-tristatemenuitem-highlight {
  15. background-color: #4279A5;
  16. color: #FFF;
  17. }
  18. .goog-tristatemenuitem-disabled {
  19. color: #999;
  20. }
  21. .goog-tristatemenuitem-checkbox {
  22. float: left;
  23. width: 10px;
  24. height: 1.1em;
  25. }
  26. .goog-tristatemenuitem-partially-checked {
  27. background-image: url(//ssl.gstatic.com/closure/check-outline.gif);
  28. background-position: 4px 50%;
  29. background-repeat: no-repeat;
  30. }
  31. .goog-tristatemenuitem-fully-checked {
  32. background-image: url(//ssl.gstatic.com/closure/check.gif);
  33. background-position: 4px 50%;
  34. background-repeat: no-repeat;
  35. }