update build system

master
Horst3180 2015-08-14 00:05:57 +02:00
parent e4c806b3d7
commit 359a8d8c2c
4 changed files with 18 additions and 34 deletions

View File

@ -24,15 +24,23 @@ if ENABLE_DARK
endif # ENABLE_DARK
if ENABLE_CINNAMON
$(MKDIR_P) $(ithemedir)/cinnamon
cd $(srcdir)/cinnamon && cp -r --no-preserve=mode,ownership \
common-assets \
light-assets \
cinnamon.css \
$(ithemedir)/cinnamon
endif # ENABLE_GNOME_SHELL
if ENABLE_GNOME_SHELL
$(MKDIR_P) $(ithemedir)/gnome-shell
cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -r --no-preserve=mode,ownership \
checkbox \
dash \
menu \
misc \
switch \
common-assets \
light-assets \
gnome-shell.css \
$(ithemedir)/gnome-shell
endif # ENABLE_GNOME_SHELL
@ -245,6 +253,7 @@ uninstall-local:
dist-hook:
cp -r \
cinnamon \
gnome-shell \
gtk-2.0 \
gtk-3.0 \

View File

@ -961,7 +961,7 @@ StScrollBar {
height: 26px;
width: 26px; }
.window-close:active {
background-image: url("misc/close-active.svg");
background-image: url("common-assets/misc/close-active.svg");
background-size: 26px;
height: 26px;
width: 26px; }
@ -1939,15 +1939,3 @@ StEntry.chat-response {
border: 1px solid grey;
border-radius: 2px;
padding: 6px; }
/*tweaks*/
.panel-button:active,
.panel-button:overview,
.panel-button:focus,
.panel-button:hover,
#appMenu,
#panel {
text-shadow: 0px 0px white; }
stage {
font-weight: bold; }

View File

@ -609,7 +609,7 @@ StScrollBar {
background: none;
border: none;
border-radius: 5px;
border-image: url("common-assets/misc/osd.svg") 9 9 9 9;
border-image: url("common-assets/misc/osd.svg") 9 9 9 9;
.osd-monitor-label { font-size: 3em; }
@ -1214,7 +1214,7 @@ StScrollBar {
}
&:active {
background-image: url("misc/close-active.svg");
background-image: url("common-assets/misc/close-active.svg");
background-size: 26px;
height: 26px;
width: 26px;
@ -2256,17 +2256,3 @@ $legacy_icon_size: 24px;
border-radius: 2px;
padding: 6px;
}
/*tweaks*/
.panel-button:active,
.panel-button:overview,
.panel-button:focus,
.panel-button:hover,
#appMenu,
#panel {
text-shadow: 0px 0px white;
}
stage {
font-weight: bold;
}

View File

@ -15,6 +15,7 @@ AC_PROG_MKDIR_P
ARC_ENABLE([LIGHT], [light], [Arc Light], [disable])
ARC_ENABLE([DARKER], [darker], [Arc Darker], [disable])
ARC_ENABLE([DARK], [dark], [Arc Dark], [disable])
ARC_ENABLE([CINNAMON], [cinnamon], [Cinnamon], [disable])
ARC_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable])
ARC_ENABLE([GTK2], [gtk2], [GTK2], [disable])
ARC_ENABLE([GTK3], [gtk3], [GTK3], [disable])