FIX Css on disabled standard combo

This commit is contained in:
Laurent Destailleur 2019-09-30 11:57:25 +02:00
parent a2140412e0
commit f6b60290f0
2 changed files with 8 additions and 10 deletions

View File

@ -249,8 +249,9 @@ select.flat, form.flat select {
select:invalid {
color: gray;
}
input:disabled {
background:#ddd;
input:disabled, textarea:disabled, select[disabled='disabled']
{
background:#eee;
}
input.liste_titre {
@ -261,9 +262,6 @@ input.removedfile {
border: 0px !important;
vertical-align: text-bottom;
}
textarea:disabled {
background:#ddd;
}
input[type=file ] { background-color: transparent; border-top: none; border-left: none; border-right: none; box-shadow: none; }
input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; }
input[type=radio] { background-color: transparent; border: none; box-shadow: none; }

View File

@ -468,8 +468,10 @@ select.flat, form.flat select {
opacity: 0;
}
select:invalid { color: gray; }
input:disabled {
background:#f4f4f4;
input:disabled, textarea:disabled, select[disabled='disabled']
{
background:#eee;
}
input.liste_titre {
@ -483,9 +485,7 @@ input.removedfile {
border: 0px !important;
vertical-align: text-bottom;
}
textarea:disabled {
background:#f4f4f4;
}
input[type=file ] { background-color: transparent; border-top: none; border-left: none; border-right: none; box-shadow: none; }
input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; }
input[type=radio] { background-color: transparent; border: none; box-shadow: none; }