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

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

Issue 1607403004: MD History: Display synced tabs history (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@second_patch
Patch Set: Merged but tests not working everything else SEEMS ok Created 4 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
OLDNEW
(Empty)
1 <dom-module id="shared-style">
2 <template>
3 <style>
4 .history-item-container {
5 @apply(--shadow-elevation-2dp);
6 background: #fff;
7 border-radius: 2px;
8 max-width: 960px;
9 min-width: 500px;
10 width: 100%;
11 }
12
13 .card-title {
14 @apply(--layout-center);
15 @apply(--layout-horizontal);
16 -webkit-padding-start: 20px;
17 background: #fafafa;
18 border-bottom: 1px solid rgba(0, 0, 0, 0.14);
19 border-radius: 2px 2px 0 0;
20 color: #333;
21 font-size: 14px;
22 font-weight: 500;
23 height: 48px;
24 }
25
26 .url {
27 color: #333;
28 overflow: hidden;
29 text-decoration: none;
30 text-overflow: ellipsis;
31 white-space: nowrap;
32 }
33
34 .url:hover {
35 text-decoration: underline;
36 }
37
38 .website-icon {
39 -webkit-margin-end: 16px;
40 height: 16px;
41 min-width: 16px;
42 }
43
44 .item-container {
45 @apply(--layout-center);
46 @apply(--layout-horizontal);
47 min-height: 40px;
48 }
49 </style>
50 </template>
51 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_item.js ('k') | chrome/browser/resources/md_history/side_bar.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698