| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 /* Elements */ | |
| 7 a { | |
| 8 color: rgb(0, 102, 204); | |
| 9 text-decoration: none; | |
| 10 } | |
| 11 | |
| 12 body { | |
| 13 background: -webkit-gradient(radial, center center, 0, center center, 400, | |
| 14 from(rgb(254, 254, 254)), | |
| 15 to(rgb(239, 239, 239))); | |
| 16 font-family: 'Open sans', Arial, sans-serif; | |
| 17 margin:0; | |
| 18 padding:0; | |
| 19 direction: __MSG_@@bidi_dir__; | |
| 20 } | |
| 21 | |
| 22 button, input { | |
| 23 font-family: inherit; | |
| 24 font-size: inherit; | |
| 25 } | |
| 26 | |
| 27 button { | |
| 28 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | |
| 29 border: 1px solid #aaa; | |
| 30 min-width: 72px; | |
| 31 -webkit-border-radius: 2px; | |
| 32 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1); | |
| 33 -webkit-user-select: none; | |
| 34 } | |
| 35 | |
| 36 button:hover { | |
| 37 background: #ebebeb -webkit-linear-gradient(#fefefe, #f8f8f8 40%, #e9e9e9); | |
| 38 border-color: #999; | |
| 39 color: #222; | |
| 40 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 41 } | |
| 42 | |
| 43 button:active, .toggle-button-active, .toggle-button-active:hover { | |
| 44 background: #ebebeb -webkit-linear-gradient(#f4f4f4, #efefef 40%, #dcdcdc); | |
| 45 color: #333; | |
| 46 -webkit-box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2); | |
| 47 } | |
| 48 | |
| 49 button[disabled], .button[disabled]:hover { | |
| 50 background: -webkit-linear-gradient(#fafafa, #f4f4f4 40%, #e5e5e5); | |
| 51 border-color: #aaa; | |
| 52 color: #888; | |
| 53 -webkit-box-shadow: none; | |
| 54 } | |
| 55 | |
| 56 h1 { | |
| 57 font-size: 24px; | |
| 58 font-weight: normal; | |
| 59 } | |
| 60 | |
| 61 label { | |
| 62 color: black; | |
| 63 font-weight: bold; | |
| 64 } | |
| 65 | |
| 66 /* Classes */ | |
| 67 | |
| 68 .access-code-digit-group { | |
| 69 /* | |
| 70 Used for each of the four-digit components of the access code as | |
| 71 displayed by the host. | |
| 72 */ | |
| 73 padding: 0px 6px; | |
| 74 } | |
| 75 | |
| 76 .big-button { | |
| 77 height: 2em; | |
| 78 font-size: 16px; | |
| 79 padding: 6px; | |
| 80 } | |
| 81 | |
| 82 .centered-button { | |
| 83 /* | |
| 84 Used to force buttons to center correctly on Chrome due to a quirk | |
| 85 with laying out buttons. http://crbug.com/84654 | |
| 86 | |
| 87 TODO(ajwong): Either fix Chrome layout behavior, or if Chrome is actually | |
| 88 conforming correctly to the standard, remove this comment. | |
| 89 */ | |
| 90 text-align: center; | |
| 91 } | |
| 92 | |
| 93 .collapsed { | |
| 94 opacity: 0; | |
| 95 height: 0 !important; | |
| 96 } | |
| 97 | |
| 98 .choice-header { | |
| 99 font-size: 24px; | |
| 100 font-weight: normal; | |
| 101 margin-__MSG_@@bidi_start_edge__: 10px; | |
| 102 } | |
| 103 | |
| 104 .choice-footer { | |
| 105 font-size: 14px; | |
| 106 } | |
| 107 | |
| 108 .choice-panel { | |
| 109 margin-top: 17px; | |
| 110 padding-bottom: 20px; | |
| 111 } | |
| 112 | |
| 113 .clickable { | |
| 114 cursor: pointer; | |
| 115 } | |
| 116 | |
| 117 .description { | |
| 118 margin-bottom: 25px; | |
| 119 } | |
| 120 | |
| 121 .error-state { | |
| 122 background-image: url('icon_warning.png'); | |
| 123 background-repeat: no-repeat; | |
| 124 background-position: top __MSG_@@bidi_start_edge__; | |
| 125 padding-__MSG_@@bidi_start_edge__: 30px; | |
| 126 padding-top: 3px; | |
| 127 margin-bottom: 10px; | |
| 128 color: #900; | |
| 129 display: inline-block; | |
| 130 } | |
| 131 | |
| 132 .expiring { | |
| 133 color: #900 !important; | |
| 134 } | |
| 135 | |
| 136 [hidden] { | |
| 137 display: none !important; | |
| 138 } | |
| 139 | |
| 140 | |
| 141 .icon-label { | |
| 142 display: inline-block; | |
| 143 vertical-align: top; | |
| 144 margin-__MSG_@@bidi_start_edge__: 10px; | |
| 145 } | |
| 146 | |
| 147 .information-box { | |
| 148 background-color: #f9edbe; | |
| 149 border: 1px solid #f0c36d; | |
| 150 -webkit-border-radius: 2px; | |
| 151 -webkit-box-shadow: 0px 2px 4px rgba(0,0,0,0.2); | |
| 152 color: #222; | |
| 153 padding: 8px 16px; | |
| 154 text-align: center; | |
| 155 font-size: 12px; | |
| 156 } | |
| 157 | |
| 158 .information-box-centerer { | |
| 159 width: 100%; | |
| 160 bottom: 8px; | |
| 161 position: absolute; | |
| 162 display: -webkit-box; | |
| 163 } | |
| 164 | |
| 165 .information-box-padding { | |
| 166 -webkit-box-flex: 1; | |
| 167 } | |
| 168 | |
| 169 .message { | |
| 170 text-align:center; | |
| 171 margin-bottom: 10px; | |
| 172 } | |
| 173 | |
| 174 .mode-select-button { | |
| 175 width: 100%; | |
| 176 height: 32px; | |
| 177 white-space: nowrap; | |
| 178 } | |
| 179 | |
| 180 .mode-select-label { | |
| 181 padding-__MSG_@@bidi_end_edge__: 20px; | |
| 182 } | |
| 183 | |
| 184 .mode-select-table { | |
| 185 margin-__MSG_@@bidi_start_edge__: 40px; | |
| 186 width: 600px; /* width + margin = body width */ | |
| 187 border-collapse: collapse; | |
| 188 margin-top: 40px; | |
| 189 } | |
| 190 | |
| 191 .mode-select-table-spacer { | |
| 192 height: 20px; | |
| 193 } | |
| 194 | |
| 195 .mode-select-table-underline td { | |
| 196 border-bottom: 1px solid #c6c6c6; | |
| 197 } | |
| 198 | |
| 199 .hide-scrollbars { | |
| 200 overflow-y: hidden; | |
| 201 } | |
| 202 | |
| 203 .host-list-container { | |
| 204 -webkit-transition: all 0.5s; | |
| 205 overflow: hidden; | |
| 206 } | |
| 207 | |
| 208 .host-list-table { | |
| 209 margin-__MSG_@@bidi_start_edge__: 30px; | |
| 210 width: 610px; /* width + margin = body width */ | |
| 211 border-spacing: 0; | |
| 212 } | |
| 213 | |
| 214 .host-list-row { | |
| 215 height: 50px; | |
| 216 color: black; | |
| 217 } | |
| 218 | |
| 219 .host-list-row td { | |
| 220 border-bottom: 1px solid transparent; | |
| 221 border-top: 1px solid transparent; | |
| 222 } | |
| 223 | |
| 224 .host-list-row:hover { | |
| 225 background-color: #e7eef2; | |
| 226 } | |
| 227 | |
| 228 .host-list-rename-icon, .host-list-remove-icon { | |
| 229 opacity: 0; | |
| 230 } | |
| 231 | |
| 232 .host-list-row:hover .host-list-rename-icon { | |
| 233 opacity: 0.8; | |
| 234 } | |
| 235 | |
| 236 .host-list-row:hover .host-list-remove-icon { | |
| 237 opacity: 0.3; | |
| 238 } | |
| 239 | |
| 240 .host-list-edit:hover .host-list-rename-icon { | |
| 241 opacity: 1; | |
| 242 } | |
| 243 | |
| 244 .host-list-edit:hover .host-list-remove-icon { | |
| 245 opacity: 0.5; | |
| 246 } | |
| 247 | |
| 248 .host-list-row:hover td { | |
| 249 border-bottom: 1px solid #c6c6c6; | |
| 250 border-top: 1px solid #c6c6c6; | |
| 251 } | |
| 252 | |
| 253 .host-list-row-end { | |
| 254 padding-__MSG_@@bidi_end_edge__: 10px; | |
| 255 } | |
| 256 | |
| 257 .host-list-row-start { | |
| 258 padding-__MSG_@@bidi_start_edge__: 10px; | |
| 259 } | |
| 260 | |
| 261 .host-offline { | |
| 262 color: #a9a9a9; | |
| 263 } | |
| 264 | |
| 265 .host-offline .host-list-main-icon { | |
| 266 opacity: 0.5; | |
| 267 } | |
| 268 | |
| 269 .small-print { | |
| 270 font-size: 13px; | |
| 271 color: #AAA; | |
| 272 } | |
| 273 | |
| 274 .top-primary { | |
| 275 font-size: 14px; | |
| 276 position: absolute; | |
| 277 top: 0.5em; | |
| 278 __MSG_@@bidi_start_edge__: 0.5em; | |
| 279 } | |
| 280 | |
| 281 .top-secondary { | |
| 282 font-size: 14px; | |
| 283 position: absolute; | |
| 284 top: 0.5em; | |
| 285 __MSG_@@bidi_end_edge__: 0.5em; | |
| 286 } | |
| 287 | |
| 288 .waiting { | |
| 289 color: rgb(180, 180, 180); | |
| 290 } | |
| 291 | |
| 292 /* Ids */ | |
| 293 #access-code-countdown-container { | |
| 294 height: 50px; | |
| 295 text-align: center; | |
| 296 } | |
| 297 | |
| 298 #access-code-display { | |
| 299 margin-top: 50px; | |
| 300 color: rgb(0, 0, 0); | |
| 301 font-weight: bold; | |
| 302 font-size: 26px; | |
| 303 text-align: center; | |
| 304 } | |
| 305 | |
| 306 #access-code-entry { | |
| 307 font-weight: bold; | |
| 308 font-size: 18px; | |
| 309 height: 25px; | |
| 310 margin: 0 10px; | |
| 311 padding-__MSG_@@bidi_start_edge__: 5px; | |
| 312 width: 12em; | |
| 313 } | |
| 314 | |
| 315 #access-code-entry-row { | |
| 316 text-align: center; | |
| 317 } | |
| 318 | |
| 319 #cancel-button { | |
| 320 float: __MSG_@@bidi_end_edge__; | |
| 321 } | |
| 322 | |
| 323 #client-footer-text, #host-footer-text { | |
| 324 text-align: center; | |
| 325 } | |
| 326 | |
| 327 #current-email { | |
| 328 color: rgba(0, 0, 0, 0.5); | |
| 329 } | |
| 330 | |
| 331 #divider-top { | |
| 332 margin: 10px 0 15px 0; | |
| 333 } | |
| 334 | |
| 335 #divider-bottom { | |
| 336 margin: 25px 0 10px 0; | |
| 337 } | |
| 338 | |
| 339 #email-status { | |
| 340 margin-__MSG_@@bidi_end_edge__: 0.5ex; | |
| 341 } | |
| 342 | |
| 343 #icon { | |
| 344 height: 64px; | |
| 345 width: 64px; | |
| 346 } | |
| 347 | |
| 348 #main { | |
| 349 color: rgb(115, 115, 115); | |
| 350 font-size: 16px; | |
| 351 margin: 100px auto 0 auto; | |
| 352 padding: 10px; | |
| 353 width: 640px; | |
| 354 } | |
| 355 | |
| 356 #host-list-error { | |
| 357 margin-__MSG_@@bidi_start_edge__: 40px; | |
| 358 } | |
| 359 | |
| 360 #session-mode { | |
| 361 position: absolute; | |
| 362 -webkit-box-shadow: 0 0 8px 0 black; | |
| 363 -webkit-user-select: none; | |
| 364 } | |
| 365 | |
| 366 #session-client-plugin { | |
| 367 margin: 0 0 -4px 0; | |
| 368 } | |
| 369 | |
| 370 #toggle-scaling { | |
| 371 margin: 1px 0 0 0; | |
| 372 padding: 1px; | |
| 373 min-width: 0; | |
| 374 line-height: 0; | |
| 375 } | |
| OLD | NEW |