Skip to content

Commit afd2a1c

Browse files
Merge pull request #6235 from Countly/journey+content-main
Journey+content main
2 parents 8ac5cbb + 9882011 commit afd2a1c

7 files changed

Lines changed: 490 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11

22
## Version 25.03.x
3+
Enterprise Features:
4+
- [journey_engine] Record Event block added
35

46
Fixes:
57
- [core] Unifying alphabetical order for dropdowns with dashboard apps

frontend/express/public/javascripts/countly/vue/components/content.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,11 @@
238238
type: String,
239239
required: false,
240240
default: '#fff'
241+
},
242+
toolTipLeft: {
243+
type: String,
244+
required: false,
245+
default: 'Screens'
241246
}
242247
},
243248
data: function() {

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,10 @@
11
<div class="cly-vue-content-builder__layout-main__body" :class="{ 'bu-is-justify-content-flex-end': hideLeftSidebar, 'bu-is-justify-content-flex-start': hideRightSidebar, 'cly-vue-content-builder__layout-main__body__dashed-bg': hasDashedBackground }" :style="{'background-color': backgroundColor}">
22
<transition :name="toggleTransition" @enter="onViewEntered">
3-
<div v-if="!hideLeftSidebar" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
4-
<template v-if="$slots['content-layout-left-sidebar-wrapper']">
5-
<vue-scroll :ops="scrollOps">
6-
<slot name="content-layout-left-sidebar-wrapper"></slot>
7-
</vue-scroll>
8-
</template>
9-
</div>
103
<div v-if="!hideLeftSidebar && (collapsible && !isCollapsed)" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
114
<div class="cly-vue-content-builder__layout-main__body__left-sidebar__header">
125
<div class="cly-vue-content-builder__layout-main__body__left-sidebar__header__title">
136
<h4>Screens</h4>
14-
<cly-tooltip-icon class="bu-ml-1" tooltip="Screens"></cly-tooltip-icon>
7+
<cly-tooltip-icon class="bu-ml-1" :tooltip="toolTipLeft"></cly-tooltip-icon>
158
</div>
169
<div v-if="collapsible" class="cly-vue-content-builder__layout-main__body__collapse-button" @click="collapseBar('left')">
1710
<div class="cly-vue-content-builder__layout-main__body__collapse-button__icon color-warm-gray-80">
@@ -28,6 +21,13 @@ <h4>Screens</h4>
2821
<i class="cly-io cly-io-arrow-sm-left"></i>
2922
</div>
3023
</div>
24+
<div v-else-if="!hideLeftSidebar" class="cly-vue-content-builder__layout-main__body__left-sidebar" :style="{ 'width': this.leftSidebarWidth + 'px !important'}">
25+
<template v-if="$slots['content-layout-left-sidebar-wrapper']">
26+
<vue-scroll :ops="scrollOps">
27+
<slot name="content-layout-left-sidebar-wrapper"></slot>
28+
</vue-scroll>
29+
</template>
30+
</div>
3131
</transition>
3232
<!-- <component
3333
v-if="currentTabComponent"

frontend/express/public/stylesheets/styles/base/_colors.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ $colors: (
3131
"charts-light-turquoise": #EBF9F9,
3232
"charts-amber": #F5C900,
3333
"charts-orange": #F96300,
34+
"charts-light-orange": #FEEFE5,
3435
"charts-magenta": #F34971,
3536
"charts-light-magenta": #FEEDF1,
3637
"charts-coral": #FF9382,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4941,6 +4941,8 @@
49414941
width: auto;
49424942
height: 100%;
49434943
object-fit: contain;
4944+
max-width: 100%; // image won't exceed the width of its container
4945+
max-height: 100%; //
49444946
}
49454947
}
49464948

0 commit comments

Comments
 (0)