TESTING - Better Color for text box and selections boxes

This commit is contained in:
Yuki K 2016-09-14 17:51:30 -04:00
parent 53eb164f5d
commit c04a991dfd
2 changed files with 9 additions and 2 deletions

View File

@ -24,7 +24,7 @@
<h5><?= $this->t('.mode') ?></h5>
<form onsubmit="return false;" action="">
<div>
<select name="mode" id="mode" onchange="PostModeMenu.change()" onkeyup="PostModeMenu.change()" style="width: 13em;">
<select name="mode" id="mode" onchange="PostModeMenu.change()" onkeyup="PostModeMenu.change()" style="width: 13em; padding: 0 0 .2em 0; background: black; color: #BF5E65; border-style: solid; border-width: 0px 0px 1px 0px; border-color: darkred;">
<option value="view"><?= $this->t('.mode_form.view') ?></option>
<option value="edit"><?= $this->t('.mode_form.edit') ?></option>
<!-- <option value="rating-s">Rate safe</option>

View File

@ -1095,7 +1095,14 @@ img {
border: 0;
vertical-align: middle;
}
input { padding: 0 .3em }
input {
padding: 0 0 .2em 0;
background: transparent;
color: #b39393;
border-style: solid;
border-width: 0px 0px 1px 0px;
border-color: darkred;
}
HTML.webkit input[type=file] { color: #FFF }
input[type=password]:focus {
background: #FFC;