Bug 82547 patch allows Composer to catch mouse events on some form elements r=glazman sr=kin a=asa

This commit is contained in:
neil%parkwaycc.co.uk 2003-02-14 09:59:51 +00:00
Родитель 1339837416
Коммит a9c0a6ad41
2 изменённых файлов: 20 добавлений и 2 удалений

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

@ -64,7 +64,16 @@ a:link {
color: -moz-hyperlinktext;
}
input, button, select, textarea {
/* Allow double-clicks on these widgets to open properties dialogs
XXX except when the widget has disabled attribute */
input, button, textarea {
-moz-user-select: all !important;
-moz-user-input: auto !important;
-moz-user-focus: none !important;
}
/* XXX Still need a better way of blocking other events to these widgets */
select, input[disabled], input[type="checkbox"], input[type="radio"], input[type="file"] {
-moz-user-select: all !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;

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

@ -64,7 +64,16 @@ a:link {
color: -moz-hyperlinktext;
}
input, button, select, textarea {
/* Allow double-clicks on these widgets to open properties dialogs
XXX except when the widget has disabled attribute */
input, button, textarea {
-moz-user-select: all !important;
-moz-user-input: auto !important;
-moz-user-focus: none !important;
}
/* XXX Still need a better way of blocking other events to these widgets */
select, input[disabled], input[type="checkbox"], input[type="radio"], input[type="file"] {
-moz-user-select: all !important;
-moz-user-input: none !important;
-moz-user-focus: none !important;