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

Side by Side Diff: ui/webui/resources/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: merge Created 6 years, 1 month 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 list, 5 list,
6 grid { 6 grid {
7 display: block; 7 display: block;
8 outline: none; 8 outline: none;
9 overflow: auto; 9 overflow: auto;
10 position: relative; /* Make sure that item offsets are relative to the 10 position: relative; /* Make sure that item offsets are relative to the
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 list :-webkit-any( 94 list :-webkit-any(
95 input[type='input'], 95 input[type='input'],
96 input[type='password'], 96 input[type='password'],
97 input[type='search'], 97 input[type='search'],
98 input[type='text'], 98 input[type='text'],
99 input[type='url']), 99 input[type='url']),
100 list :-webkit-any( 100 list :-webkit-any(
101 button, 101 button,
102 input[type='button'], 102 input[type='button'],
103 input[type='submit'], 103 input[type='submit'],
104 select):not(.custom-appearance):not(.link-button) { 104 select):not(.custom-appearance) {
105 line-height: normal; 105 line-height: normal;
106 margin: 0; 106 margin: 0;
107 vertical-align: middle; 107 vertical-align: middle;
108 } 108 }
109 109
110 list > [hidden], 110 list > [hidden],
111 grid > [hidden] { 111 grid > [hidden] {
112 display: none; 112 display: none;
113 } 113 }
114 114
115 list > .drag-selection-border { 115 list > .drag-selection-border {
116 border-radius: 0; 116 border-radius: 0;
117 background-color: rgba(255, 255, 255, 0.3); 117 background-color: rgba(255, 255, 255, 0.3);
118 border: 2px solid rgba(255, 255, 255, 0.6); 118 border: 2px solid rgba(255, 255, 255, 0.6);
119 outline: 1px solid rgba(0, 0, 0, 0.1); 119 outline: 1px solid rgba(0, 0, 0, 0.1);
120 position: absolute; 120 position: absolute;
121 z-index: 2; 121 z-index: 2;
122 } 122 }
OLDNEW
« no previous file with comments | « ui/file_manager/file_manager/foreground/css/list.css ('k') | ui/webui/resources/css/widgets.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698