UNPKG

accessibility-developer-tools

Version:

This is a library of accessibility-related testing and utility code.

50 lines (42 loc) 998 B
/* * 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; }