| OLD | NEW |
| 1 <dom-module id="shared-styles"> | 1 <dom-module id="shared-styles"> |
| 2 <template> | 2 <template> |
| 3 <style> | 3 <style> |
| 4 :root { | 4 :root { |
| 5 --action-button: { | 5 --action-button: { |
| 6 border-radius: 2px; | 6 border-radius: 2px; |
| 7 line-height: 20px; | 7 line-height: 20px; |
| 8 margin: 0; | 8 margin: 0; |
| 9 min-width: 52px; | 9 min-width: 52px; |
| 10 padding: 6px 16px; | 10 padding: 6px 16px; |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 * not break the dialog */ | 73 * not break the dialog */ |
| 74 user-manager-dialog { | 74 user-manager-dialog { |
| 75 --paper-dialog: { | 75 --paper-dialog: { |
| 76 font-size: inherit; | 76 font-size: inherit; |
| 77 line-height: initial; | 77 line-height: initial; |
| 78 }; | 78 }; |
| 79 } | 79 } |
| 80 | 80 |
| 81 .product-logo { | 81 .product-logo { |
| 82 content: -webkit-image-set( | 82 content: -webkit-image-set( |
| 83 url(../../../app/theme/default_100_percent/%DISTRIBUTION%/product_lo
go_name_22.png) 1x, | 83 url(../../../../components/resources/default_100_percent/%DISTRIBUTI
ON%/product_logo_name_22.png) 1x, |
| 84 url(../../../app/theme/default_200_percent/%DISTRIBUTION%/product_lo
go_name_22.png) 2x); | 84 url(../../../../components/resources/default_200_percent/%DISTRIBUTI
ON%/product_logo_name_22.png) 2x); |
| 85 height: 22px; | 85 height: 22px; |
| 86 } | 86 } |
| 87 </style> | 87 </style> |
| 88 </template> | 88 </template> |
| 89 </dom-module> | 89 </dom-module> |
| OLD | NEW |