OLD | NEW |
---|---|
1 <link rel="import" href="chrome://history/shared_vars.html"> | 1 <link rel="import" href="chrome://history/shared_vars.html"> |
2 | 2 |
3 <dom-module id="shared-style"> | 3 <dom-module id="shared-style"> |
4 <template> | 4 <template> |
5 <style> | 5 <style> |
6 [hidden] { | 6 [hidden] { |
7 display: none !important; | 7 display: none !important; |
8 } | 8 } |
9 | 9 |
10 .card-title { | 10 .card-title { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 button.icon-button { | 56 button.icon-button { |
57 height: 36px; | 57 height: 36px; |
58 width: 36px; | 58 width: 36px; |
59 } | 59 } |
60 | 60 |
61 button.icon-button iron-icon { | 61 button.icon-button iron-icon { |
62 color: var(--secondary-text-color); | 62 color: var(--secondary-text-color); |
63 height: 20px; | 63 height: 20px; |
64 width: 20px; | 64 width: 20px; |
65 } | 65 } |
66 | |
67 button.more-vert-button { | |
Dan Beam
2016/08/24 05:53:59
nit: button.class doesn't really buy much more tha
| |
68 height: 36px; | |
69 padding: 6px; | |
70 width: 36px; | |
71 } | |
72 | |
73 button.more-vert-button div { | |
74 border: 2px solid var(--secondary-text-color); | |
75 border-radius: 2px; | |
76 margin: 1px 10px; | |
77 pointer-events: none; | |
78 transform: scale(0.8); | |
Dan Beam
2016/08/24 05:53:59
can you just change the 2px values to 1.6px instea
tsergeant
2016/08/24 05:58:08
We tried this, it doesn't work -- it seems to just
Dan Beam
2016/08/24 06:05:04
cool, still lgtm
| |
79 } | |
66 </style> | 80 </style> |
67 </template> | 81 </template> |
68 </dom-module> | 82 </dom-module> |
OLD | NEW |