diff --git a/data/theme/gnome-shell-sass/widgets/_app-grid.scss b/data/theme/gnome-shell-sass/widgets/_app-grid.scss index 49d3086a4fb51a5eabd2ab3e4a8e6eae9c61e8a1..9da650cf9c40ae0b9dae13b0a0ba747eaca8b87b 100644 --- a/data/theme/gnome-shell-sass/widgets/_app-grid.scss +++ b/data/theme/gnome-shell-sass/widgets/_app-grid.scss @@ -78,8 +78,8 @@ $app_icon_size: 96px; .app-folder-dialog-container { padding: $base_padding*2; - width: 640px; - height: 640px; + width: 720px; + height: 720px; } // Running app indicator (also shown in dash) @@ -124,6 +124,28 @@ $app_icon_size: 96px; icon-size: $app_icon_size * 0.5; } +.page-navigation-hint { + &.dnd { + background: rgba(255, 255, 255, 0.1); + } + + &.next:ltr, + &.previous:rtl { + background-gradient-start: rgba(255, 255, 255, 0.05); + background-gradient-end: transparent; + background-gradient-direction: horizontal; + border-radius: $modal_radius*1.5 0px 0px $modal_radius*1.5; + } + + &.previous:ltr, + &.next:rtl { + background-gradient-start: transparent; + background-gradient-end: rgba(255, 255, 255, 0.05); + background-gradient-direction: horizontal; + border-radius: 0px $modal_radius*1.5 $modal_radius*1.5 0px; + } +} + .page-navigation-arrow { & > StIcon { margin: 6px; diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 92ed05b72f15f0362dab493ed9dcc09fb5c8b0f3..fd73bf1b71d1b2562b464b45131c50a11fca99b8 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -44,7 +44,7 @@ const PAGE_INDICATOR_FADE_TIME = 200; const PAGE_PREVIEW_RATIO = 0.20; const OVERSHOOT_THRESHOLD = 20; -const OVERSHOOT_TIMEOUT = 300; +const OVERSHOOT_TIMEOUT = 1000; const DELAYED_MOVE_TIMEOUT = 200;