| OLD | NEW |
| 1 <dom-module id="shared-style"> | 1 <dom-module id="shared-style"> |
| 2 <template> | 2 <template> |
| 3 <style> | 3 <style> |
| 4 :root { | 4 :root { |
| 5 --card-border-color: rgba(0, 0, 0, 0.14); | 5 --card-border-color: rgba(0, 0, 0, 0.14); |
| 6 --card-first-last-item-padding: 8px; | 6 --card-first-last-item-padding: 8px; |
| 7 --card-max-width: 960px; | 7 --card-max-width: 960px; |
| 8 --card-min-width: 500px; | 8 --card-min-width: 550px; |
| 9 --card-padding-between: 20px; | 9 --card-padding-between: 20px; |
| 10 --card-padding-side: 24px; | 10 --card-padding-side: 24px; |
| 11 --first-card-padding-top: 24px; | 11 --first-card-padding-top: 24px; |
| 12 --side-bar-width: 256px; | 12 --side-bar-width: 256px; |
| 13 --toolbar-grouped-height: 101px; | 13 --toolbar-grouped-height: 101px; |
| 14 --toolbar-height: 56px; | 14 --toolbar-height: 56px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 [hidden] { | 17 [hidden] { |
| 18 display: none !important; | 18 display: none !important; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 text-overflow: ellipsis; | 57 text-overflow: ellipsis; |
| 58 white-space: nowrap; | 58 white-space: nowrap; |
| 59 } | 59 } |
| 60 | 60 |
| 61 .website-title:hover { | 61 .website-title:hover { |
| 62 text-decoration: underline; | 62 text-decoration: underline; |
| 63 } | 63 } |
| 64 </style> | 64 </style> |
| 65 </template> | 65 </template> |
| 66 </dom-module> | 66 </dom-module> |
| OLD | NEW |