OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/shared_vars_css.html"> |
2 <style is="custom-style"> | 2 <style is="custom-style"> |
3 :root { | 3 :root { |
4 --cr-policy-indicator: { | 4 --cr-policy-indicator: { |
5 @apply(--cr-icon-height-width); | 5 @apply(--cr-icon-height-width); |
6 display: block; | 6 display: flex; /* Position independently from the line-height. */ |
7 }; | 7 }; |
8 | 8 |
9 --cr-policy-tooltip: { | 9 --cr-policy-tooltip: { |
10 font-size: 92.31%; /* Effectively 12px if the host default is 13px. */ | 10 font-size: 92.31%; /* Effectively 12px if the host default is 13px. */ |
11 font-weight: 500; | 11 font-weight: 500; |
12 max-width: 330px; | 12 max-width: 330px; |
13 min-width: 200px; | 13 min-width: 200px; |
14 padding: 10px 8px; | 14 padding: 10px 8px; |
15 }; | 15 }; |
16 } | 16 } |
17 </style> | 17 </style> |
OLD | NEW |