Skip to content

Commit

Permalink
Item8206: moved theme stuff to different directory
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/NatSkin@4374 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Jul 2, 2009
1 parent 3aa3777 commit d6dfd32
Show file tree
Hide file tree
Showing 21 changed files with 29 additions and 16 deletions.
File renamed without changes.
Binary file not shown.
File renamed without changes.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -667,15 +667,15 @@ fieldset .foswikiFormSteps {
.natSearchBoxPos1 a {
margin:1px 5px;
padding:0px;
background-image:url(icons/magnifier.png);
background-image:url(../NatSkin/icons/magnifier.png);
background-repeat:no-repeat;
display:block;
height:16px;
width:16px;
}
.natSearchBoxPos1 a:hover {
background-color:inherit;
background-image:url(icons/magnifier.png);
background-image:url(../NatSkin/icons/magnifier.png);
background-repeat:no-repeat;
}
.natSearchBoxPos2,
Expand Down
Binary file not shown.
File renamed without changes.
Binary file not shown.
File renamed without changes
File renamed without changes
7 changes: 7 additions & 0 deletions pub/System/JazzyNoteTheme/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
TARGET= \
BlueNoteBorder.css \
BlueNoteButtons.css \
BlueNoteStyle.css \
BlueNoteThin.css

-include ../NatSkin/Makefile.include
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file modified pub/System/NatSkin/BaseStyle.css.gz
Binary file not shown.
17 changes: 3 additions & 14 deletions pub/System/NatSkin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,11 @@ TARGET= \
BaseButtons.css \
BaseStyle.css \
BaseThin.css \
BlueNoteBorder.css \
BlueNoteButtons.css \
BlueNoteStyle.css \
BlueNoteThin.css \
print.css \
natskin.js \
obfuscator.js

SUBDIRS= \
../JazzyNoteTheme

GZIP=gzip


.SUFFIXES: .js .css

all: $(TARGET) $(TARGET:.js=.js.gz) $(TARGET:.css=.css.gz)

%.gz: %
@echo compressing $< to $@
@$(GZIP) -c $< > $@
-include Makefile.include
17 changes: 17 additions & 0 deletions pub/System/NatSkin/Makefile.include
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
GZIP=gzip

.SUFFIXES: .js .css
.PHONY: subdirs $(SUBDIRS)

all: subdirs $(TARGET) $(TARGET:.js=.js.gz) $(TARGET:.css=.css.gz)
@echo -n ""

%.gz: %
@echo compressing $< to $@
@$(GZIP) -c $< > $@

subdirs: $(SUBDIRS)

$(SUBDIRS):
@$(MAKE) --no-print-directory -C $@

0 comments on commit d6dfd32

Please sign in to comment.