Files
numix-blue-gtk-theme/gtk-3.0/scss/widgets/_grid.scss
T

49 lines
1.1 KiB
SCSS
Raw Normal View History

2014-11-23 22:36:45 +05:30
/******************
! Grid and flowbox
*******************/
2014-11-14 01:29:02 +05:30
2014-12-28 20:24:48 +05:30
@include exports("grid") {
.list {
2015-08-07 04:40:35 +05:30
background-color: shade($bg_color, .97);
2014-12-28 20:24:48 +05:30
color: $fg_color;
2014-11-14 01:29:02 +05:30
2014-12-28 20:24:48 +05:30
&-row {
&, &.button {
2015-08-07 04:40:35 +05:30
border: 0;
2014-12-28 20:24:48 +05:30
border-radius: 0;
padding: $spacing;
2014-11-14 01:29:02 +05:30
background-image: none;
2015-05-31 21:50:35 +05:30
background-color: alpha($bg_color, 0);
2014-12-28 20:24:48 +05:30
box-shadow: none;
2014-12-13 20:09:58 +05:30
2014-12-28 20:24:48 +05:30
&:hover {
2014-12-13 20:09:58 +05:30
background-image: none;
2014-12-28 20:24:48 +05:30
background-color: shade($bg_color, 1.02);
}
&:selected {
&, &:hover, &:focus {
background-image: none;
background-color: $selected_bg_color;
color: $selected_fg_color;
}
2014-12-13 20:09:58 +05:30
}
2014-11-14 01:29:02 +05:30
}
}
}
2014-12-28 20:24:48 +05:30
.grid-child {
&, GtkFlowBox & {
padding: $spacing;
border-radius: $roundness;
2014-11-23 22:36:45 +05:30
2014-12-28 20:24:48 +05:30
&:selected {
@extend %selected;
2014-11-23 22:36:45 +05:30
2014-12-28 20:24:48 +05:30
outline-offset: -2px;
}
2014-11-23 22:36:45 +05:30
}
}
}
2014-12-28 20:24:48 +05:30