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

46 lines
972 B
SCSS
Raw Normal View History

2014-11-23 22:36:45 +05:30
/******************
! Grid and flowbox
*******************/
2014-11-14 01:29:02 +05:30
.list {
background-color: shade($bg_color, 0.97);
color: $fg_color;
&-row {
2014-12-13 20:09:58 +05:30
&, &.button {
border: none;
border-radius: 0;
padding: $spacing;
2014-11-14 01:29:02 +05:30
background-image: none;
2014-12-13 20:09:58 +05:30
background-color: transparent;
box-shadow: none;
2014-11-14 01:29:02 +05:30
2014-12-13 20:09:58 +05:30
&:hover {
2014-11-14 01:29:02 +05:30
background-image: none;
2014-12-13 20:09:58 +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-11-14 01:29:02 +05:30
}
}
}
}
2014-11-23 22:36:45 +05:30
.grid-child {
&, GtkFlowBox & {
padding: $spacing;
border-radius: $roundness;
&:selected {
2014-12-20 03:11:02 +05:30
@extend %selected;
2014-11-23 22:36:45 +05:30
outline-offset: -2px;
}
}
}