12345678910111213141516171819202122232425 |
- /*
- * 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 buttons created by goog.ui.ColorMenuButtonRenderer.
- *
- * @author attila@google.com (Attila Bodis)
- */
- /* Color indicator. */
- .goog-color-menu-button-indicator {
- border-bottom: 4px solid #f0f0f0;
- }
- /* Thinner padding for color picker buttons, to leave room for the indicator. */
- .goog-color-menu-button .goog-menu-button-inner-box,
- .goog-toolbar-color-menu-button .goog-toolbar-menu-button-inner-box {
- padding-top: 2px !important;
- padding-bottom: 2px !important;
- }
|