123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*
- * Copyright 2009 The Closure Library Authors. All Rights Reserved.
- *
- * Use of this source code is governed by the Apache License, Version 2.0.
- * See the COPYING file for details.
- */
- /*
- * Standard styling for color palettes.
- *
- * @author pupius@google.com (Daniel Pupius)
- * @author attila@google.com (Attila Bodis)
- */
- .goog-palette-cell .goog-palette-colorswatch {
- border: none;
- font-size: x-small;
- height: 18px;
- position: relative;
- width: 18px;
- }
- .goog-palette-cell-hover .goog-palette-colorswatch {
- border: 1px solid #fff;
- height: 16px;
- width: 16px;
- }
- .goog-palette-cell-selected .goog-palette-colorswatch {
- /* Client apps may override the URL at which they serve the sprite. */
- background: url(//ssl.gstatic.com/editor/editortoolbar.png) no-repeat -368px 0;
- border: 1px solid #333;
- color: #fff;
- font-weight: bold;
- height: 16px;
- width: 16px;
- }
- .goog-palette-customcolor {
- background-color: #fafafa;
- border: 1px solid #eee;
- color: #666;
- font-size: x-small;
- height: 15px;
- position: relative;
- width: 15px;
- }
- .goog-palette-cell-hover .goog-palette-customcolor {
- background-color: #fee;
- border: 1px solid #f66;
- color: #f66;
- }
|