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

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: Changed switching between pages & addressed comments 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 :host {
5 @apply(--layout-center);
6 @apply(--layout-vertical);
7 padding: 0 24px 20px 24px;
8 }
calamity 2016/02/11 00:23:31 Don't think it makes sense to have :host in here.
yingran 2016/02/11 02:06:36 Done.
9
10 #main-container {
calamity 2016/02/11 00:23:31 This needs a better name now. history-item-contai
yingran 2016/02/11 02:06:36 Done.
11 @apply(--shadow-elevation-2dp);
12 background: #fff;
13 border-radius: 2px;
14 max-width: 960px;
15 min-width: 500px;
16 width: 100%;
17 }
18
19 #card-title {
calamity 2016/02/11 00:23:31 These should all be classes.
yingran 2016/02/11 02:06:36 Done.
20 @apply(--layout-center);
21 @apply(--layout-horizontal);
22 -webkit-padding-start: 20px;
23 background: #fafafa;
24 border-bottom: 1px solid rgba(0, 0, 0, 0.14);
25 border-radius: 2px 2px 0 0;
26 color: #333;
27 font-size: 14px;
28 font-weight: 500;
29 height: 48px;
30 }
31 </style>
32 </template>
33 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698