summaryrefslogtreecommitdiff
path: root/paper/bootstrap.css
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.co>2015-05-22 21:43:41 -0400
committerThomas Park <thomas@thomaspark.co>2015-05-22 21:43:41 -0400
commit3c3eca37c46e5731390f352426af004344701d20 (patch)
tree632fefd8744af82a806d59d343fbbcbb19374b3f /paper/bootstrap.css
parent924260493d9bff26b5d7de9a287e06198b4a6008 (diff)
paper: fix password inputs in inverse navbars, closes #463
Diffstat (limited to 'paper/bootstrap.css')
-rw-r--r--paper/bootstrap.css6
1 files changed, 4 insertions, 2 deletions
diff --git a/paper/bootstrap.css b/paper/bootstrap.css
index f10081a5..f2a57325 100644
--- a/paper/bootstrap.css
+++ b/paper/bootstrap.css
@@ -6598,11 +6598,13 @@ button.close {
.navbar-inverse .form-control::-webkit-input-placeholder {
color: #b2dbfb;
}
-.navbar-inverse .form-control[type=text] {
+.navbar-inverse .form-control[type=text],
+.navbar-inverse .form-control[type=password] {
-webkit-box-shadow: inset 0 -1px 0 #b2dbfb;
box-shadow: inset 0 -1px 0 #b2dbfb;
}
-.navbar-inverse .form-control[type=text]:focus {
+.navbar-inverse .form-control[type=text]:focus,
+.navbar-inverse .form-control[type=password]:focus {
-webkit-box-shadow: inset 0 -2px 0 #ffffff;
box-shadow: inset 0 -2px 0 #ffffff;
}