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

Side by Side Diff: components/flags_ui/resources/flags.css

Issue 2889113002: web_dev_style: Fix errors in new directories and enable PRESUBMIT (Closed)
Patch Set: merge+fix Created 3 years, 7 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 body { 5 body {
6 margin: 10px 10px 0; 6 margin: 10px 10px 0;
7 <if expr="not is_android and not is_ios"> 7 <if expr="not is_android and not is_ios">
8 min-width: 47em; 8 min-width: 47em;
9 </if> 9 </if>
10 /* Should be larger than the evaluated height of needs-restart. */ 10 /* Should be larger than the evaluated height of needs-restart. */
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 156
157 div.needs-restart { 157 div.needs-restart {
158 /* If you modify properties that change the height of this, 158 /* If you modify properties that change the height of this,
159 * update body.padding-bottom. */ 159 * update body.padding-bottom. */
160 background: #FFF; 160 background: #FFF;
161 border-top: 1px solid rgb(181, 199, 222); 161 border-top: 1px solid rgb(181, 199, 222);
162 bottom: 0; 162 bottom: 0;
163 box-shadow: 0 -2px 2px #ddd; 163 box-shadow: 0 -2px 2px #ddd;
164 box-sizing: border-box; 164 box-sizing: border-box;
165 left: 0; 165 left: 0;
166 padding-bottom: 15px; 166 padding: 15px;
167 padding-left: 15px;
168 padding-right: 15px;
169 padding-top: 15px;
170 position: fixed; 167 position: fixed;
171 width: 100%; 168 width: 100%;
172 } 169 }
173 170
174 .experiment-restart-button { 171 .experiment-restart-button {
175 -webkit-user-select: none; 172 -webkit-user-select: none;
176 background: rgb(76, 142, 250); 173 background: rgb(76, 142, 250);
177 border: 0; 174 border: 0;
178 border-radius: 2px; 175 border-radius: 2px;
179 box-sizing: border-box; 176 box-sizing: border-box;
180 color: #fff; 177 color: #fff;
181 cursor: pointer; 178 cursor: pointer;
182 font-weight: 700; 179 font-weight: 700;
183 margin-top: 10px; 180 margin-top: 10px;
184 padding: 10px 24px; 181 padding: 10px 24px;
185 text-transform: uppercase; 182 text-transform: uppercase;
186 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); 183 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
187 } 184 }
188 185
189 button { 186 button {
190 font-size: 104%; 187 font-size: 104%;
191 } 188 }
192 189
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698