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

Side by Side Diff: chrome/browser/resources/print_preview/print_preview.css

Issue 668983004: Add <a is="action-link">, a web component extension of <a> for in-page actions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 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
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 html { 5 html {
6 height: 100%; 6 height: 100%;
7 overflow: hidden; 7 overflow: hidden;
8 } 8 }
9 9
10 body { 10 body {
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
309 -webkit-box-flex: 1; 309 -webkit-box-flex: 1;
310 -webkit-box-orient: vertical; 310 -webkit-box-orient: vertical;
311 display: -webkit-box; 311 display: -webkit-box;
312 height: 100%; 312 height: 100%;
313 position: relative; 313 position: relative;
314 } 314 }
315 315
316 html:not(.focus-outline-visible) 316 html:not(.focus-outline-visible)
317 :enabled:focus:-webkit-any(input[type='checkbox'], 317 :enabled:focus:-webkit-any(input[type='checkbox'],
318 input[type='radio'], 318 input[type='radio'],
319 button):not(.link-button) { 319 button) {
320 /* Cancel border-color for :focus specified in widgets.css. */ 320 /* Cancel border-color for :focus specified in widgets.css. */
321 border-color: rgba(0,0,0,0.25); 321 border-color: rgba(0,0,0,0.25);
322 } 322 }
323 323
324 html:not(.focus-outline-visible) button:focus.link-button { 324 html:not(.focus-outline-visible) [is='action-link']:focus {
325 outline: none; 325 outline: none;
326 } 326 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/policy.html ('k') | chrome/browser/resources/print_preview/print_preview.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698