summaryrefslogtreecommitdiff
path: root/Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss
diff options
context:
space:
mode:
Diffstat (limited to 'Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss')
-rw-r--r--Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss48
1 files changed, 48 insertions, 0 deletions
diff --git a/Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss b/Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss
new file mode 100644
index 0000000..e4b9e8f
--- /dev/null
+++ b/Redcore-nighttime/gtk-3.0/scss/widgets/_grid.scss
@@ -0,0 +1,48 @@
+/******************
+ ! Grid and flowbox
+*******************/
+
+@include exports("grid") {
+ .list {
+ background-color: shade($bg_color, .97);
+ color: $fg_color;
+
+ &-row {
+ &, &.button {
+ border: 0;
+ border-radius: 0;
+ padding: $spacing;
+ background-image: none;
+ background-color: alpha($bg_color, 0);
+ box-shadow: none;
+
+ &:hover {
+ background-image: none;
+ background-color: shade($bg_color, 1.02);
+ }
+
+ &:selected {
+ &, &:hover, &:focus {
+ background-image: none;
+ background-color: $selected_bg_color;
+ color: $selected_fg_color;
+ }
+ }
+ }
+ }
+ }
+
+ .grid-child {
+ &, GtkFlowBox & {
+ padding: $spacing;
+ border-radius: $roundness;
+
+ &:selected {
+ @extend %selected;
+
+ outline-offset: -2px;
+ }
+ }
+ }
+}
+