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

Side by Side Diff: chrome/browser/resources/md_history/shared_style.html

Issue 1993613002: [MD History] Implement grouped history UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@privatize
Patch Set: address comments Created 4 years, 6 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 <dom-module id="shared-style"> 1 <dom-module id="shared-style">
2 <template> 2 <template>
3 <style> 3 <style>
4 :root { 4 :root {
5 --card-border-color: rgba(0, 0, 0, 0.14); 5 --card-border-color: rgba(0, 0, 0, 0.14);
6 --card-first-last-item-padding: 8px;
6 --card-max-width: 960px; 7 --card-max-width: 960px;
7 --card-min-width: 500px; 8 --card-min-width: 500px;
9 --card-padding-between: 20px;
8 --card-padding-side: 24px; 10 --card-padding-side: 24px;
9 --first-card-padding-top: 40px; 11 --first-card-padding-top: 40px;
10 --side-bar-width: 256px; 12 --side-bar-width: 256px;
11 } 13 }
12 14
13 [hidden] { 15 [hidden] {
14 display: none !important; 16 display: none !important;
15 } 17 }
16 18
17 .card-title { 19 .card-title {
(...skipping 17 matching lines...) Expand all
35 font-size: 14px; 37 font-size: 14px;
36 font-weight: 500; 38 font-weight: 500;
37 justify-content: center; 39 justify-content: center;
38 } 40 }
39 41
40 .website-icon { 42 .website-icon {
41 -webkit-margin-end: 16px; 43 -webkit-margin-end: 16px;
42 background-repeat: no-repeat; 44 background-repeat: no-repeat;
43 background-size: 16px; 45 background-size: 16px;
44 height: 16px; 46 height: 16px;
45 min-width: 16px; 47 width: 16px;
46 } 48 }
47 49
48 .website-title { 50 .website-title {
49 color: #333; 51 color: #333;
50 overflow: hidden; 52 overflow: hidden;
51 text-decoration: none; 53 text-decoration: none;
52 text-overflow: ellipsis; 54 text-overflow: ellipsis;
53 white-space: nowrap; 55 white-space: nowrap;
54 } 56 }
55 57
56 .website-title:hover { 58 .website-title:hover {
57 text-decoration: underline; 59 text-decoration: underline;
58 } 60 }
59 </style> 61 </style>
60 </template> 62 </template>
61 </dom-module> 63 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_toolbar.js ('k') | chrome/browser/resources/md_history/synced_device_card.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698