Adding the images for the gfx scrollbar and for the tree column pushers.

(And I'm bad because this really shouldn't go here.  We need to reorganize
the xpfe directory.)


git-svn-id: svn://10.0.0.236/trunk@37430 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com 1999-06-29 20:26:51 +00:00
parent 13dd905b76
commit 7df5e4ac3e
19 changed files with 94 additions and 5 deletions

View File

@ -37,3 +37,18 @@ errorI.gif
messagel.gif
questionl.gif
DumpDOM.js
lessCols.gif
lessCols_mo.gif
lessCols_dis.gif
moreCols.gif
moreCols_mo.gif
moreCols_dis.gif
scrollUp.gif
scrollUp_mo.gif
scrollUp_dis.gif
scrollDown.gif
scrollDown_mo.gif
scrollDown_dis.gif
scrollThumb.gif
scrollThumb_mo.gif
scrollThumb_dis.gif

View File

@ -64,6 +64,21 @@ EXPORT_RESOURCE_SAMPLES = \
$(srcdir)/messagel.gif \
$(srcdir)/questionl.gif \
$(srcdir)/DumpDOM.js \
$(srcdir)/lessCols.gif \
$(srcdir)/lessCols_mo.gif \
$(srcdir)/lessCols_dis.gif \
$(srcdir)/moreCols.gif \
$(srcdir)/moreCols_mo.gif \
$(srcdir)/moreCols_dis.gif \
$(srcdir)/scrollUp.gif \
$(srcdir)/scrollUp_mo.gif \
$(srcdir)/scrollUp_dis.gif \
$(srcdir)/scrollDown.gif \
$(srcdir)/scrollDown_mo.gif \
$(srcdir)/scrollDown_dis.gif \
$(srcdir)/scrollThumb.gif \
$(srcdir)/scrollThumb_mo.gif \
$(srcdir)/scrollThumb_dis.gif \
$(NULL)
install::

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 B

View File

@ -113,6 +113,21 @@ install:: $(DLL)
$(MAKE_INSTALL) messagel.gif $(DISTRES)
$(MAKE_INSTALL) questionl.gif $(DISTRES)
$(MAKE_INSTALL) DumpDOM.js $(DISTRES)
$(MAKE_INSTALL) lessCols.gif $(DISTRES)
$(MAKE_INSTALL) lessCols_mo.gif $(DISTRES)
$(MAKE_INSTALL) lessCols_dis.gif $(DISTRES)
$(MAKE_INSTALL) moreCols.gif $(DISTRES)
$(MAKE_INSTALL) moreCols_mo.gif $(DISTRES)
$(MAKE_INSTALL) moreCols_dis.gif $(DISTRES)
$(MAKE_INSTALL) scrollUp.gif $(DISTRES)
$(MAKE_INSTALL) scrollUp_mo.gif $(DISTRES)
$(MAKE_INSTALL) scrollUp_dis.gif $(DISTRES)
$(MAKE_INSTALL) scrollDown.gif $(DISTRES)
$(MAKE_INSTALL) scrollDown_mo.gif $(DISTRES)
$(MAKE_INSTALL) scrollDown_dis.gif $(DISTRES)
$(MAKE_INSTALL) scrollThumb.gif $(DISTRES)
$(MAKE_INSTALL) scrollThumb_mo.gif $(DISTRES)
$(MAKE_INSTALL) scrollThumb_dis.gif $(DISTRES)
clobber::
rm -f $(DIST)\bin\$(DLLNAME).dll

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 B

View File

@ -844,11 +844,15 @@ box[debug] progressmeter {
thumb {
background-color: rgb(206, 207, 206);
border: 2px outset rgb(156, 154, 156);
list-style-image: url(resource:/res/toolbar/TB_Stop.gif)
list-style-image: url(scrollThumb.gif)
}
thumb:hover {
background-color: rgb(220, 210, 210);
list-style-image: url(scrollThumb_mo.gif);
}
thumb[disabled="true"] {
list-style-image: url(scrollThumb_dis.gif);
}
thumb:active {
@ -857,7 +861,7 @@ thumb:active {
slider {
border: 1px solid black;
background-image: url(bg.jpg);
background-color: rgb(240,240,240);
}
scrollbarbutton {
@ -882,9 +886,49 @@ scrollbarbutton:active {
}
scrollbarbutton.decrement {
list-style-image: url(resource:/res/toolbar/TB_Back.gif)
list-style-image: url(scrollUp.gif)
}
scrollbarbutton.decrement:hover {
list-style-image: url(scrollUp_mo.gif)
}
scrollbarbutton.decrement[disabled="true"] {
list-style-image: url(scrollUp_dis.gif)
}
scrollbarbutton.increment {
list-style-image: url(resource:/res/toolbar/TB_Forward.gif)
list-style-image: url(scrollDown.gif)
}
scrollbarbutton.increment:hover {
list-style-image: url(scrollDown_mo.gif)
}
scrollbarbutton.increment[disabled="true"] {
list-style-image: url(scrollDown_dis.gif)
}
treepusher.increment {
list-style-image: url(moreCols_mo.gif)
}
treepusher.increment:hover {
list-style-image: url(moreCols_mo.gif)
}
treepusher.increment[disabled="true"] {
list-style-image: url(moreCols_dis.gif)
}
treepusher.decrement {
list-style-image: url(lessCols_mo.gif)
}
treepusher.decrement:hover {
list-style-image: url(lessCols_mo.gif)
}
treepusher.decrement[disabled="true"] {
list-style-image: url(lessCols_dis.gif)
}