12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /*
- * Copyright 2007 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.
- */
- /* Author: pupius@google.com (Daniel Pupius) */
- /*
- Styles to make the colorpicker look like the old gmail color picker
- NOTE: without CSS scoping this will override styles defined in palette.css
- */
- .goog-palette {
- outline: none;
- cursor: default;
- }
- .goog-palette-table {
- border: 1px solid #666;
- border-collapse: collapse;
- }
- .goog-palette-cell {
- height: 13px;
- width: 15px;
- margin: 0;
- border: 0;
- text-align: center;
- vertical-align: middle;
- border-right: 1px solid #666;
- font-size: 1px;
- }
- .goog-palette-colorswatch {
- position: relative;
- height: 13px;
- width: 15px;
- border: 1px solid #666;
- }
- .goog-palette-cell-hover .goog-palette-colorswatch {
- border: 1px solid #FFF;
- }
- .goog-palette-cell-selected .goog-palette-colorswatch {
- border: 1px solid #000;
- color: #fff;
- }
|