Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Mar 8, 2018
1 parent c7eac8f commit bcfb269
Show file tree
Hide file tree
Showing 25 changed files with 740 additions and 43 deletions.
1 change: 1 addition & 0 deletions install.sh
Expand Up @@ -51,6 +51,7 @@ install() {

mkdir -p ${THEME_DIR}
cp -ur ${SRC_DIR}/COPYING ${THEME_DIR}
cp -ur ${SRC_DIR}/AUTHORS ${THEME_DIR}

echo "[Desktop Entry]" >> ${THEME_DIR}/index.theme
echo "Type=X-GNOME-Metatheme" >> ${THEME_DIR}/index.theme
Expand Down
Binary file added logo.jpeg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/_sass/_colors.scss
Expand Up @@ -49,7 +49,7 @@ $alt_lighter_bg_color: if($variant == 'light', $grey_200, fade($green_grey_600))
$darker_bg_color: if($variant == 'light', $grey_200, fade($green_grey_900));

$titlebar_bg_color: if($titlebar == 'dark', if($variant == 'light', $green_grey_700, $green_grey_800), $white);
$alt_titlebar_bg_color: if($titlebar == 'dark', $green_grey_800, $grey_300);
$alt_titlebar_bg_color: if($titlebar == 'dark', $green_grey_600, $grey_300);

$panel_bg_color: rgba($titlebar_bg_color, $secondary_opacity);
$alt_panel_bg_color: rgba($alt_titlebar_bg_color, $secondary_opacity);
Expand Down
39 changes: 36 additions & 3 deletions src/_sass/gnome-shell/_common.scss
Expand Up @@ -934,6 +934,30 @@ StScrollBar {
}
}

// Activities button
#panel #panelActivities.panel-button {

> * {
background-image: url("assets/activities.svg");
background-position: center top;
width: 24px;
height: 24px;
background-color: transparent !important;
background-gradient-direction: none !important;
border: none;
color: transparent;
}

&:active, &:overview, &:focus, &:checked {
background-color: rgba($panel_bg_color, 0.01);
box-shadow: inset 0 -2px 0px $primary_color;
color: $titlebar_fg_color;
border: none;

> * { background-image: url("assets/activities-active.svg"); }
}
}

// calendar popover
#calendarArea {
padding: 8px 16px;
Expand Down Expand Up @@ -1593,7 +1617,7 @@ StScrollBar {

%icon_tile {
color: $inverse_fg_color;
border-radius: $material_radius;
border-radius: 100px;
padding: 6px;
border: none;
transition-duration: $longer_duration;
Expand All @@ -1605,17 +1629,26 @@ StScrollBar {
}

.show-apps .show-apps-icon {
color: $inverse_secondary_fg_color;
color: $titlebar_secondary_fg_color;
}

.show-apps:hover .show-apps-icon,
.show-apps:active .show-apps-icon,
.show-apps:checked .show-apps-icon,
.show-apps:focus .show-apps-icon {
color: $inverse_fg_color;
color: $titlebar_fg_color;
transition-duration: $longer_duration;
}

.show-apps:hover .overview-icon {
background-color: $alt_titlebar_bg_color;
}

.show-apps:active .overview-icon,
.show-apps:checked .overview-icon,
.show-apps:focus .overview-icon {
background-color: $titlebar_bg_color;
}

// Collections
.app-folder-popup { //expanded collection
Expand Down
4 changes: 4 additions & 0 deletions src/_sass/gtk/_common.scss
Expand Up @@ -1222,6 +1222,10 @@ headerbar {
&:hover {
color: $titlebar_fg_color;
}

&:disabled {
color: $titlebar_disabled_fg_color;
}
}

&:first-child { // Fixed stack-switchers first checked buttons
Expand Down
79 changes: 79 additions & 0 deletions src/gnome-shell/assets-dark/activities-active.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
80 changes: 80 additions & 0 deletions src/gnome-shell/assets-dark/activities.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/gnome-shell/assets-dark/launcher.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions src/gnome-shell/assets/activities-active.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit bcfb269

Please sign in to comment.