mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-24 15:27:17 +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 {
|
||||
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
|
||||
*
|
||||
|
@ -19,6 +19,15 @@
|
||||
height: 320px;
|
||||
}
|
||||
|
||||
.component-drive-selector-body .list-group-item-footer {
|
||||
margin-top: 8px;
|
||||
.component-drive-selector-body {
|
||||
|
||||
.list-group-item-footer {
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.list-group-item-heading,
|
||||
.list-group-item-text {
|
||||
word-break: break-all;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user