Merge branch 'testing' into 'master'
New Text Box Colors more refinements to design See merge request !4
This commit is contained in:
commit
04b6f26123
@ -24,7 +24,7 @@
|
|||||||
<h5><?= $this->t('.mode') ?></h5>
|
<h5><?= $this->t('.mode') ?></h5>
|
||||||
<form onsubmit="return false;" action="">
|
<form onsubmit="return false;" action="">
|
||||||
<div>
|
<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="view"><?= $this->t('.mode_form.view') ?></option>
|
||||||
<option value="edit"><?= $this->t('.mode_form.edit') ?></option>
|
<option value="edit"><?= $this->t('.mode_form.edit') ?></option>
|
||||||
<!-- <option value="rating-s">Rate safe</option>
|
<!-- <option value="rating-s">Rate safe</option>
|
||||||
|
@ -1095,15 +1095,23 @@ img {
|
|||||||
border: 0;
|
border: 0;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
input { padding: 0 .3em }
|
input {
|
||||||
HTML.webkit input[type=file] { color: #FFF }
|
padding: 0.2em;
|
||||||
input[type=password]:focus {
|
background: transparent;
|
||||||
background: #FFC;
|
color: #b39393;
|
||||||
color: #000;
|
border-style: solid;
|
||||||
|
border-width: 0px 0px 1px 0px;
|
||||||
|
margin: 4px 4px 4px 0;
|
||||||
|
border-color: darkred;
|
||||||
}
|
}
|
||||||
input[type=text]:focus {
|
{ color: #FFF }
|
||||||
background: #FFC;
|
input[type=text]:focus,input[type=password]:focus {
|
||||||
color: #000;
|
background: #401212;
|
||||||
|
color: #d8d1d1;
|
||||||
|
}
|
||||||
|
input[type=button],input[type=submit],HTML.webkit input[type=file] {
|
||||||
|
background: darkred;
|
||||||
|
color: #b39393;
|
||||||
}
|
}
|
||||||
label {
|
label {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
@ -1148,11 +1156,11 @@ table.form { width: 70em }
|
|||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
table.form th {
|
table.form th {
|
||||||
color: white;
|
color: #c7b5b5;
|
||||||
white-space: normal;
|
white-space: normal;
|
||||||
padding-right: 1em;
|
padding-right: 1em;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
background: #333;
|
background: #2b1818;
|
||||||
}
|
}
|
||||||
table.highlightable>tbody>tr:hover { background: #67100f }
|
table.highlightable>tbody>tr:hover { background: #67100f }
|
||||||
table.highlightable th { margin: 0 }
|
table.highlightable th { margin: 0 }
|
||||||
@ -1184,11 +1192,16 @@ textarea {
|
|||||||
padding: 0 .3em;
|
padding: 0 .3em;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
font-size: 1.2em;
|
font-size: 1.2em;
|
||||||
|
background: transparent;
|
||||||
|
color: #b39393;
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
border-color: darkred;
|
||||||
}
|
}
|
||||||
textarea.no-block { display: inline }
|
textarea.no-block { display: inline }
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
background: #FFC;
|
background: #401212;
|
||||||
color: #000;
|
color: #d8d1d1;
|
||||||
}
|
}
|
||||||
ul { margin: 0 0 1em 0 }
|
ul { margin: 0 0 1em 0 }
|
||||||
ul.bare-list li { list-style-type: none }
|
ul.bare-list li { list-style-type: none }
|
||||||
|
Reference in New Issue
Block a user