Skip to content

Commit

Permalink
Fix CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
proginosko committed Feb 26, 2023
1 parent 645ab19 commit a6f8d99
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions options.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ body {
border: 1px solid #ccc;
}

.ui-widget fieldset, input, select, textarea {
.ui-widget fieldset, .ui-widget input, .ui-widget select, .ui-widget textarea {
background: #fff;
color: #000;
border: 1px solid #888;
}

.ui-widget input:disabled, select:disabled, textarea:disabled {
.ui-widget input:disabled, .ui-widget select:disabled, .ui-widget textarea:disabled {
background: #eee;
color: #666;
border: 1px solid #ccc;
Expand Down Expand Up @@ -78,7 +78,7 @@ body {
text-decoration: underline;
}

.ui-widget th, td {
.ui-widget th, .ui-widget td {
text-align: center;
padding: 4px 12px;
}
Expand Down
5 changes: 2 additions & 3 deletions themes/dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ body {
border: 1px solid #444;
}

.ui-widget fieldset, input, select, textarea {
.ui-widget fieldset, .ui-widget input, .ui-widget select, .ui-widget textarea {
background: #222;
color: #bbb;
border: 1px solid #666;
}

.ui-widget input:disabled, select:disabled, textarea:disabled {
.ui-widget input:disabled, .ui-widget select:disabled, .ui-widget textarea:disabled {
background: #333;
color: #666;
border: 1px solid #444;
Expand Down Expand Up @@ -106,4 +106,3 @@ body {
#paneAbout {
color: #bbb;
}

4 changes: 2 additions & 2 deletions themes/spruce.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ body {
border: 1px solid #253;
}

.ui-widget fieldset, input, select, textarea {
.ui-widget fieldset, .ui-widget input, .ui-widget select, .ui-widget textarea {
background: #031;
color: #9ca;
border: 1px solid #840;
}

.ui-widget input:disabled, select:disabled, textarea:disabled {
.ui-widget input:disabled, .ui-widget select:disabled, .ui-widget textarea:disabled {
background: #142;
color: #586;
border: 1px solid #253;
Expand Down

0 comments on commit a6f8d99

Please sign in to comment.