horizon/openstack_dashboard/static/dashboard/scss/components/_help_panel.scss

43 lines
674 B
SCSS

$help-panel-width: 400px;
$help-panel-top: -5px;
.help-toggle,
.wizard-help,
.help-panel {
position: absolute;
top: $help-panel-top;
right: 0;
z-index: 2; // TODO(robcresswell) untangle the need for this sorcery
}
.help-panel > div {
width: $help-panel-width;
}
// Controls the size of the "?" icon on the right of the wizards
.help-toggle {
@extend .btn-xs;
font-size: $font-size-h3;
.fa {
@extend .fa-question-circle;
}
&:not(.collapsed) {
z-index: 3;
&,
&:hover,
&:active,
&:focus {
@extend .close;
box-shadow: none;
margin: $padding-xs-horizontal;
}
.fa {
@extend .fa-times;
}
}
}