Skip to content

Commit

Permalink
Merge pull request #30 from inoas/fix-bug
Browse files Browse the repository at this point in the history
fix border-color bug
  • Loading branch information
mblode authored Mar 7, 2018
2 parents 0494da0 + eaa9e47 commit c69d7d7
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions css/marx.css
Original file line number Diff line number Diff line change
Expand Up @@ -571,21 +571,21 @@ input[type=submit]:hover,
input[type=reset]:hover,
button:hover {
background: #0c7cd5;
border-color: 1px solid rgba(0, 0, 0, 0.54); }
border-color: rgba(0, 0, 0, 0.54); }

input[type=submit]:active,
input[type=reset]:active,
button:active {
background: #0c7cd5;
border-color: 1px solid rgba(0, 0, 0, 0.54);
border-color: rgba(0, 0, 0, 0.54);
box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.2);
outline-offset: -2px; }

input[type=submit]:focus,
input[type=reset]:focus,
button:focus {
background: #0c7cd5;
border-color: 1px solid rgba(0, 0, 0, 0.54);
border-color: rgba(0, 0, 0, 0.54);
box-shadow: inset 0 0 4px 0 rgba(0, 0, 0, 0.2);
outline: 0; }

Expand Down
2 changes: 1 addition & 1 deletion css/marx.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c69d7d7

Please sign in to comment.