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

Side by Side Diff: chrome/browser/resources/history/history_mobile.css

Issue 957253003: Fix chrome://history for supervised users on mobile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment Created 5 years, 10 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 | « chrome/browser/resources/history/history.js ('k') | chrome/browser/ui/webui/history_ui.cc » ('j') | 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) 2013 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2013 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 /* This file contains styles specific to Android and iOS. */ 5 /* This file contains styles specific to Android and iOS. */
6 6
7 html:not(.focus-outline-visible) :focus { 7 html:not(.focus-outline-visible) :focus {
8 outline: none; 8 outline: none;
9 } 9 }
10 10
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 } 194 }
195 195
196 .entry .visit-entry { 196 .entry .visit-entry {
197 -webkit-flex: auto; 197 -webkit-flex: auto;
198 -webkit-flex-flow: column; 198 -webkit-flex-flow: column;
199 -webkit-padding-start: 48px; 199 -webkit-padding-start: 48px;
200 background-size: 32px; 200 background-size: 32px;
201 line-height: 1.3; 201 line-height: 1.3;
202 } 202 }
203 203
204 .entry .visit-entry.blocked-indicator {
205 line-height: 2;
206 }
207
204 .entry .visit-entry :-webkit-any(a, .domain) { 208 .entry .visit-entry :-webkit-any(a, .domain) {
205 display: block; 209 display: block;
206 margin-left: 0; 210 margin-left: 0;
207 margin-right: 0; 211 margin-right: 0;
208 min-width: 0; 212 min-width: 0;
209 overflow: hidden; 213 overflow: hidden;
210 padding-left: 0; 214 padding-left: 0;
211 padding-right: 0; 215 padding-right: 0;
212 text-overflow: ellipsis; 216 text-overflow: ellipsis;
213 white-space: nowrap; 217 white-space: nowrap;
214 } 218 }
215 219
220 .entry .visit-entry.blocked-indicator a {
221 display: inline;
222 }
223
216 .entry .domain { 224 .entry .domain {
217 font-size: 14px; 225 font-size: 14px;
218 } 226 }
219 227
220 #older-button { 228 #older-button {
221 -webkit-padding-end: 16px; 229 -webkit-padding-end: 16px;
222 } 230 }
223 231
224 #newest-button { 232 #newest-button {
225 -webkit-padding-start: 16px; 233 -webkit-padding-start: 16px;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 325
318 .ios-keyboard-visible #scrolling-container { 326 .ios-keyboard-visible #scrolling-container {
319 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */ 327 /* Should be 0, but that breaks scrolling -- see crbug.com/292715. */
320 bottom: -1px; 328 bottom: -1px;
321 } 329 }
322 330
323 #results-header:empty { 331 #results-header:empty {
324 display: none; 332 display: none;
325 } 333 }
326 </if> /* is_ios */ 334 </if> /* is_ios */
OLDNEW
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/ui/webui/history_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698