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

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

Issue 1717213003: [MD History] Extract shared stylesheet. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix nits 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 :root {
5 --card-border-color: rgba(0, 0, 0, 0.14);
6 --card-max-width: 960px;
7 --card-min-width: 500px;
8 }
9
10 .card-title {
11 @apply(--layout-center);
12 @apply(--layout-horizontal);
13 -webkit-padding-start: 20px;
14 background: #fafafa;
15 border-bottom: 1px solid var(--card-border-color);
16 border-radius: 2px 2px 0 0;
17 color: #333;
18 font-size: 14px;
19 font-weight: 500;
20 height: 48px;
21 }
22
23 .website-icon {
24 -webkit-margin-end: 16px;
25 height: 16px;
26 min-width: 16px;
27 }
28
29 .website-title {
30 color: #333;
31 overflow: hidden;
32 text-decoration: none;
33 text-overflow: ellipsis;
34 white-space: nowrap;
35 }
36
37 .website-title:hover {
38 text-decoration: underline;
39 }
40 </style>
41 </template>
42 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/history_toolbar.html ('k') | chrome/browser/ui/webui/md_history_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698