Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-03-21 02:00:47 +0300
committerFilipa Lacerda <filipa@gitlab.com>2017-03-21 02:00:47 +0300
commit87b9cee3c20b9069cff5cac4eb1040d2c678006e (patch)
treeb2d64db7f95afc89ad6bd3591041fa9974dea96c /app/assets
parent63c26980632c4f36a19e922fef9985b3b5257bd6 (diff)
parent6181b35409ad1ef6561b5487323adb9ba6b0d3e7 (diff)
Merge branch '28499-fix-large-text-tooltip-in-diff-file-name' into 'master'
fixes large text tooltip in diff file name Closes #28499 See merge request !9529
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/framework/common.scss6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss
index a4b38723bbd..2c33b235980 100644
--- a/app/assets/stylesheets/framework/common.scss
+++ b/app/assets/stylesheets/framework/common.scss
@@ -429,3 +429,9 @@ table {
@include str-truncated(100%);
}
}
+
+.tooltip {
+ .tooltip-inner {
+ word-wrap: break-word;
+ }
+}