Browse Source

forgot effects

master
Marc 3 years ago
parent
commit
bb76187e24
1 changed files with 0 additions and 50 deletions
  1. 50
      .config/gtk-3.0/effects/overshoot.css

50
.config/gtk-3.0/effects/overshoot.css

@ -1,50 +0,0 @@
/*
* disable ripple effects when overscrolling a list
* and dotted lines when end of list is not reached
*/
/* -gtk-gradient(radial start_x, start_y, start_radius, end_x end_y, end_radius, color-stop (position, color), ...) */
overshoot.top,
overshoot.bottom,
overshoot.left,
overshoot.right {
background: transparent;
background-repeat: no-repeat;
border: none;
box-shadow: none;
}
overshoot.top {
background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(alpha(@acc1_color, 0.6)), to(transparent));
background-size: 100% 60%;
background-position: center top;
}
overshoot.bottom {
background-image: -gtk-gradient(radial, center bottom, 0, center bottom, 0.6, from(alpha(@acc1_color, 0.6)), to(transparent));
background-size: 100% 60%;
background-position: center bottom;
}
overshoot.left {
background-image: -gtk-gradient(radial, left center, 0, left center, 0.6, from(alpha(@acc1_color, 0.6)), to(transparent));
background-size: 60% 100%;
background-position: left center;
}
overshoot.right {
background-image: -gtk-gradient(radial, right center, 0, right center, 0.6, from(alpha(@acc1_color, 0.6)), to(transparent));
background-size: 60% 100%;
background-position: right center;
}
undershoot.top,
undershoot.bottom,
undershoot.left,
undershoot.right {
background: transparent;
background-origin: content-box;
border: none;
box-shadow: none;
}
Loading…
Cancel
Save