30 lines
669 B
SCSS
30 lines
669 B
SCSS
&.revealer-on-hover {
|
|
border: 2px solid $module-color;
|
|
border-radius: $bar-module-border-radius;//
|
|
}
|
|
.revealer-preview,
|
|
.reveal-children>* {
|
|
padding: 0px 5px;
|
|
min-width: $bar-module-width;
|
|
}
|
|
.revealer-preview {
|
|
background-color: $module-color;
|
|
border-radius: $bar-module-border-radius - 4;
|
|
transition: all 0.3s;
|
|
}
|
|
&.true .revealer-preview {
|
|
border-radius: $bar-module-border-radius - 4 0 0 $bar-module-border-radius - 4;
|
|
}
|
|
.reveal-children>* {
|
|
border-left: 2px solid $module-color;
|
|
&.active {
|
|
background-color: rgba($module-color,0.5);
|
|
}
|
|
}
|
|
|
|
//.revealer-on-hover>widget>box>box>* {
|
|
//
|
|
// padding: 0px 5px;
|
|
//
|
|
// transition: all 0.3s;
|
|
//}
|