UI Various 2 (#2480)

- Fixes icon-gear margin for #2477;
- Now applies mixed visual style to toggle frame visibility button in
Layout toolbar for #2460;
- Change Status area Indicators to right-justify;
- Adjust Status area collapse toggle button margin;
This commit is contained in:
Charles Hacskaylo 2019-09-13 13:34:08 -07:00 committed by Andrew Henry
parent 2200503e48
commit e98d0cc7c5
3 changed files with 7 additions and 3 deletions

View File

@ -174,6 +174,10 @@ mct-plot {
text-orientation: mixed; text-orientation: mixed;
overflow: hidden; overflow: hidden;
writing-mode: vertical-lr; writing-mode: vertical-lr;
&:before {
// Icon denoting configurability
margin-bottom: $interiorMargin; // Uses margin-bottom due to writing-mode
}
} }
} }

View File

@ -171,7 +171,7 @@
[class*='__head__collapse-button'] { [class*='__head__collapse-button'] {
align-self: start; align-self: start;
flex: 0 0 auto; flex: 0 0 auto;
margin-top: 4px; margin-top: 6px;
&:before { &:before {
content: $glyph-icon-arrow-down; content: $glyph-icon-arrow-down;
@ -214,9 +214,9 @@
&__create-button { margin-right: $interiorMarginLg; } &__create-button { margin-right: $interiorMarginLg; }
&__indicators { &__indicators {
//@include test();
flex: 1 1 auto; flex: 1 1 auto;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: flex-end;
[class*='indicator-clock'] { order: 90; } [class*='indicator-clock'] { order: 90; }
.c-indicator .label { .c-indicator .label {

View File

@ -2,7 +2,7 @@
<div class="c-ctrl-wrapper"> <div class="c-ctrl-wrapper">
<div class="c-icon-button" <div class="c-icon-button"
:title="nextValue.title" :title="nextValue.title"
:class="[nextValue.icon, {'c-click-icon--mixed': nonSpecific}]" :class="[nextValue.icon, {'c-icon-button--mixed': nonSpecific}]"
@click="cycle"> @click="cycle">
</div> </div>
</div> </div>