Wrap code in exports mixin
parent
1b99e55e91
commit
7a4b108791
|
@ -2,6 +2,7 @@
|
|||
! Grid and flowbox
|
||||
*******************/
|
||||
|
||||
@include exports("grid") {
|
||||
.list {
|
||||
background-color: shade($bg_color, 0.97);
|
||||
color: $fg_color;
|
||||
|
@ -43,3 +44,5 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,10 +2,12 @@
|
|||
! Dimmed label *
|
||||
****************/
|
||||
|
||||
@include exports("dimlabel") {
|
||||
.dim-label {
|
||||
opacity: 0.5;
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/***********
|
||||
|
|
|
@ -5,9 +5,8 @@
|
|||
! OSD *
|
||||
********/
|
||||
|
||||
GtkOverlay.osd {
|
||||
background-color: transparent;
|
||||
}
|
||||
@include exports("osd") {
|
||||
GtkOverlay.osd { background-color: transparent; }
|
||||
|
||||
.osd {
|
||||
&.background {
|
||||
|
@ -43,29 +42,10 @@ GtkOverlay.osd {
|
|||
|
||||
.scale {
|
||||
&.slider {
|
||||
background-color: shade($osd_bg, 1.08);
|
||||
background-image: none;
|
||||
/* we will draw the border using box shadow for now */
|
||||
box-shadow: inset 1px 0 shade($osd_bg, 0.8),
|
||||
inset 0 1px shade($osd_bg, 0.8),
|
||||
inset -1px 0 shade($osd_bg, 0.8),
|
||||
inset 0 -1px shade($osd_bg, 0.8);
|
||||
@include linear-gradient(shade($osd_bg, 1.08));
|
||||
@include border($osd_bg);
|
||||
|
||||
&:hover {
|
||||
box-shadow: inset 1px 0 shade($osd_bg, 0.7),
|
||||
inset 0 1px shade($osd_bg, 0.7),
|
||||
inset -1px 0 shade($osd_bg, 0.7),
|
||||
inset 0 -1px shade($osd_bg, 0.7);
|
||||
}
|
||||
|
||||
&:insensitive {
|
||||
background-color: shade($osd_bg, 0.9);
|
||||
background-image: none;
|
||||
box-shadow: inset 1px 0 shade($osd_bg, 0.85),
|
||||
inset 0 1px shade($osd_bg, 0.85),
|
||||
inset -1px 0 shade($osd_bg, 0.85),
|
||||
inset 0 -1px shade($osd_bg, 0.85);
|
||||
}
|
||||
&:insensitive { @include linear-gradient(shade($osd_bg, 0.9)); }
|
||||
}
|
||||
|
||||
&.trough {
|
||||
|
@ -148,3 +128,4 @@ GtkOverlay.osd {
|
|||
background-image: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -120,37 +120,14 @@
|
|||
|
||||
&.slider {
|
||||
@include linear-gradient(shade($bg_color, 1.08));
|
||||
@include border($bg_color);
|
||||
|
||||
border-radius: 8px;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
box-shadow: 0 1px 2px -1px alpha($dark_shadow, .3);
|
||||
|
||||
/* we will draw the border using box shadow for now */
|
||||
box-shadow: inset 1px 0 border_normal($bg_color),
|
||||
inset 0 1px border_normal($bg_color),
|
||||
inset -1px 0 border_normal($bg_color),
|
||||
inset 0 -1px border_normal($bg_color);
|
||||
|
||||
&:hover, &:focus {
|
||||
box-shadow: inset 1px 0 border_focus($bg_color),
|
||||
inset 0 1px border_focus($bg_color),
|
||||
inset -1px 0 border_focus($bg_color),
|
||||
inset 0 -1px border_focus($bg_color);
|
||||
}
|
||||
|
||||
&:active {
|
||||
box-shadow: inset 1px 0 border_active($bg_color),
|
||||
inset 0 1px border_active($bg_color),
|
||||
inset -1px 0 border_active($bg_color),
|
||||
inset 0 -1px border_active($bg_color);
|
||||
}
|
||||
|
||||
&:insensitive {
|
||||
@include linear-gradient(shade($bg_color, 0.9));
|
||||
|
||||
box-shadow: inset 1px 0 border_insensitive($bg_color),
|
||||
inset 0 1px border_insensitive($bg_color),
|
||||
inset -1px 0 border_insensitive($bg_color),
|
||||
inset 0 -1px border_insensitive($bg_color);
|
||||
}
|
||||
&:insensitive { @include linear-gradient(shade($bg_color, 0.9)); }
|
||||
}
|
||||
|
||||
&.fine-tune {
|
||||
|
|
|
@ -46,7 +46,7 @@
|
|||
.frame { border-width: 0; }
|
||||
|
||||
GtkAssistant & {
|
||||
padding: 4px;
|
||||
padding: $spacing;
|
||||
border-width: 0 1px 0 0;
|
||||
border-style: solid;
|
||||
border-right-color: border_normal($bg_color);
|
||||
|
|
Loading…
Reference in New Issue