1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
|
/*
* 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.
*/
/* Author: pupius@google.com (Daniel Pupius) */
/* Author: cibu@google.com (Cibu Johny) */
.goog-char-picker {
background-color: #ddd;
padding: 16px;
border: 1px solid #777;
}
/* goog.ui.HoverCard */
.goog-char-picker-hovercard {
border: solid 5px #ffcc33;
min-width: 64px;
max-width: 160px;
padding: 16px;
background-color: white;
text-align: center;
position: absolute;
visibility: hidden;
}
.goog-char-picker-name {
font-size: x-small;
}
.goog-char-picker-unicode {
font-size: x-small;
color: GrayText;
}
.goog-char-picker-char-zoom {
font-size: xx-large;
}
/*
* grid
*/
.goog-char-picker-grid-container {
border: 1px solid #777;
background-color: #fff;
width: 272px;
}
.goog-char-picker-grid {
overflow: hidden;
height: 250px;
width: 250px;
position: relative;
}
.goog-stick {
width: 1px;
overflow: hidden;
}
.goog-stickwrap {
width: 17px;
height: 250px;
float: right;
overflow: auto;
}
.goog-char-picker-recents {
border: 1px solid #777;
background-color: #fff;
height: 25px;
width: 275px;
margin: 0 0 16px 0;
position: relative;
}
.goog-char-picker-notice {
font-size: x-small;
height: 16px;
color: GrayText;
margin: 0 0 16px 0;
}
/*
* Hex entry
*/
.goog-char-picker-uplus {
}
.goog-char-picker-input-box {
width: 96px;
}
.label-input-label {
color: GrayText;
}
.goog-char-picker-okbutton {
}
/*
* Grid buttons
*/
.goog-char-picker-grid .goog-flat-button {
position: relative;
width: 24px;
height: 24px;
line-height: 24px;
border-bottom: 1px solid #ddd;
border-right: 1px solid #ddd;
text-align: center;
cursor: pointer;
outline: none;
}
.goog-char-picker-grid .goog-flat-button-hover,
.goog-char-picker-grid .goog-flat-button-focus {
background-color: #ffcc33;
}
/*
* goog.ui.Menu
*/
/* State: resting. */
.goog-char-picker-button {
border-width: 0px;
margin: 0;
padding: 0;
position: absolute;
background-position: center left;
}
/* State: resting. */
.goog-char-picker-menu {
background-color: #fff;
border-color: #ccc #666 #666 #ccc;
border-style: solid;
border-width: 1px;
cursor: default;
margin: 0;
outline: none;
padding: 0;
position: absolute;
max-height: 400px;
overflow-y: auto;
overflow-x: hide;
}
/*
* goog.ui.MenuItem
*/
/* State: resting. */
.goog-char-picker-menu .goog-menuitem {
color: #000;
list-style: none;
margin: 0;
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
padding: 1px 32px 1px 8px;
white-space: nowrap;
}
.goog-char-picker-menu2 .goog-menuitem {
color: #000;
list-style: none;
margin: 0;
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
padding: 1px 32px 1px 8px;
white-space: nowrap;
}
.goog-char-picker-menu .goog-subtitle {
color: #fff !important;
background-color: #666;
font-weight: bold;
list-style: none;
margin: 0;
/* 28px on the left for icon or checkbox; 10ex on the right for shortcut. */
padding: 3px 32px 3px 8px;
white-space: nowrap;
}
/* BiDi override for the resting state. */
.goog-char-picker-menu .goog-menuitem-rtl {
/* Flip left/right padding for BiDi. */
padding: 2px 16px 2px 32px !important;
}
/* State: hover. */
.goog-char-picker-menu .goog-menuitem-highlight {
background-color: #d6e9f8;
}
/*
* goog.ui.MenuSeparator
*/
/* State: resting. */
.goog-char-picker-menu .goog-menuseparator {
border-top: 1px solid #ccc;
margin: 2px 0;
padding: 0;
}
|