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

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

Issue 2296903003: Long options should not break the layout of chrome://flags (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 77
78 .section-header > table { 78 .section-header > table {
79 width: 100%; 79 width: 100%;
80 } 80 }
81 81
82 .section-header-title { 82 .section-header-title {
83 font-weight: bold; 83 font-weight: bold;
84 line-height: 200%; 84 line-height: 200%;
85 } 85 }
86 86
87 select {
88 max-width: 85vw;
89 }
90
87 #experiment-reset-all { 91 #experiment-reset-all {
88 float: right; 92 float: right;
89 } 93 }
90 94
91 html[dir=rtl] #experiment-reset-all { 95 html[dir=rtl] #experiment-reset-all {
92 float: left; 96 float: left;
93 } 97 }
94 98
95 .vbox-container { 99 .vbox-container {
96 -webkit-box-orient: vertical; 100 -webkit-box-orient: vertical;
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 margin-top: 10px; 183 margin-top: 10px;
180 padding: 10px 24px; 184 padding: 10px 24px;
181 text-transform: uppercase; 185 text-transform: uppercase;
182 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1); 186 transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
183 } 187 }
184 188
185 button { 189 button {
186 font-size: 104%; 190 font-size: 104%;
187 } 191 }
188 192
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698