mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-05 15:16:26 +00:00
31 lines
542 B
SCSS
31 lines
542 B
SCSS
@import "extends";
|
|
|
|
// Color picker
|
|
.sg-color-picker {
|
|
md-grid-tile {
|
|
border-radius: 25%;
|
|
&:hover,
|
|
&:active {
|
|
cursor: pointer;
|
|
transform: scale(1.5);
|
|
}
|
|
}
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
}
|
|
} |