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

Side by Side Diff: chrome/browser/resources/options/extension_settings.css

Issue 8359008: Improve extension settings accessibility. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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) 2011 The Chromium Authors. All rights reserved. 2 Copyright (c) 2011 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 */ 5 */
6 6
7 .details-view { 7 .details-view {
8 -webkit-padding-end: 10px; 8 -webkit-padding-end: 10px;
9 } 9 }
10 10
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 257
258 #get-more-extensions-container { 258 #get-more-extensions-container {
259 display: -webkit-box; 259 display: -webkit-box;
260 } 260 }
261 261
262 #get-more-extensions { 262 #get-more-extensions {
263 padding-top: 5px; 263 padding-top: 5px;
264 font-size: 15px; 264 font-size: 15px;
265 -webkit-padding-start: 10px; 265 -webkit-padding-start: 10px;
266 } 266 }
267
268 /* Support full keyboard accessibility without making things ugly
269 for users who click, by hiding some focus outlines when the user
270 clicks anywhere, but showing them when the user presses any key. */
271 body.hide-some-focus-outlines .extension-zippy-container {
272 outline: none;
273 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698