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

Side by Side Diff: chrome/browser/resources/hotword_audio_verification/style.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 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 * { 5 * {
6 box-sizing: border-box; 6 box-sizing: border-box;
7 color: rgba(0, 0, 0, .87); 7 color: rgba(0, 0, 0, .87);
8 font-family: Helvetica, sans-serif; 8 font-family: Helvetica, sans-serif;
9 font-size: 14px; 9 font-size: 14px;
10 margin: 0; 10 margin: 0;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 line-height: 100%; 102 line-height: 100%;
103 margin-top: 27px; 103 margin-top: 27px;
104 } 104 }
105 105
106 .col-spacing { 106 .col-spacing {
107 float: left; 107 float: left;
108 height: 160px; 108 height: 160px;
109 width: 16px; 109 width: 16px;
110 } 110 }
111 111
112 a.link-button { 112 a[is='action-link'] {
113 display: inline-block; 113 display: inline-block;
114 font-size: 14px; 114 font-size: 14px;
115 margin-top: 22px; 115 margin-top: 22px;
116 text-decoration: none; 116 text-decoration: none;
117 text-transform: uppercase; 117 text-transform: uppercase;
118 } 118 }
119 119
120 div.buttonbar { 120 div.buttonbar {
121 background: rgba(0, 0, 0, .06); 121 background: rgba(0, 0, 0, .06);
122 height: 60px; 122 height: 60px;
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 width: 24px; 220 width: 24px;
221 } 221 }
222 222
223 .check .text { 223 .check .text {
224 color: rgba(0, 0, 0, .54); 224 color: rgba(0, 0, 0, .54);
225 display: inline-block; 225 display: inline-block;
226 height: 24px; 226 height: 24px;
227 line-height: 24px; 227 line-height: 24px;
228 vertical-align: top; 228 vertical-align: top;
229 } 229 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698