Skip to content

Commit

Permalink
Fix for firefox
Browse files Browse the repository at this point in the history
Added missing css properties for firefox and the standard format to fix some visual issues with dropdown boxes (select tags)
  • Loading branch information
fduraibi committed Mar 23, 2016
1 parent 3662cd3 commit d6bc271
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/rocketchat-theme/assets/stylesheets/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,8 @@ input[type='email'],
input[type='url'],
input[type='password'] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
height: 35px;
line-height: normal;
border: 1px solid;
Expand Down Expand Up @@ -1267,7 +1269,11 @@ a.github-fork {
box-shadow: 0 0 0;
border-radius: 0;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
-webkit-border-radius: 0px;
-moz-border-radius: 0px;
border-radius: 0px;
}
}
.input-submit {
Expand Down

0 comments on commit d6bc271

Please sign in to comment.