| OLD | NEW |
| 1 <link rel="import" href="chrome://history/shared_vars.html"> | 1 <link rel="import" href="chrome://history/shared_vars.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/hidden_style_css.html"> |
| 2 | 3 |
| 3 <dom-module id="shared-style"> | 4 <dom-module id="shared-style"> |
| 4 <template> | 5 <template> |
| 5 <style> | 6 <style include="cr-hidden-style"> |
| 6 [hidden] { | |
| 7 display: none !important; | |
| 8 } | |
| 9 | |
| 10 a { | 7 a { |
| 11 color: var(--link-color); | 8 color: var(--link-color); |
| 12 } | 9 } |
| 13 | 10 |
| 14 .card-title { | 11 .card-title { |
| 15 align-items: center; | 12 align-items: center; |
| 16 border-bottom: 1px solid var(--card-border-color); | 13 border-bottom: 1px solid var(--card-border-color); |
| 17 border-radius: 2px 2px 0 0; | 14 border-radius: 2px 2px 0 0; |
| 18 display: flex; | 15 display: flex; |
| 19 font-size: 108%; | 16 font-size: 108%; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 button.more-vert-button div { | 72 button.more-vert-button div { |
| 76 border: 2px solid var(--secondary-text-color); | 73 border: 2px solid var(--secondary-text-color); |
| 77 border-radius: 2px; | 74 border-radius: 2px; |
| 78 margin: 1px 8px; | 75 margin: 1px 8px; |
| 79 pointer-events: none; | 76 pointer-events: none; |
| 80 transform: scale(0.8); | 77 transform: scale(0.8); |
| 81 } | 78 } |
| 82 </style> | 79 </style> |
| 83 </template> | 80 </template> |
| 84 </dom-module> | 81 </dom-module> |
| OLD | NEW |