| 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 a { | 10 a { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 align-items: center; | 30 align-items: center; |
| 31 color: var(--md-loading-message-color); | 31 color: var(--md-loading-message-color); |
| 32 display: flex; | 32 display: flex; |
| 33 flex: 1; | 33 flex: 1; |
| 34 font-size: 14px; | 34 font-size: 14px; |
| 35 font-weight: 500; | 35 font-weight: 500; |
| 36 height: 100%; | 36 height: 100%; |
| 37 justify-content: center; | 37 justify-content: center; |
| 38 } | 38 } |
| 39 | 39 |
| 40 .menu-item { | |
| 41 -webkit-user-select: none; | |
| 42 cursor: pointer; | |
| 43 font: inherit; | |
| 44 white-space: nowrap; | |
| 45 } | |
| 46 | |
| 47 .website-icon { | 40 .website-icon { |
| 48 -webkit-margin-end: 16px; | 41 -webkit-margin-end: 16px; |
| 49 background-repeat: no-repeat; | 42 background-repeat: no-repeat; |
| 50 background-size: 16px; | 43 background-size: 16px; |
| 51 height: 16px; | 44 height: 16px; |
| 52 width: 16px; | 45 width: 16px; |
| 53 } | 46 } |
| 54 | 47 |
| 55 .website-title { | 48 .website-title { |
| 56 color: var(--primary-text-color); | 49 color: var(--primary-text-color); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 82 button.more-vert-button div { | 75 button.more-vert-button div { |
| 83 border: 2px solid var(--secondary-text-color); | 76 border: 2px solid var(--secondary-text-color); |
| 84 border-radius: 2px; | 77 border-radius: 2px; |
| 85 margin: 1px 8px; | 78 margin: 1px 8px; |
| 86 pointer-events: none; | 79 pointer-events: none; |
| 87 transform: scale(0.8); | 80 transform: scale(0.8); |
| 88 } | 81 } |
| 89 </style> | 82 </style> |
| 90 </template> | 83 </template> |
| 91 </dom-module> | 84 </dom-module> |
| OLD | NEW |