| 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 { |
| 11 color: var(--link-color); | 11 color: var(--link-color); |
| 12 } | 12 } |
| 13 | 13 |
| 14 .card-title { | 14 .card-title { |
| 15 align-items: center; | 15 align-items: center; |
| 16 border-bottom: 1px solid var(--card-border-color); | 16 border-bottom: 1px solid var(--card-border-color); |
| 17 border-radius: 2px 2px 0 0; | 17 border-radius: 2px 2px 0 0; |
| 18 display: flex; | 18 display: flex; |
| 19 font-size: 14px; | 19 font-size: 108%; |
| 20 font-weight: 500; | 20 font-weight: 500; |
| 21 height: 48px; | 21 height: 48px; |
| 22 line-height: 48px; | 22 line-height: 48px; |
| 23 overflow: hidden; | 23 overflow: hidden; |
| 24 padding: 0 20px; | 24 padding: 0 20px; |
| 25 text-overflow: ellipsis; | 25 text-overflow: ellipsis; |
| 26 white-space: nowrap; | 26 white-space: nowrap; |
| 27 } | 27 } |
| 28 | 28 |
| 29 .centered-message { | 29 .centered-message { |
| 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: 108%; |
| 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 .website-icon { | 40 .website-icon { |
| 41 -webkit-margin-end: 16px; | 41 -webkit-margin-end: 16px; |
| 42 background-repeat: no-repeat; | 42 background-repeat: no-repeat; |
| 43 background-size: 16px; | 43 background-size: 16px; |
| 44 height: 16px; | 44 height: 16px; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 75 button.more-vert-button div { | 75 button.more-vert-button div { |
| 76 border: 2px solid var(--secondary-text-color); | 76 border: 2px solid var(--secondary-text-color); |
| 77 border-radius: 2px; | 77 border-radius: 2px; |
| 78 margin: 1px 8px; | 78 margin: 1px 8px; |
| 79 pointer-events: none; | 79 pointer-events: none; |
| 80 transform: scale(0.8); | 80 transform: scale(0.8); |
| 81 } | 81 } |
| 82 </style> | 82 </style> |
| 83 </template> | 83 </template> |
| 84 </dom-module> | 84 </dom-module> |
| OLD | NEW |