123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152 |
- .msp-right-controls {
- padding-top: $control-spacing;
- }
- .msp-section-header {
- height: $row-height;
- line-height: $row-height;
- margin-bottom: $control-spacing;
- text-align: center;
- font-weight: bold;
- background: $default-background;
- // border-right: $control-spacing solid $entity-color-Group; // TODO separate color
- border-top: 1px solid $entity-color-Group; // TODO separate color
- // border-bottom: 1px solid $entity-color-Group; // TODO separate color
- }
- .msp-current-header {
- height: $row-height;
- line-height: $row-height;
- margin-bottom: $control-spacing;
- text-align: center;
- font-weight: bold;
- background: $default-background;
- }
- .msp-btn-row-group {
- display:flex;
- flex-direction:row;
- height: $row-height;
- margin-top: 1px;
- width: 100%;
- > button {
- margin: 0;
- flex: 1 1 auto;
- margin-right: 1px;
- height: $row-height;
- }
- > button:last-child {
- margin-right: 0;
- }
- }
- .msp-state-list {
- list-style: none;
- margin-top: $control-spacing;
- > li {
- position: relative;
- > button:first-child {
- border-left: $control-spacing solid color-increase-contrast($default-background, 12%) !important;
- }
- }
- button {
- margin-bottom: 1px;
- text-align: left;
- }
- }
- .msp-state-list-remove-button {
- position: absolute;
- right: 0;
- top: 0;
- width: $row-height;
- }
- .msp-tree-row {
- position: relative;
- height: $row-height;
- line-height: $row-height;
- background: color-lower-contrast($control-background, 4%);
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: 1px;
- padding-left: $row-height;
- padding-right: 2 * $row-height + $control-spacing;
- border-left: 1px solid $entity-color-Group; // TODO custom color
- // border-bottom-left-radius: $control-spacing;
- &-current {
- // background: $control-background;
-
- a {
- color: $font-color;
- }
- a:hover, a:hover > small {
- color: color-lower-contrast($font-color, 24%);
- }
- }
- a {
- display: block;
- }
- a > small {
- color: $font-color;
- }
- a:hover {
- font-weight: bold;
- text-decoration: none;
- }
- }
- .msp-tree-remove-button {
- position: absolute;
- right: $row-height;
- top: 0;
- width: $row-height;
- font-size: 80%;
- color: color-lower-contrast($font-color, 24%);
- }
- .msp-tree-toggle-exp-button {
- position: absolute;
- left: 0;
- top: 0;
- width: $row-height;
- padding: 0;
- color: color-lower-contrast($font-color, 24%);
- }
- .msp-tree-visibility {
- position: absolute;
- right: 0;
- top: 0;
- width: $row-height;
- font-size: 80%;
- &-hidden {
- color: color-lower-contrast($font-color, 36%);
- }
- }
- .msp-tree-children {
- margin-left: $control-spacing;
- }
- .msp-log-list {
- list-style: none;
- > li {
- background: $msp-form-control-background;
- margin-bottom: 1px;
- padding: 3px 6px;
- }
- }
|