Skip to content

Commit

Permalink
Fix button hover style
Browse files Browse the repository at this point in the history
  • Loading branch information
proginosko committed Feb 24, 2019
1 parent 7ec95ce commit 68046cc
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
8 changes: 8 additions & 0 deletions options.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,30 @@ body {
}

.ui-button {
background: #eee;
border: 1px solid #888;
}

.ui-button:focus {
background: #eee;
border: 1px solid #888;
}

.ui-button:hover {
background: #ddd;
border: 1px solid #888;
}

.ui-widget button {
padding: 2px 8px;
background: #eee;
border: 1px solid #888;
}

.ui-widget button:hover {
background: #ddd;
}

.ui-widget fieldset, input, select, textarea {
background: #fff;
color: #000;
Expand Down
5 changes: 5 additions & 0 deletions popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,10 @@ button {
width: 100%;
margin: 2px;
padding: 2px;
background: #eee;
border: 1px solid #888;
}

button:hover {
background: #ddd;
}
10 changes: 7 additions & 3 deletions themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ body {
.ui-button {
background: #444;
color: #bbb;
border: 1px solid #888;
border: 1px solid #666;
}

.ui-button:focus {
background: #444;
color: #bbb;
border: 1px solid #888;
border: 1px solid #666;
}

.ui-button:hover {
background: #333;
color: #bbb;
border: 1px solid #888;
border: 1px solid #666;
}

.ui-widget button {
Expand All @@ -29,6 +29,10 @@ body {
border: 1px solid #666;
}

.ui-widget button:hover {
background: #333;
}

.ui-widget fieldset, input, select, textarea {
background: #222;
color: #bbb;
Expand Down
4 changes: 4 additions & 0 deletions themes/spruce.css
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ body {
border: 1px solid #840;
}

.ui-widget button:hover {
background: #142;
}

.ui-widget fieldset, input, select, textarea {
background: #031;
color: #9ca;
Expand Down

0 comments on commit 68046cc

Please sign in to comment.