Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.

SUP-2930, Register--> 'Create Password' text fileld showing one line at beginning. #648

Merged
merged 2 commits into from
Jan 13, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions assets/css/account/account.scss
Original file line number Diff line number Diff line change
Expand Up @@ -81,15 +81,6 @@
input:not([type='checkbox']) {
width: 300px;
}
toggle-password {
input#current-password-input {
border: none;
box-shadow: none;
height: 20px;
width: 300px;
outline: none;
}
}
.tips,
.email-tips,
.password-tips {
Expand Down Expand Up @@ -117,11 +108,6 @@
toggle-password {
width: 380px;
}
toggle-password {
input#current-password-input {
width: 300px;
}
}
// Social section
.networks {
display: block;
Expand Down
4 changes: 0 additions & 4 deletions assets/css/account/login.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,8 @@
input[type='text'],
toggle-password {
width: 380px;
padding-right: 10px;
}
toggle-password {
input#current-password-input {
width: 300px;
}
}

p + button {
Expand Down
13 changes: 0 additions & 13 deletions assets/css/account/register.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@
toggle-password-with-tips {
width: 380px;
}
toggle-password,
toggle-password-with-tips {
input#password-input,
input#current-password-input {
width: 300px;
}
}
input[name='firstname'],
input[name='lastname'] {
width: 185px;
Expand Down Expand Up @@ -86,9 +79,3 @@
position: initial;
}
}

toggle-password-with-tips label {
display: flex !important;
line-height: 20px !important;
padding-right: 10px !important;
}
16 changes: 14 additions & 2 deletions assets/css/directives/toggle-password-with-tips.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,24 @@ toggle-password-with-tips {
flex-direction: row;
align-items: center;
justify-content: space-between;
position: relative;
padding: 0px;


input#password-input {
width: 155px;
margin-bottom: 0;
padding-left: 0;
outline: 0;
padding-left: 10px;
padding-right: 64px;
height: 100%;
border: none;
}

label {
display: flex !important;
line-height: 20px !important;
position: absolute;
top: 10px;
right: 0px;
}
}
17 changes: 15 additions & 2 deletions assets/css/directives/toggle-password.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,24 @@ toggle-password {
flex-direction: row;
align-items: center;
justify-content: space-between;
position: relative;
padding: 0px;

input#current-password-input {
width: 155px;
margin-bottom: 0;
padding-left: 0;
outline: 0;
width: 100%;
padding-left: 10px;
padding-right: 64px;
height: 100%;
border: none;
}

label {
display: flex !important;
line-height: 20px !important;
position: absolute;
top: 10px;
right: 0px;
}
}
5 changes: 1 addition & 4 deletions assets/css/settings/settings.scss
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,7 @@
@media only screen and (min-width: 768px) {
}
.password {
padding-left: 30px;
height: 40px;
padding-left: 15px;
padding-right: 5px;
padding-left: 0px;/* to override the padding set by topcoder.scss for forms */
&:hover {
cursor: text;
}
Expand Down