Skip to content

Commit

Permalink
Various fixes to the profile edit page.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanbohacek committed Apr 28, 2018
1 parent 7200879 commit e528462
Show file tree
Hide file tree
Showing 8 changed files with 34 additions and 2 deletions.
5 changes: 5 additions & 0 deletions admin-css/helpers.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
input[hidden] {
display: none !important; }

.regular-text {
max-width: 100%; }
1 change: 1 addition & 0 deletions admin-css/helpers.min.css
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
input[hidden]{display:none!important}.regular-text{max-width:100%}
10 changes: 10 additions & 0 deletions admin-css/styles.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
/* Site dimensions */
/* Fonts */
/* Colors */
input[hidden] {
display: none !important; }

.regular-text {
max-width: 100%; }

/* Site dimensions */
/* Fonts */
/* Colors */
Expand All @@ -20,6 +26,10 @@
max-width: 100%;
margin-bottom: 1rem; }

#wp-user-profiles-page table.form-table textarea {
width: 100% !important;
max-width: 100% !important; }

/* Layout helpers. */
.w-100 {
width: 100%; }
Expand Down
2 changes: 1 addition & 1 deletion admin-css/styles.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions admin-css/user-profile.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@
display: block;
max-width: 100%;
margin-bottom: 1rem; }

#wp-user-profiles-page table.form-table textarea {
width: 100% !important;
max-width: 100% !important; }
2 changes: 1 addition & 1 deletion admin-css/user-profile.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions src/admin-styles/helpers.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
input[hidden]{
display: none !important;
}

.regular-text{
max-width: 100%;
}
5 changes: 5 additions & 0 deletions src/admin-styles/user-profile.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
display: block;
max-width: 100%;
margin-bottom: 1rem;
}

#wp-user-profiles-page table.form-table textarea {
width: 100% !important;
max-width: 100% !important;
}

0 comments on commit e528462

Please sign in to comment.