Skip to content

Commit 35673c6

Browse files
Merge branch 'next' into cly-vue-notification-css-issue
2 parents 9ade301 + 54fa684 commit 35673c6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

frontend/express/public/javascripts/countly/vue/templates/content/content-header.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</div>
1717
<div class="cly-vue-content-builder__layout-header__info">
1818
<div class="cly-vue-content-builder__layout-header__info-title cursor-pointer" @dblclick="handleDoubleClick">
19-
<h4 v-if="!isEditing">{{ localTitle }}</h4>
19+
<h4 class="has-ellipsis" v-tooltip="localTitle && localTitle.length > 30 ? localTitle : ''" v-if="!isEditing">{{ localTitle }}</h4>
2020
<el-input
2121
v-else
2222
class="bu-mb-2 cly-vue-content-builder__layout-header__info-title__input"

frontend/express/public/stylesheets/vue/clyvue.scss

+2-1
Original file line numberDiff line numberDiff line change
@@ -4336,7 +4336,7 @@
43364336
&__left {
43374337
display: flex;
43384338
align-items: center;
4339-
width: 350px;
4339+
// width: 350px;
43404340
}
43414341

43424342
&__icon {
@@ -4366,6 +4366,7 @@
43664366
&__info-title {
43674367
h4 {
43684368
margin: 0;
4369+
max-width: 400px;
43694370
}
43704371
&__input {
43714372
width: 200px;

0 commit comments

Comments
 (0)