Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Commit

Permalink
quick fix to search placeholder to make it work on firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Hanstra committed Dec 9, 2014
1 parent e848974 commit 32abca9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/main/webapp/css/buckyless/general.less
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,18 @@ button:focus {
transition: opacity 0.1s ease;
opacity: 0;
}
[placeholder]:focus::-moz-placeholder {
transition: opacity 0.1s ease;
opacity: 0;
}
[placeholder]:focus:-moz-placeholder {
transition: opacity 0.1s ease;
opacity: 0;
}
[placeholder]:focus:-ms-input-placeholder {
transition: opacity 0.1s ease;
opacity: 0;
}
.btn-default:focus {
color:@grayscale5;
background-color:@white;
Expand Down

0 comments on commit 32abca9

Please sign in to comment.