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

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

Issue 2592293003: [MD Bookmarks] Add skeleton for MD Bookmarks. (Closed)
Patch Set: Created 4 years 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 <link rel="import" href="chrome://bookmarks/shared_vars.html">
2 <dom-module id="shared-style">
tsergeant 2016/12/22 04:33:01 Nit: newline before this.
angelayang 2016/12/28 00:49:38 Done.
3 <template>
4 <style>
5 [hidden] {
6 display: none !important;
7 }
8
9 button.more-vert-button {
10 height: 36px;
11 padding: 8px;
12 width: 36px;
13 }
14
15 button.more-vert-button div {
16 border: 2px solid var(--secondary-text-color);
17 border-radius: 2px;
18 margin: 1px 8px;
19 pointer-events: none;
20 transform: scale(0.8);
21 }
22
23 .dropdown-item {
tsergeant 2016/12/22 04:33:01 As of this morning, these styles are no longer nec
angelayang 2016/12/28 00:49:38 Done.
24 background: none;
25 border: none;
26 cursor: pointer;
27 display: flex;
28 font: inherit;
29 min-height: 32px;
30 padding: 8px 24px;
31 width: 100%;
32 }
33
34 hr {
35 background: rgba(0, 0, 0, 0.11);
36 border-width: 0;
37 height: 1px;
38 margin: 8px 0;
39 }
40 </style>
41 </template>
42 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698