Skip to content

Commit

Permalink
Fixed #198
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceliuice committed Nov 12, 2024
1 parent 2ef8de7 commit 18a308b
Show file tree
Hide file tree
Showing 15 changed files with 376 additions and 1,146 deletions.
10 changes: 5 additions & 5 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -408,23 +408,23 @@ while [[ $# -gt 0 ]]; do
esac
done

if [[ "${#themes[@]}" -eq 0 ]] ; then
if [[ "${#themes[@]}" -eq 0 ]]; then
themes=("${THEME_VARIANTS[0]}")
fi

if [[ "${#colors[@]}" -eq 0 ]] ; then
if [[ "${#colors[@]}" -eq 0 ]]; then
colors=("${COLOR_VARIANTS[@]}")
fi

if [[ "${#lcolors[@]}" -eq 0 ]] ; then
if [[ "${#lcolors[@]}" -eq 0 ]]; then
lcolors=("${COLOR_VARIANTS[1]}")
fi

if [[ "${#sizes[@]}" -eq 0 ]] ; then
if [[ "${#sizes[@]}" -eq 0 ]]; then
sizes=("${SIZE_VARIANTS[0]}")
fi

if [[ "${#schemes[@]}" -eq 0 ]] ; then
if [[ "${#schemes[@]}" -eq 0 ]]; then
schemes=("${SCHEME_VARIANTS[0]}")
fi

Expand Down
12 changes: 6 additions & 6 deletions src/sass/gnome-shell/_widgets-47-0.scss
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
@import 'common/a11y';
@import 'common/base';
@import 'common/buttons';
@import 'common/check-box';
@import 'common/corner-ripple';
@import 'common/dialogs';
@import 'common/entries';
@import 'common/hotplug';
@import 'common/ibus-popup';
Expand All @@ -19,17 +17,17 @@
@import 'common/screen-shield';
@import 'common/scrollbars';
@import 'common/search-entry';
@import 'common/slider';
@import 'common/switcher-popup';
@import 'common/switches';
@import 'common/tiled-previews';
@import 'common/workspace-switcher';
@import 'widgets-46-0/app-grid';
@import 'widgets-46-0/calendar';
@import 'widgets-47-0/check-box';
@import 'widgets-46-0/dash';
@import 'widgets-46-0/message-list';
@import 'widgets-47-0/dialogs';
@import 'widgets-47-0/message-list';
@import 'widgets-40-0/misc';
@import 'widgets-46-0/notifications';
@import 'widgets-47-0/notifications';
@import 'widgets-40-0/overview';
@import 'widgets-42-0/osd';
@import 'widgets-40-0/panel';
Expand All @@ -38,5 +36,7 @@
@import 'widgets-40-0/search-entry';
@import 'widgets-46-0/search-results';
@import 'widgets-42-0/screenshot';
@import 'widgets-47-0/slider';
@import 'widgets-47-0/switches';
@import 'widgets-40-0/window-picker';
@import 'widgets-40-0/workspace-thumbnails';
4 changes: 2 additions & 2 deletions src/sass/gnome-shell/extensions-46-0/_dash-to-dock.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
color: white;
background-color: rgba(black, 0.75);
text-align: center;
padding: 0.2em 0.4em;
padding: 0.32em 0.4em;
}

.notification-badge {
Expand All @@ -29,7 +29,7 @@
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.25);
border-radius: $circular-radius;
margin: 2px 3px 5px;
padding: 0.2em 0.4em;
padding: 0.3em 0.4em;
font-weight: bold;
text-align: center;
}
Expand Down
2 changes: 1 addition & 1 deletion src/sass/gnome-shell/widgets-46-0/_dash.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $dash_spacing: $base_margin * 0.5;
padding-bottom: $dash_padding;
padding-left: $dash_padding - $dash_spacing; // subtract the margins added to .overview-tile below
padding-right: $dash_padding - $dash_spacing;
box-shadow: inset 0 1px rgba(white, 0.08);
box-shadow: inset 0 0.5px rgba(white, 0.08);
}

// items on the dash
Expand Down
209 changes: 0 additions & 209 deletions src/sass/gnome-shell/widgets-47-0/_app-grid.scss

This file was deleted.

Loading

0 comments on commit 18a308b

Please sign in to comment.