add a little dragover styling for home button (to be fixed up later).

This commit is contained in:
blakeross%telocity.com 2002-04-05 21:53:31 +00:00
Родитель 84cda8c6bf
Коммит 4906e64ebc
2 изменённых файлов: 6 добавлений и 1 удалений

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

@ -366,12 +366,16 @@ var homeButtonObserver = {
var statusTextFld = document.getElementById("statusbar-display");
statusTextFld.label = gNavigatorBundle.getString("droponhomebutton");
aDragSession.dragAction = Components.interfaces.nsIDragService.DRAGDROP_ACTION_LINK;
var button = document.getElementById("home-button");
button.setAttribute("dragover", "true");
},
onDragExit: function (aEvent, aDragSession)
{
var statusTextFld = document.getElementById("statusbar-display");
statusTextFld.label = "";
var button = document.getElementById("home-button");
button.removeAttribute("dragover");
},
getSupportedFlavours: function ()

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

@ -311,7 +311,8 @@
list-style-image: url("chrome://browser/skin/home.gif");
}
#home-button:hover {
#home-button:hover,
#home-button[dragover] {
list-style-image: url("chrome://browser/skin/home-hover.gif");
}