Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: chrome/browser/resources/settings/passwords_and_forms_page/passwords_shared_css.html

Issue 2860423002: Fix the alignment on chrome://settings/passwords (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698