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

Side by Side Diff: ui/file_manager/file_manager/foreground/css/list.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: nits 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 2013 The Chromium Authors. All rights reserved. 1 /* Copyright 2013 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 /* Derived from /ui/webui/resources/css/list.css. */ 5 /* Derived from /ui/webui/resources/css/list.css. */
6 6
7 list, 7 list,
8 grid { 8 grid {
9 display: block; 9 display: block;
10 outline: none; 10 outline: none;
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 list :-webkit-any( 55 list :-webkit-any(
56 input[type='input'], 56 input[type='input'],
57 input[type='password'], 57 input[type='password'],
58 input[type='search'], 58 input[type='search'],
59 input[type='text'], 59 input[type='text'],
60 input[type='url']), 60 input[type='url']),
61 list :-webkit-any( 61 list :-webkit-any(
62 button, 62 button,
63 input[type='button'], 63 input[type='button'],
64 input[type='submit'], 64 input[type='submit'],
65 select):not(.custom-appearance):not(.link-button) { 65 select):not(.custom-appearance) {
66 line-height: normal; 66 line-height: normal;
67 vertical-align: middle; 67 vertical-align: middle;
68 } 68 }
69 69
70 list > [hidden], 70 list > [hidden],
71 grid > [hidden] { 71 grid > [hidden] {
72 display: none; 72 display: none;
73 } 73 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698