Path: blob/trunk/third_party/closure/goog/css/checkbox.css
2868 views
/*1* Copyright 2009 The Closure Library Authors. All Rights Reserved.2*3* Use of this source code is governed by the Apache License, Version 2.0.4* See the COPYING file for details.5*/67/* Author: [email protected] (Peter Pallos) */89/* Sample 3-state checkbox styles. */1011.goog-checkbox {12border: 1px solid #1C5180;13display: -moz-inline-box;14display: inline-block;15font-size: 1px; /* Fixes the height in IE6 */16height: 11px;17margin: 0 4px 0 1px;18vertical-align: text-bottom;19width: 11px;20}2122.goog-checkbox-checked {23background: #fff url(//ssl.gstatic.com/closure/check-sprite.gif) no-repeat 2px center;24}2526.goog-checkbox-undetermined {27background: #bbb url(//ssl.gstatic.com/closure/check-sprite.gif) no-repeat 2px center;28}2930.goog-checkbox-unchecked {31background: #fff;32}3334.goog-checkbox-disabled {35border: 1px solid lightgray;36background-position: -7px;37}383940