123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- .molstar-panel-header .molstar-panel-expander {
- display: block;
- width: 100%;
- text-align: left;
- }
- .molstar-panel-header {
- //border-bottom-width: 1px;
- //border-bottom-style: solid;
- height: $row-height;
- border-color: $border-color;
- position: relative;
- //border-radius: $control-spacing 0 0 0;
- .molstar-panel-expander-wrapper {
- position: absolute;
- top: 0;
- left: 0;
- right: 2 * $row-height;
- button {
- // width: 100%;
- display: block;
- width: 100%;
- text-align: left;
- height: $row-height;
- line-height: $row-height;
- border: none;
- font-weight: bold;
- //color: $panel-header-font-color;
- padding-left: 0;
- background: color-lower-contrast($default-background, 4%);
- //text-align: right!important;
- .molstar-icon {
- display: inline-block;
- margin-right: $control-spacing;
- width: $row-height;
- text-align: center;
- }
- &:hover {
- background: color-lower-contrast($default-background, 4%);
- }
- }
- }
- .molstar-panel-description-standalone {
- > .molstar-icon {
- margin-left: $row-height;
- }
- width: 2 * $row-height;
- }
- .molstar-panel-description-with-action {
- width: $row-height;
- margin-right: $row-height;
- }
- .molstar-panel-description {
- color: $font-color;
- float: right;
- background: color-lower-contrast($default-background, 4%);
- //margin-right: $row-height;
- > .molstar-icon {
- display: block;
- width: $row-height;
- height: $row-height;
- line-height: $row-height;
- text-align: center;
- font-size: 70%;
- cursor: default;
- background: color-lower-contrast($default-background, 4%);
- color: color-lower-contrast($font-color, 66%);
- }
- .molstar-panel-description-content {
- @include non-selectable;
- color: $font-color;
- display: none;
- position: absolute;
- left: 0;
- width: 100%;
- background: color-increase-contrast($molstar-form-control-background, 20%);
- min-height: $row-height;
- z-index: 1000000;
- padding: $info-vertical-padding $control-spacing $info-vertical-padding ($row-height + $control-spacing);
- text-align: left;
- //border-bottom: 1px solid color-lower-contrast($default-background, 4%);
- > .molstar-icon {
- position: absolute;
- width: $row-height;
- height: $row-height;
- line-height: $row-height;
- text-align: center;
- font-size: 80%;
- cursor: default;
- top: 0;
- left: 0;
- }
- }
- &:hover {
- color: $hover-font-color;
- > .molstar-icon {
- color: $hover-font-color;
- }
- .molstar-panel-description-content {
- display: block;
- }
- }
- }
- }
- .molstar-panel-body {
- background: $control-background;
- }
- .molstar-panel {
- margin-bottom: $control-spacing;
- }
- .molstar-transform-view {
- padding-top: $control-spacing;
- }
- .molstar-expandable-group-color-stripe {
- position: absolute;
- left: 0;
- top: $row-height - 2px;
- width: $control-label-width + $control-spacing;
- height: 2px;
- }
|