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

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

Issue 1729263005: MD History: Display synced tabs history. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@mdh_shared_styles
Patch Set: address comments Created 4 years, 9 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-max-width: 960px; 6 --card-max-width: 960px;
7 --card-min-width: 500px; 7 --card-min-width: 500px;
8 --first-card-padding-top: 40px;
8 } 9 }
9 10
10 .card-title { 11 .card-title {
11 @apply(--layout-center); 12 @apply(--layout-center);
12 @apply(--layout-horizontal); 13 @apply(--layout-horizontal);
13 -webkit-padding-start: 20px; 14 -webkit-padding-start: 20px;
14 background: #fafafa; 15 background: #fafafa;
15 border-bottom: 1px solid var(--card-border-color); 16 border-bottom: 1px solid var(--card-border-color);
16 border-radius: 2px 2px 0 0; 17 border-radius: 2px 2px 0 0;
17 color: #333; 18 color: #333;
(...skipping 15 matching lines...) Expand all
33 text-overflow: ellipsis; 34 text-overflow: ellipsis;
34 white-space: nowrap; 35 white-space: nowrap;
35 } 36 }
36 37
37 .website-title:hover { 38 .website-title:hover {
38 text-decoration: underline; 39 text-decoration: underline;
39 } 40 }
40 </style> 41 </style>
41 </template> 42 </template>
42 </dom-module> 43 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698