fix(GUI): line wrap selector size subtitles wholly

We line wrap the main-page image and drive size labels as a whole
instead of partially, if the drive or image title is long enough for a
line wrap.

Change-Type: patch
Changelog-Entry: Line wrap selector size subtitles wholly
This commit is contained in:
Benedict Aas 2018-03-29 13:59:03 +01:00
parent e41d4dad3c
commit 3498d59258
2 changed files with 8 additions and 0 deletions

View File

@ -23,6 +23,9 @@ svg-icon > img[disabled] {
} }
.page-main .step-selection-text { .page-main .step-selection-text {
display: flex;
flex-wrap: wrap;
justify-content: center;
color: $palette-theme-dark-foreground; color: $palette-theme-dark-foreground;
} }
@ -101,6 +104,7 @@ svg-icon > img[disabled] {
} }
.page-main .step-name { .page-main .step-name {
margin-right: 4.5px;
font-weight: bold; font-weight: bold;
color: $palette-theme-primary-foreground; color: $palette-theme-primary-foreground;
} }

View File

@ -6505,6 +6505,9 @@ svg-icon > img[disabled] {
opacity: 0.2; } opacity: 0.2; }
.page-main .step-selection-text { .page-main .step-selection-text {
display: flex;
flex-wrap: wrap;
justify-content: center;
color: #fff; } color: #fff; }
.page-main .text-disabled > span { .page-main .text-disabled > span {
@ -6566,6 +6569,7 @@ svg-icon > img[disabled] {
vertical-align: text-top; } vertical-align: text-top; }
.page-main .step-name { .page-main .step-name {
margin-right: 4.5px;
font-weight: bold; font-weight: bold;
color: #fff; } color: #fff; }