Skip to content

Commit

Permalink
fix password visiblity not showing #1236
Browse files Browse the repository at this point in the history
  • Loading branch information
senadir committed Dec 19, 2019
1 parent 69d4c8f commit e1e5a17
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions assets/css/woocommerce/woocommerce.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1574,6 +1574,34 @@ ul.order_details {
color: $error;
}

.password-input {
position: relative;
}

.show-password-input {
position: absolute;
right: 0.7em;
top: 0;
cursor: pointer;
}

.show-password-input::after {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
vertical-align: baseline;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: inline-block;
font-style: normal;
font-variant: normal;
line-height: 1;
content: '\f06e';
}

.show-password-input.display-password::after {
color: #e8e8e8;
}

.demo_store {
position: fixed;
left: 0;
Expand Down

0 comments on commit e1e5a17

Please sign in to comment.