Merge pull request #275 from leoetlino/overshoot-undershoot

gtk-3.0: Add support for undershoot and overshoot
pull/278/head
Satyajit Sahoo 2015-12-13 17:12:34 +05:30
commit 9a964499d0
1 changed files with 26 additions and 0 deletions

View File

@ -1494,6 +1494,32 @@ GtkModelButton.button:selected {
background-color: shade(@theme_base_color, 0.95);
}
/*************
* overshoot *
*************/
.overshoot.top {
background: -gtk-gradient(radial, center top, 0, center top, 0.7, from(shade(@bg_color, 0.92)), to(alpha(@bg_color, 0.0)));
}
.overshoot.right {
background: -gtk-gradient(radial, right center, 0, right center, 0.7, from(shade(@bg_color, 0.92)), to(alpha(@bg_color, 0.0)));
}
.overshoot.bottom {
background: -gtk-gradient(radial, center bottom, 0, center bottom, 0.7, from(shade(@bg_color, 0.92)), to(alpha(@bg_color, 0.0)));
}
.overshoot.left {
background: -gtk-gradient(radial, left center, 0, left center, 0.7, from(shade(@bg_color, 0.92)), to(alpha(@bg_color, 0.0)));
}
/**************
* undershoot *
**************/
.undershoot {
background: none;
}
/******************
* pane separator *
******************/