pyc-website
main website for pyc inc.
git clone https://9o.is/git/pyc-website.git
commit 1c850d58dc54fceeb872f38ad0070dfe3f99e5b7 parent b5930c283a1503e2eb5461149a4555194d1fd9f7 Author: Jul <jul@9o.is> Date: Mon, 19 May 2014 19:31:09 -0400 input text and border is not colored while in use Diffstat:
| M | src/main/webapp/less/overrides.less | | | 14 | ++++++++++++-- |
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/src/main/webapp/less/overrides.less b/src/main/webapp/less/overrides.less @@ -191,10 +191,15 @@ body { } textarea, input, select { - &, &:focus, &:hover { + &, &:hover { border-color: @brand-success !important; color: @brand-success !important; } + + &:focus { + border-color: @brand-primary !important; + color: @gray-darkest !important; + } } } @@ -204,9 +209,14 @@ body { } textarea, input, select { - &, &:focus, &:hover { + &, &:hover { border-color: @brand-danger !important; color: @brand-danger !important; } + + &:focus { + border-color: @brand-primary !important; + color: @gray-darkest !important; + } } }