Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 <!-- Common styles for Passwords and Forms --> | 1 <!-- Common styles for Passwords and Forms --> |
| 2 <dom-module id="passwords-shared"> | 2 <dom-module id="passwords-shared"> |
| 3 <template> | 3 <template> |
| 4 <style> | 4 <style> |
| 5 :host { | 5 :host { |
| 6 display: flex; | 6 display: flex; |
| 7 flex-direction: column; | 7 flex-direction: column; |
| 8 } | 8 } |
| 9 | 9 |
| 10 paper-icon-button { | 10 paper-icon-button { |
| 11 @apply(--cr-paper-icon-button-margin); | 11 @apply(--cr-paper-icon-button-margin); |
| 12 color: var(--paper-grey-600); | 12 color: var(--paper-grey-600); |
| 13 } | 13 } |
| 14 | |
| 15 .invisible { | |
|
hcarmona
2017/05/09 19:23:28
Not needed if we remove the button.
vasilii
2017/05/19 13:20:14
Done.
| |
| 16 visibility: hidden; | |
| 17 } | |
| 14 | 18 |
| 15 .list-with-header > div:first-of-type { | 19 .list-with-header > div:first-of-type { |
| 16 border-top: var(--settings-separator-line); | 20 border-top: var(--settings-separator-line); |
| 17 } | 21 } |
| 18 | 22 |
| 19 .website-column { | 23 .website-column { |
| 20 display: flex; | 24 display: flex; |
| 21 flex: 3; | 25 flex: 3; |
| 22 } | 26 } |
| 23 | 27 |
| 24 .username-column { | 28 .username-column { |
| 25 flex: 2; | 29 flex: 2; |
| 26 margin: 0 8px; | 30 margin: 0 8px; |
| 27 } | 31 } |
| 28 | 32 |
| 29 .password-column { | 33 .password-column { |
| 30 align-items: center; | 34 align-items: center; |
| 31 display: flex; | 35 display: flex; |
| 32 flex: 2; | 36 flex: 2; |
| 33 } | 37 } |
| 34 | 38 |
| 35 .selectable { | 39 .selectable { |
| 36 -webkit-user-select: text; | 40 -webkit-user-select: text; |
| 37 } | 41 } |
| 38 </style> | 42 </style> |
| 39 </template> | 43 </template> |
| 40 </dom-module> | 44 </dom-module> |
| OLD | NEW |