Compare commits

...

2 Commits

Author SHA1 Message Date
6d0294261d UI Various 2
- Change Status area Indicators to right-justify;
- Adjust Status area collapse toggle button margin;
2019-09-11 22:44:15 -07:00
e04b916988 UI Various 2
- Fixes icon-gear margin for #2477;
- Now applies mixed visual style to toggle frame visibility button in
Layout toolbar for #2460;
2019-09-11 16:42:51 -07:00
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>