mirror of
https://github.com/balena-io/etcher.git
synced 2025-07-28 05:36:34 +00:00
fix(GUI): wrap long words in drivelist (#882)
Drives with long names or descriptions expand outside the drivelist, this commit fixes that using CSS `word-break: break-all`. Change-Type: patch Changelog-Entry: Wrap drive names and descriptions in the drive selector widget.
This commit is contained in:
parent
8d44c9b86c
commit
18799d4274
@ -6410,6 +6410,10 @@ body {
|
|||||||
.component-drive-selector-body .list-group-item-footer {
|
.component-drive-selector-body .list-group-item-footer {
|
||||||
margin-top: 8px; }
|
margin-top: 8px; }
|
||||||
|
|
||||||
|
.component-drive-selector-body .list-group-item-heading,
|
||||||
|
.component-drive-selector-body .list-group-item-text {
|
||||||
|
word-break: break-all; }
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright 2016 resin.io
|
* Copyright 2016 resin.io
|
||||||
*
|
*
|
||||||
|
@ -19,6 +19,15 @@
|
|||||||
height: 320px;
|
height: 320px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.component-drive-selector-body .list-group-item-footer {
|
.component-drive-selector-body {
|
||||||
|
|
||||||
|
.list-group-item-footer {
|
||||||
margin-top: 8px;
|
margin-top: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.list-group-item-heading,
|
||||||
|
.list-group-item-text {
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user