[CLASSIC SKIN] Build/information files NOT PART OF BUILD

This commit is contained in:
ben%netscape.com 2000-05-23 04:54:15 +00:00
Родитель 24cc04fd84
Коммит fdd4dce597
8 изменённых файлов: 126 добавлений и 6 удалений

2
themes/classic/MANIFEST Normal file
Просмотреть файл

@ -0,0 +1,2 @@
#!dest
manifest.rdf

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

@ -0,0 +1,42 @@
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
#
DEPTH = ../..
THEME_ROOT_DEPTH = @srcdir@
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
include $(THEME_ROOT_DEPTH)/theme.mk
CHROME_DIR = skins/$(THEME)
CHROME_MISC_DIR = .
CHROME_TYPE = skin
CHROME_MISC = \
manifest.rdf \
$(NULL)
DIRS = communicator global navigator editor messenger
include $(topsrcdir)/config/rules.mk

6
themes/classic/README Normal file
Просмотреть файл

@ -0,0 +1,6 @@
this is the classic skin (the original 6.0 skin)
if you add to this, make sure you add to the other skin, otherwise when you
switch skins, bad things will happen.
questions to pixeljockeys@netscape.com

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

@ -9,7 +9,6 @@
@import url(chrome://global/skin/);
@import url(chrome://communicator/skin/box.css);
@import url(chrome://communicator/skin/toolbar.css);
@import url(chrome://communicator/skin/button.css);
@import url(chrome://communicator/skin/brand.css);
@import url(chrome://communicator/skin/menu.css);

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

@ -1,19 +1,26 @@
toolbox
{
background-color : #999999;
background-color : appworkspace;
}
toolbar
{
background-color : #CCCCCC;
border : 1px outset #CCCCCC;
background-color : threedface;
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
border-bottom : 1px solid threedshadow;
}
toolbargrippy
{
background-color : #CCCCCC;
border : 1px solid #CCCCCC;
background-color : threedface;
border-left : 1px solid threedhighlight;
border-top : 1px solid threedhighlight;
border-right : 1px solid threedshadow;
border-bottom : 1px solid threedshadow;
list-style-image : url("chrome://global/skin/toolbar/toolbar-grippy.gif");
}
toolbar[collapsed="true"] > toolbargrippy

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

@ -0,0 +1,38 @@
#!nmake
#
# The contents of this file are subject to the Netscape Public
# License Version 1.1 (the "License"); you may not use this file
# except in compliance with the License. You may obtain a copy of
# the License at http://www.mozilla.org/NPL/
#
# Software distributed under the License is distributed on an "AS
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
# implied. See the License for the specific language governing
# rights and limitations under the License.
#
# The Original Code is mozilla.org code.
#
# The Initial Developer of the Original Code is Netscape
# Communications Corporation. Portions created by Netscape are
# Copyright (C) 1998 Netscape Communications Corporation. All
# Rights Reserved.
#
# Contributor(s):
DEPTH=..\..
THEME_ROOT_DEPTH = .
DIRS=communicator editor global messenger navigator
include <$(THEME_ROOT_DEPTH)\theme.mk>
CHROME_DIR = skins\$(THEME)
CHROME_MISC_DIR = .
CHROME_TYPE = skin
CHROME_MISC = \
.\manifest.rdf \
$(NULL)
include <$(DEPTH)\config\rules.mak>

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

@ -0,0 +1,26 @@
<?xml version="1.0"?>
<RDF:RDF xmlns:RDF="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:chrome="http://www.mozilla.org/rdf/chrome#">
<!-- List all the skins being supplied by this theme -->
<RDF:Seq about="urn:mozilla:skin:root">
<RDF:li resource="urn:mozilla:skin:classic/1.0" />
</RDF:Seq>
<!-- classic Information -->
<RDF:Description about="urn:mozilla:skin:classic/1.0"
chrome:displayName="Classic"
chrome:author="mozilla.org"
chrome:name="classic/1.0">
<chrome:packages>
<RDF:Seq about="urn:mozilla:skin:classic/1.0:packages">
<RDF:li resource="urn:mozilla:skin:classic/1.0:communicator"/>
<RDF:li resource="urn:mozilla:skin:classic/1.0:editor"/>
<RDF:li resource="urn:mozilla:skin:classic/1.0:global"/>
<RDF:li resource="urn:mozilla:skin:classic/1.0:messenger"/>
<RDF:li resource="urn:mozilla:skin:classic/1.0:navigator"/>
</RDF:Seq>
</chrome:packages>
</RDF:Description>
</RDF:RDF>

0
themes/classic/theme.mk Normal file
Просмотреть файл