Make wallet editor skinnable. r=hyatt

This commit is contained in:
waterson%netscape.com 1999-12-05 09:34:31 +00:00
Родитель 099fa689cd
Коммит 83af6d5963
5 изменённых файлов: 6 добавлений и 2 удалений

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

@ -1,2 +1,3 @@
WalletEditor.xul
WalletEditor.js
WalletEditor.js
wallet.css

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

@ -43,6 +43,6 @@ override NO_STATIC_LIB=
include $(topsrcdir)/config/rules.mk
install:: $(TARGETS)
$(INSTALL) $(srcdir)/WalletEditor.xul $(srcdir)/WalletEditor.js $(DIST)/bin/chrome/wallet/content/default
$(INSTALL) $(srcdir)/WalletEditor.xul $(srcdir)/WalletEditor.js $(srcdir)/wallet.css $(DIST)/bin/chrome/wallet/content/default
$(INSTALL) $(srcdir)/WalletEditor.properties $(DIST)/bin/chrome/wallet/locale/en-US

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

@ -1,4 +1,5 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://wallet/skin/" type="text/css"?>
<!DOCTYPE window>
<xul:window xmlns="http://www.w3.org/TR/REC-html40"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">

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

@ -55,9 +55,11 @@ clobber::
rm -f $(DIST)\lib\$(LIBRARY_NAME).lib
rm -f $(DIST)\bin\chrome\wallet\content\default\WalletEditor.xul
rm -f $(DIST)\bin\chrome\wallet\content\default\WalletEditor.js
rm -f $(DIST)\bin\chrome\wallet\content\default\wallet.css
rm -f $(DIST)\bin\chrome\wallet\locale\en-US\WalletEditor.properties
install:: $(DLL)
$(MAKE_INSTALL) WalletEditor.xul $(DIST)\bin\chrome\wallet\content\default
$(MAKE_INSTALL) WalletEditor.js $(DIST)\bin\chrome\wallet\content\default
$(MAKE_INSTALL) wallet.css $(DIST)\bin\chrome\wallet\content\default
$(MAKE_INSTALL) WalletEditor.properties $(DIST)\bin\chrome\wallet\locale\en-US

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