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