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

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

Issue 1838333004: Add a notice about other forms of browsing history to the History WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@desktop-ui-after-rebase
Patch Set: Moved build dependencies to OS!=iOS Created 4 years, 8 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 html[dir='rtl'] body.uber-frame > .page { 5 html[dir='rtl'] body.uber-frame > .page {
6 -webkit-margin-end: 0; 6 -webkit-margin-end: 0;
7 } 7 }
8 8
9 body.uber-frame > .page.big-topbar-page { 9 body.uber-frame > .page.big-topbar-page {
10 padding-top: 78px; 10 padding-top: 78px;
(...skipping 20 matching lines...) Expand all
31 31
32 #notification-bar { 32 #notification-bar {
33 float: right; 33 float: right;
34 padding-top: 5px; 34 padding-top: 5px;
35 } 35 }
36 36
37 html[dir='rtl'] #notification-bar { 37 html[dir='rtl'] #notification-bar {
38 float: left; 38 float: left;
39 } 39 }
40 40
41 #notification-bar.alone { 41 #top-container.overflow #notification-bar {
42 float: left; 42 float: left;
43 margin-top: 12px; 43 margin-top: 12px;
44 } 44 }
45 45
46 html[dir='rtl'] #notification-bar.alone { 46 html[dir='rtl'] #top-container.overflow #notification-bar {
47 float: right; 47 float: right;
48 } 48 }
49 49
50 #notification-bar div + div {
51 margin: 1em 0 1em 0;
Dan Beam 2016/03/31 01:05:43 margin: 1em 0;
msramek 2016/03/31 19:20:01 Done. Forgot about this :)
52 }
53
50 #filter-controls, 54 #filter-controls,
51 #top-container, 55 #top-container,
52 #results-display, 56 #results-display,
53 #results-pagination { 57 #results-pagination {
54 max-width: 718px; 58 max-width: 718px;
55 } 59 }
56 60
57 #filter-controls { 61 #filter-controls {
58 display: flex; 62 display: flex;
59 margin-bottom: 4px; 63 margin-bottom: 4px;
60 margin-top: 4px; 64 margin-top: 4px;
61 } 65 }
62 66
63 #filter-controls > * { 67 #filter-controls > * {
64 flex: 1; 68 flex: 1;
65 } 69 }
66 70
67 #editing-controls { 71 #editing-controls {
68 -webkit-margin-end: 12px; 72 -webkit-margin-end: 12px;
69 float: left; 73 float: left;
70 } 74 }
71 75
72 html[dir='rtl'] #editing-controls { 76 html[dir='rtl'] #editing-controls {
73 float: right; 77 float: right;
74 } 78 }
75 79
80 #top-container.overflow #editing-controls {
81 float: none;
82 }
83
76 #editing-controls button:first-of-type { 84 #editing-controls button:first-of-type {
77 -webkit-margin-start: 0; 85 -webkit-margin-start: 0;
78 } 86 }
79 87
80 #range-next, 88 #range-next,
81 #range-previous { 89 #range-previous {
82 background-image: url(../disclosure_triangle_small.png), 90 background-image: url(../disclosure_triangle_small.png),
83 -webkit-linear-gradient(rgb(241, 241, 241), 91 -webkit-linear-gradient(rgb(241, 241, 241),
84 rgb(241, 241, 241) 38%, 92 rgb(241, 241, 241) 38%,
85 rgb(230, 230, 230)); 93 rgb(230, 230, 230));
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 628
621 #action-menu[data-devicetype='phone']::before { 629 #action-menu[data-devicetype='phone']::before {
622 background-image: url(../../../../ui/webui/resources/images/smartphone.svg); 630 background-image: url(../../../../ui/webui/resources/images/smartphone.svg);
623 background-position: 14px center; 631 background-position: 14px center;
624 padding-left: 43px; 632 padding-left: 43px;
625 } 633 }
626 634
627 #action-menu[data-devicetype='tablet']::before { 635 #action-menu[data-devicetype='tablet']::before {
628 background-image: url(../../../../ui/webui/resources/images/tablet.svg); 636 background-image: url(../../../../ui/webui/resources/images/tablet.svg);
629 } 637 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/history/history.js » ('j') | chrome/browser/resources/history/history.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698