mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-04 02:55:26 +00:00
f6f704ddd8
This directive allows to transform the tiles of a md-grid-list to toggle buttons.
19 lines
373 B
SCSS
19 lines
373 B
SCSS
@import "extends";
|
|
|
|
// See sgToggleGrid directive
|
|
[sg-toggle-grid] {
|
|
md-grid-tile {
|
|
border-radius: 5%;
|
|
&.iconButton {
|
|
&:hover {
|
|
background-color: sg-color($sogoBlue, 600);
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
&.sg-active, &.sg-active:hover {
|
|
background-color: sg-color($sogoBlue, 300);
|
|
color: #fff;
|
|
}
|
|
}
|
|
} |