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
path: root/app
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-03-20 20:26:30 +0300
committerFilipa Lacerda <filipa@gitlab.com>2018-03-20 20:26:30 +0300
commit7224b8cea6d674c56393626c80f3cc8bdfa26efe (patch)
tree6026ba98d96b739bf8014bed99513675d5c6b1b4 /app
parenta2d82d4c5522b6d3668481e2fcfc77b0830ce9b6 (diff)
Adds a bigger width to the performance bar modal box and breaks the content
Diffstat (limited to 'app')
-rw-r--r--app/assets/javascripts/performance_bar/components/detailed_metric.vue1
-rw-r--r--app/assets/stylesheets/framework/common.scss5
-rw-r--r--app/assets/stylesheets/performance_bar.scss10
3 files changed, 14 insertions, 2 deletions
diff --git a/app/assets/javascripts/performance_bar/components/detailed_metric.vue b/app/assets/javascripts/performance_bar/components/detailed_metric.vue
index 145465f4ee9..68d539c57a4 100644
--- a/app/assets/javascripts/performance_bar/components/detailed_metric.vue
+++ b/app/assets/javascripts/performance_bar/components/detailed_metric.vue
@@ -64,6 +64,7 @@ export default {
<td
v-for="key in keys"
:key="key"
+ class="break-all"
>
{{ item[key] }}
</td>
diff --git a/app/assets/stylesheets/framework/common.scss b/app/assets/stylesheets/framework/common.scss
index 37d33320445..92143b625c6 100644
--- a/app/assets/stylesheets/framework/common.scss
+++ b/app/assets/stylesheets/framework/common.scss
@@ -446,6 +446,11 @@ img.emoji {
opacity: .5;
}
+.break-all {
+ word-wrap: break-word;
+ word-break: break-all;
+}
+
/** COMMON CLASSES **/
.prepend-top-0 { margin-top: 0; }
.prepend-top-5 { margin-top: 5px; }
diff --git a/app/assets/stylesheets/performance_bar.scss b/app/assets/stylesheets/performance_bar.scss
index d06148a7bf8..9c1d36fc59a 100644
--- a/app/assets/stylesheets/performance_bar.scss
+++ b/app/assets/stylesheets/performance_bar.scss
@@ -108,8 +108,14 @@
}
}
- .performance-bar-modal .modal-footer {
- display: none;
+ .performance-bar-modal {
+ .modal-footer {
+ display: none;
+ }
+
+ .modal-dialog {
+ width: 860px;
+ }
}
}