Skip to content

Commit

Permalink
Merge pull request #10 from keitaroinc/master
Browse files Browse the repository at this point in the history
Fix form control outline issue
  • Loading branch information
klikstermkd authored Oct 25, 2016
2 parents a58db55 + 921acfc commit 9e57dc4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ckanext/orgdashboards/fanstatic/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2877,12 +2877,12 @@ output {
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

/*.form-control:focus {
border-color: #B80000;
.form-control:focus {
/*border-color: #B80000;*/
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(184, 0, 0, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(184, 0, 0, .6)
}*/
/*-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(184, 0, 0, .6);*/
/*box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(184, 0, 0, .6)*/
}

.uganda:focus {
border-color: #B80000;
Expand Down

0 comments on commit 9e57dc4

Please sign in to comment.