Files
notifications-admin/app/assets/stylesheets/components/conditional-radios.scss
T

28 lines
486 B
SCSS
Raw Normal View History

$border-thickness: 4px;
$top-spacing: $gutter - 5px;
2018-06-12 14:29:47 +01:00
.multiple-choice {
z-index: 10;
.block-label {
&:before {
box-shadow: 0 5px 0 0 $white;
2018-06-12 14:29:47 +01:00
}
}
}
.conditional-radios {
&-panel {
border-left: $border-thickness solid $border-colour;
margin: 0 0 (-$top-spacing - $gutter) ($gutter-half + ($border-thickness / 2));
padding: $top-spacing 0 0 ($gutter - ($border-thickness / 2));
2018-06-12 14:29:47 +01:00
position: relative;
top: -$top-spacing;
2018-06-12 14:29:47 +01:00
z-index: 1;
}
}