summaryrefslogtreecommitdiff
path: root/gtk/resources/theme/Adwaita/_common.scss
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/resources/theme/Adwaita/_common.scss')
-rw-r--r--gtk/resources/theme/Adwaita/_common.scss16
1 files changed, 10 insertions, 6 deletions
diff --git a/gtk/resources/theme/Adwaita/_common.scss b/gtk/resources/theme/Adwaita/_common.scss
index 898c26bc27..45907d373b 100644
--- a/gtk/resources/theme/Adwaita/_common.scss
+++ b/gtk/resources/theme/Adwaita/_common.scss
@@ -145,21 +145,25 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
.undershoot {
&.top {
- background: linear-gradient(to top, transparentize(red,1), transparentize(red,0.5));
- background-size: auto 100px;
- background-position: center 100%;
+ background-image: linear-gradient(to bottom, transparentize(black, 0.75) 1px,
+ transparentize(black, 0.9) 2px,
+ transparent 7px);
+ background-size: 100%;
+ background-position: top;
}
&.bottom {
- background: linear-gradient(to bottom, transparentize(red,1), transparentize(red,0.5));
- background-size: auto 100px;
- background-position: center 0%;
+ background-image: linear-gradient(to top, $base_color 10%, transparentize($base_color, 1));
+ background-size: 100%;
+ background-position: bottom;
}
&.left {
+ /* FIXME: styleme! */
background: linear-gradient(to left, transparentize(red,1), transparentize(red,0.5));
background-size: 100px auto;
background-position: 100% center;
}
&.right {
+ /* FIXME: styleme! */
background: linear-gradient(to right, transparentize(red,1), transparentize(red,0.5));
background-size: 100px auto;
background-position: 0% center;