Don't change the cursor to a pointer when over a disabled image input.

This commit is contained in:
pollmann%netscape.com 1999-09-13 22:25:45 +00:00
Родитель f3cd9ba86e
Коммит d2b192a16d
2 изменённых файлов: 10 добавлений и 0 удалений

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

@ -548,6 +548,11 @@ input[type=image]:focus {
input[type=image] {
box-sizing: border-box;
border: 2px solid blue;
cursor: pointer;
}
input[type=image][disabled] {
cursor: default;
}
input[type=file] {

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

@ -548,6 +548,11 @@ input[type=image]:focus {
input[type=image] {
box-sizing: border-box;
border: 2px solid blue;
cursor: pointer;
}
input[type=image][disabled] {
cursor: default;
}
input[type=file] {