Skip to content

Commit

Permalink
Fixed height broken in previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
stefangabos committed Jun 3, 2019
1 parent f180492 commit 0cb012a
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 18 deletions.
3 changes: 1 addition & 2 deletions dist/css/classic/zebra_dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ a.ZebraDialog_Close {
background-position: 20px 20px;
padding-left: 88px;
min-height: 48px;
_height: auto!important;
height: 48px
height: auto
}
.ZebraDialog_Prompt_Input {
padding: 8px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/classic/zebra_dialog.min.css

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

3 changes: 1 addition & 2 deletions dist/css/flat/zebra_dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@ a.ZebraDialog_Close {
background-position: 30px 40px;
padding-left: 124px;
min-height: 64px;
_height: auto!important;
height: 64px
height: auto
}
.ZebraDialog_Prompt_Input {
padding: 8px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/flat/zebra_dialog.min.css

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

3 changes: 1 addition & 2 deletions dist/css/materialize/zebra_dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ a.ZebraDialog_Close {
background-position: 30px 30px;
padding-left: 108px;
min-height: 48px;
_height: auto!important;
height: 48px
height: auto
}
.ZebraDialog_Prompt_Input {
padding: 8px;
Expand Down
2 changes: 1 addition & 1 deletion dist/css/materialize/zebra_dialog.min.css

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

4 changes: 1 addition & 3 deletions src/css/classic/zebra_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@
background-position: 20px 20px;
padding-left: 88px;
min-height: 48px;
/* min-height hack for IE6 */
_height: auto !important;
height: 48px;
height: auto;
}

.ZebraDialog_Prompt_Input {
Expand Down
4 changes: 1 addition & 3 deletions src/css/flat/zebra_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@
background-position: 30px 40px;
padding-left: 124px;
min-height: 64px;
/* min-height hack for IE6 */
_height: auto !important;
height: 64px;
height: auto;
}

.ZebraDialog_Prompt_Input {
Expand Down
4 changes: 1 addition & 3 deletions src/css/materialize/zebra_dialog.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,7 @@
background-position: 30px 30px;
padding-left: 108px;
min-height: 48px;
/* min-height hack for IE6 */
_height: auto !important;
height: 48px;
height: auto;
}

.ZebraDialog_Prompt_Input {
Expand Down

0 comments on commit 0cb012a

Please sign in to comment.