Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Side by Side Diff: Source/web/resources/calendarPicker.css

Issue 556323003: Calendar Picker: Make month popup cells non-focusable. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 padding: 0; 237 padding: 0;
238 } 238 }
239 239
240 .month-buttons-row { 240 .month-buttons-row {
241 display: flex; 241 display: flex;
242 } 242 }
243 243
244 .month-button { 244 .month-button {
245 flex: 1; 245 flex: 1;
246 height: 32px; 246 height: 32px;
247 line-height: 32px;
247 padding: 0 !important; 248 padding: 0 !important;
248 margin: 0 !important; 249 margin: 0 !important;
249 background-image: none !important; 250 background-image: none !important;
250 background-color: #ffffff; 251 background-color: #ffffff;
251 border-width: 0 !important; 252 border-width: 0 !important;
252 box-shadow: none !important; 253 box-shadow: none !important;
254 text-align: center;
253 } 255 }
254 256
255 .month-button.highlighted { 257 .month-button.highlighted {
256 background-color: #e5ecf8; 258 background-color: #e5ecf8;
257 } 259 }
258 260
261 .month-button[aria-disabled="true"] {
262 color: GrayText;
263 }
264
259 .scrubby-scroll-bar { 265 .scrubby-scroll-bar {
260 width: 14px; 266 width: 14px;
261 height: 60px; 267 height: 60px;
262 background-color: white; 268 background-color: white;
263 border-left: 1px solid #bfbfbf; 269 border-left: 1px solid #bfbfbf;
264 position: absolute; 270 position: absolute;
265 top: 0; 271 top: 0;
266 } 272 }
267 273
268 .scrubby-scroll-thumb { 274 .scrubby-scroll-thumb {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 * This is particularly noticeable on mac. */ 315 * This is particularly noticeable on mac. */
310 border-color: rgb(77, 144, 254) !important; 316 border-color: rgb(77, 144, 254) !important;
311 outline: none; 317 outline: none;
312 } 318 }
313 319
314 .preparing button:focus, 320 .preparing button:focus,
315 .preparing .year-list-view:focus, 321 .preparing .year-list-view:focus,
316 .preparing .calendar-table-view:focus { 322 .preparing .calendar-table-view:focus {
317 transition: none; 323 transition: none;
318 } 324 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698