Fix bug 38506, the user shouldn't be able to select the text of buttons. r=mjudge, a=nsbeta3+/PDT must fix

This commit is contained in:
BlakeR1234%aol.com 2000-08-26 01:45:46 +00:00
Родитель b81dd96492
Коммит 9bbf2feca9
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -500,6 +500,7 @@ input[type="file"] > input {
input[type="file"] > input[type="button"] {
height:inherit;
font-family: sans-serif;
user-select: none !important;
}
@ -625,6 +626,7 @@ input[type="submit"] {
font-size: small;
behavior: none;
user-select: none !important;
cursor: default;
}
@ -675,6 +677,8 @@ input[type="reset"] {
padding: 1px;
font-family: sans-serif;
font-size: small;
user-select: none !important;
behavior: none;
cursor: default;
}

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

@ -500,6 +500,7 @@ input[type="file"] > input {
input[type="file"] > input[type="button"] {
height:inherit;
font-family: sans-serif;
user-select: none !important;
}
@ -625,6 +626,7 @@ input[type="submit"] {
font-size: small;
behavior: none;
user-select: none !important;
cursor: default;
}
@ -675,6 +677,8 @@ input[type="reset"] {
padding: 1px;
font-family: sans-serif;
font-size: small;
user-select: none !important;
behavior: none;
cursor: default;
}