| 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 { |
| 11 color: var(--link-color); |
| 12 } |
| 13 |
| 10 .card-title { | 14 .card-title { |
| 11 align-items: center; | 15 align-items: center; |
| 12 border-bottom: 1px solid var(--card-border-color); | 16 border-bottom: 1px solid var(--card-border-color); |
| 13 border-radius: 2px 2px 0 0; | 17 border-radius: 2px 2px 0 0; |
| 14 color: var(--primary-text-color); | |
| 15 display: flex; | 18 display: flex; |
| 16 font-size: 14px; | 19 font-size: 14px; |
| 17 font-weight: 500; | 20 font-weight: 500; |
| 18 height: 48px; | 21 height: 48px; |
| 19 line-height: 48px; | 22 line-height: 48px; |
| 20 overflow: hidden; | 23 overflow: hidden; |
| 21 padding: 0 20px; | 24 padding: 0 20px; |
| 22 text-overflow: ellipsis; | 25 text-overflow: ellipsis; |
| 23 white-space: nowrap; | 26 white-space: nowrap; |
| 24 } | 27 } |
| 25 | 28 |
| 26 .centered-message { | 29 .centered-message { |
| 27 align-items: center; | 30 align-items: center; |
| 28 color: #b4b4b4; | 31 color: var(--md-loading-message-color); |
| 29 display: flex; | 32 display: flex; |
| 30 flex: 1; | 33 flex: 1; |
| 31 font-size: 14px; | 34 font-size: 14px; |
| 32 font-weight: 500; | 35 font-weight: 500; |
| 33 height: 100%; | 36 height: 100%; |
| 34 justify-content: center; | 37 justify-content: center; |
| 35 } | 38 } |
| 36 | 39 |
| 37 .menu-item { | 40 .menu-item { |
| 38 -webkit-user-select: none; | 41 -webkit-user-select: none; |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 button.more-vert-button div { | 82 button.more-vert-button div { |
| 80 border: 2px solid var(--secondary-text-color); | 83 border: 2px solid var(--secondary-text-color); |
| 81 border-radius: 2px; | 84 border-radius: 2px; |
| 82 margin: 1px 10px; | 85 margin: 1px 10px; |
| 83 pointer-events: none; | 86 pointer-events: none; |
| 84 transform: scale(0.8); | 87 transform: scale(0.8); |
| 85 } | 88 } |
| 86 </style> | 89 </style> |
| 87 </template> | 90 </template> |
| 88 </dom-module> | 91 </dom-module> |
| OLD | NEW |