Browse Source

Make select elements consistent with forms

pull/60/head
discomrade 3 years ago
parent
commit
d6a8dca27e
  1. 2
      stylesheets/dark_bunker.css
  2. 2
      stylesheets/dark_bunker_red.css
  3. 2
      stylesheets/demain.css
  4. 2
      stylesheets/demain_classic.css
  5. 2
      stylesheets/gentoochan.css
  6. 2
      stylesheets/gurochan.css
  7. 2
      stylesheets/muted.css
  8. 2
      stylesheets/szalet.css
  9. 3
      stylesheets/yotsuba.css

2
stylesheets/dark_bunker.css

@ -61,7 +61,7 @@ form table tr th {
border: 1px solid #117743; border: 1px solid #117743;
} }
/* Input fields */ /* Input fields */
textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] { textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"], select {
color: #ACACAC; color: #ACACAC;
background: #282A2E; background: #282A2E;
border: 1px double #07371F; border: 1px double #07371F;

2
stylesheets/dark_bunker_red.css

@ -61,7 +61,7 @@ form table tr th {
border: 1px solid #cd0000; border: 1px solid #cd0000;
} }
/* Input fields */ /* Input fields */
textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] { textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"], select {
color: #ACACAC; color: #ACACAC;
background: #282A2E; background: #282A2E;
border: 1px double #07371F; border: 1px double #07371F;

2
stylesheets/demain.css

@ -95,7 +95,7 @@ form table tr th {
border: 1px solid #373b41; border: 1px solid #373b41;
} }
/* Input fields */ /* Input fields */
textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] { textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"], select {
color: #ACACAC; color: #ACACAC;
background: #282A2E; background: #282A2E;
border: 1px double #1d1f21; border: 1px double #1d1f21;

2
stylesheets/demain_classic.css

@ -60,7 +60,7 @@ form table tr th {
border: 1px solid #373b41; border: 1px solid #373b41;
} }
/* Input fields */ /* Input fields */
textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"] { textarea, input:not([type="file"]):not([type="checkbox"]), [type="submit"], select {
color: #ACACAC; color: #ACACAC;
background: #282A2E; background: #282A2E;
border: 1px double #1d1f21; border: 1px double #1d1f21;

2
stylesheets/gentoochan.css

@ -18,7 +18,7 @@ a.post_no {
.boardlist { .boardlist {
color: #ccc; color: #ccc;
} }
div.post.reply, input, textarea { div.post.reply, input, textarea, select {
background: rgba(0, 0, 0, 0.1); background: rgba(0, 0, 0, 0.1);
border: 1px solid rgba(0, 0, 0, 0.2); border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 2px; border-radius: 2px;

2
stylesheets/gurochan.css

@ -7,7 +7,7 @@ html, body {
font-family: Tahoma, Verdana, Arial, sans-serif; font-family: Tahoma, Verdana, Arial, sans-serif;
font-size: 10pt; font-size: 10pt;
} }
input, textarea { input, textarea, select {
background-color: #E6CBC0; background-color: #E6CBC0;
border: 1px solid #CA927B; border: 1px solid #CA927B;
} }

2
stylesheets/muted.css

@ -115,7 +115,7 @@ form table tr th {
/* Input fields */ /* Input fields */
textarea, textarea,
input:not([type="file"]):not([type="checkbox"]), input:not([type="file"]):not([type="checkbox"]),
[type="submit"] { [type="submit"], select {
color: #4c4c4c; color: #4c4c4c;
background: #e9eced; background: #e9eced;
border: 1px double #cccccc; border: 1px double #cccccc;

2
stylesheets/szalet.css

@ -48,7 +48,7 @@ input {
textarea { textarea {
background: #dedede url('img/testorange_textarea_bg.gif') repeat-x; background: #dedede url('img/testorange_textarea_bg.gif') repeat-x;
} }
input, textarea { input, textarea, select {
background: #200000; background: #200000;
color: #99938D; color: #99938D;
} }

3
stylesheets/yotsuba.css

@ -30,6 +30,9 @@ form table tr th {
color: #800000; color: #800000;
border: 1px solid #800000; border: 1px solid #800000;
} }
[type="submit"] {
border: 1px solid #9A9A9A;
}
textarea:focus, input:not([type="file"]):not([type="checkbox"]):focus, [type="submit"]:hover { textarea:focus, input:not([type="file"]):not([type="checkbox"]):focus, [type="submit"]:hover {
border: 1px solid #EA8; border: 1px solid #EA8;
} }

Loading…
Cancel
Save