Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/css/palette.css
2868 views
1
/*
2
* Copyright 2009 The Closure Library Authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by the Apache License, Version 2.0.
5
* See the COPYING file for details.
6
*/
7
8
/*
9
* Standard styling for palettes created by goog.ui.PaletteRenderer.
10
*
11
* @author [email protected] (Daniel Pupius)
12
* @author [email protected] (Attila Bodis)
13
*/
14
15
16
.goog-palette {
17
cursor: default;
18
outline: none;
19
}
20
21
.goog-palette-table {
22
border: 1px solid #666;
23
border-collapse: collapse;
24
margin: 5px;
25
}
26
27
.goog-palette-cell {
28
border: 0;
29
border-right: 1px solid #666;
30
cursor: pointer;
31
height: 18px;
32
margin: 0;
33
text-align: center;
34
vertical-align: middle;
35
width: 18px;
36
}
37
38