Bug 44474, improve html checkbox/radio button appearance, and bug 38427

This commit is contained in:
BlakeR1234%aol.com 2000-07-30 21:39:07 +00:00
Родитель f8af76029b
Коммит 51d7d41926
2 изменённых файлов: 24 добавлений и 8 удалений

Просмотреть файл

@ -538,11 +538,15 @@ input[type="radio"]:focus {
}
input[type="radio"]:hover {
border : 2px solid black;
/* border : 2px solid black; */
}
input[type="radio"]:hover:active {
background-color: lightgray;
}
input[type="radio"]:active {
background-color: lightgray;
background-color: rgb(255, 255, 255);
}
input[type="radio"][disabled]:hover {
@ -586,11 +590,15 @@ input[type="checkbox"]:focus {
}
input[type="checkbox"]:hover {
border : 2px solid black;
/* border : 2px solid black; */
}
input[type="checkbox"]:hover:active {
background-color: lightgray;
}
input[type="checkbox"]:active {
background-color: lightgray;
background-color: rgb(255, 255, 255);
}
input[type="checkbox"][disabled] {

Просмотреть файл

@ -538,11 +538,15 @@ input[type="radio"]:focus {
}
input[type="radio"]:hover {
border : 2px solid black;
/* border : 2px solid black; */
}
input[type="radio"]:hover:active {
background-color: lightgray;
}
input[type="radio"]:active {
background-color: lightgray;
background-color: rgb(255, 255, 255);
}
input[type="radio"][disabled]:hover {
@ -586,11 +590,15 @@ input[type="checkbox"]:focus {
}
input[type="checkbox"]:hover {
border : 2px solid black;
/* border : 2px solid black; */
}
input[type="checkbox"]:hover:active {
background-color: lightgray;
}
input[type="checkbox"]:active {
background-color: lightgray;
background-color: rgb(255, 255, 255);
}
input[type="checkbox"][disabled] {