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

Side by Side Diff: chrome/browser/resources/policy.css

Issue 677823002: Fix chrome://policy fall out from action-link change. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
« 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.uber-frame { 5 body.uber-frame {
6 -webkit-margin-start: 23px; 6 -webkit-margin-start: 23px;
7 } 7 }
8 8
9 body.uber-frame > .page { 9 body.uber-frame > .page {
10 -webkit-margin-end: 0; 10 -webkit-margin-end: 0;
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 font-weight: normal; 141 font-weight: normal;
142 } 142 }
143 143
144 div.elide, 144 div.elide,
145 span.value { 145 span.value {
146 overflow: hidden; 146 overflow: hidden;
147 text-overflow: ellipsis; 147 text-overflow: ellipsis;
148 white-space: nowrap; 148 white-space: nowrap;
149 } 149 }
150 150
151 button.toggle-expanded-value { 151 .toggle-expanded-value {
152 padding: 0; 152 padding: 0;
153 } 153 }
154 154
155 tbody.has-overflowed-value span.value { 155 tbody.has-overflowed-value span.value {
156 display: none; 156 display: none;
157 } 157 }
158 158
159 tbody:not(.has-overflowed-value) button.toggle-expanded-value { 159 tbody:not(.has-overflowed-value) .toggle-expanded-value {
160 display: none; 160 display: none;
161 } 161 }
162 162
163 tbody:not(.has-overflowed-value) > tr.expanded-value-container, 163 tbody:not(.has-overflowed-value) > tr.expanded-value-container,
164 tbody:not(.show-overflowed-value) > tr.expanded-value-container { 164 tbody:not(.show-overflowed-value) > tr.expanded-value-container {
165 display: none; 165 display: none;
166 } 166 }
167 167
168 td.expanded-value { 168 td.expanded-value {
169 white-space: pre; 169 white-space: pre;
170 word-wrap: break-word; 170 word-wrap: break-word;
171 } 171 }
172 172
173 html:not(.focus-outline-visible) 173 html:not(.focus-outline-visible)
174 :enabled:focus:-webkit-any(input[type='checkbox'], 174 :enabled:focus:-webkit-any(input[type='checkbox'],
175 input[type='radio'], button) { 175 input[type='radio'], button) {
176 /* Cancel border-color for :focus specified in widgets.css. */ 176 /* Cancel border-color for :focus specified in widgets.css. */
177 border-color: rgba(0, 0, 0, 0.25); 177 border-color: rgba(0, 0, 0, 0.25);
178 } 178 }
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