fix(gui): break and wrap bootstrap overflowing tooltip text (#1033)

Instead of letting Bootstrap tooltip text overflow, allow breaks to occur in
words.

Closes: https://github.com/resin-io/etcher/issues/1032
Changelog-Entry: Fix text overflowing on tooltips.
Change-Type: patch
This commit is contained in:
Benedict Aas 2017-01-17 19:13:07 +00:00 committed by Juan Cruz Viotti
parent cf1b0904e8
commit 4bf313c7a8
2 changed files with 8 additions and 0 deletions

View File

@ -5976,6 +5976,9 @@ body {
[uib-tooltip] {
cursor: default; }
.tooltip {
word-wrap: break-word; }
/*
* Copyright 2016 resin.io
*

View File

@ -35,3 +35,8 @@ body {
[uib-tooltip] {
cursor: default;
}
.tooltip {
word-wrap: break-word;
}