@chat21/chat21-ionic 3.0.107-rc.3 → 3.0.107-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/app/app.component.ts +73 -29
- package/src/app/chatlib/conversation-detail/conversation-content/conversation-content.component.scss +0 -1
- package/src/app/chatlib/conversation-detail/ion-conversation-detail/ion-conversation-detail.component.scss +9 -9
- package/src/app/chatlib/conversation-detail/message/info-message/info-message.component.scss +5 -7
- package/src/app/chatlib/conversation-detail/message/options/options.component.scss +2 -2
- package/src/app/chatlib/conversation-detail/message/return-receipt/return-receipt.component.scss +1 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.html +1 -1
- package/src/app/chatlib/list-conversations-component/ion-list-conversations/ion-list-conversations.component.scss +22 -55
- package/src/app/components/canned-response/canned-response.component.scss +9 -2
- package/src/app/components/contacts-directory/contacts-directory.component.scss +4 -56
- package/src/app/components/conversation-detail/header-conversation-detail/header-conversation-detail.component.scss +5 -6
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.scss +16 -5
- package/src/app/components/conversation-detail/message-text-area/message-text-area.component.ts +5 -0
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.html +11 -19
- package/src/app/components/conversation-info/advanced-info-accordion/advanced-info-accordion.component.scss +15 -19
- package/src/app/components/conversation-info/info-direct/info-direct.component.scss +6 -5
- package/src/app/components/conversation-info/info-group/info-group.component.html +2 -2
- package/src/app/components/conversation-info/info-group/info-group.component.scss +11 -2
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.html +2 -1
- package/src/app/components/conversation-info/info-support-group/info-support-group.component.ts +44 -1
- package/src/app/components/conversations-list/header-conversations-list/header-conversations-list.component.html +2 -1
- package/src/app/components/conversations-list/header-conversations-list/header-conversations-list.component.scss +3 -2
- package/src/app/components/conversations-list/header-conversations-list-archived/header-conversations-list-archived.component.scss +5 -3
- package/src/app/components/conversations-list/header-conversations-list-unassigned/header-conversations-list-unassigned.component.scss +5 -3
- package/src/app/components/navbar/navbar.component.html +10 -14
- package/src/app/components/navbar/navbar.component.scss +33 -17
- package/src/app/components/sidebar/sidebar.component.html +49 -67
- package/src/app/components/sidebar/sidebar.component.scss +44 -29
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.html +5 -5
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.scss +47 -93
- package/src/app/components/sidebar-user-details/sidebar-user-details.component.ts +11 -13
- package/src/app/modals/create-canned-response/create-canned-response.page.html +2 -20
- package/src/app/modals/create-canned-response/create-canned-response.page.scss +44 -27
- package/src/app/modals/create-ticket/create-ticket.page.html +4 -4
- package/src/app/modals/create-ticket/create-ticket.page.scss +34 -1
- package/src/app/modals/json-message/json-message.page.scss +15 -1
- package/src/app/modals/loader-preview/loader-preview.page.html +1 -1
- package/src/app/modals/loader-preview/loader-preview.page.scss +19 -1
- package/src/app/modals/maps/maps.page.scss +18 -0
- package/src/app/modals/send-email/send-email.page.scss +30 -7
- package/src/app/modals/send-whatsapp-template/send-whatsapp-template.page.html +1 -1
- package/src/app/modals/send-whatsapp-template/send-whatsapp-template.page.scss +18 -0
- package/src/app/pages/contacts-directory/contacts-directory.page.html +9 -10
- package/src/app/pages/contacts-directory/contacts-directory.page.scss +5 -3
- package/src/app/pages/contacts-directory/contacts-directory.page.ts +0 -15
- package/src/app/pages/conversation-detail/conversation-detail.page.scss +5 -5
- package/src/app/pages/conversation-detail/conversation-detail.page.ts +10 -10
- package/src/app/pages/conversations-list/conversations-list.page.html +0 -1
- package/src/app/pages/conversations-list/conversations-list.page.scss +6 -17
- package/src/app/pages/conversations-list/conversations-list.page.ts +9 -18
- package/src/app/pages/profile-info/profile-info.page.html +4 -4
- package/src/app/pages/profile-info/profile-info.page.scss +43 -25
- package/src/app/pages/profile-info/profile-info.page.ts +2 -1
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.html +5 -5
- package/src/app/pages/unassigned-conversations/unassigned-conversations.page.scss +2 -2
- package/src/assets/customStyle.css +18 -0
- package/src/assets/test.html +37 -4
- package/src/chat21-core/providers/tiledesk/tiledesk-auth.service.ts +21 -9
- package/src/global.scss +52 -137
- package/src/index.html +1 -1
- package/src/theme/variables.scss +276 -149
- package/src/variables.scss +115 -21
package/src/theme/variables.scss
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// http://ionicframework.com/docs/theming/
|
|
3
3
|
|
|
4
4
|
/** Ionic CSS Variables **/
|
|
5
|
-
|
|
5
|
+
body {
|
|
6
6
|
|
|
7
7
|
.message-my a {
|
|
8
8
|
color: white;
|
|
@@ -81,157 +81,284 @@
|
|
|
81
81
|
--ion-color-light-tint: #f5f6f9;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
@media (prefers-color-scheme: dark) {
|
|
87
|
+
/*
|
|
88
|
+
* Dark Colors
|
|
89
|
+
* -------------------------------------------
|
|
90
|
+
*/
|
|
91
|
+
|
|
92
|
+
body {
|
|
93
|
+
--ion-color-primary: #428cff;
|
|
94
|
+
--ion-color-primary-rgb: 66,140,255;
|
|
95
|
+
--ion-color-primary-contrast: #ffffff;
|
|
96
|
+
--ion-color-primary-contrast-rgb: 255,255,255;
|
|
97
|
+
--ion-color-primary-shade: #3a7be0;
|
|
98
|
+
--ion-color-primary-tint: #5598ff;
|
|
99
|
+
|
|
100
|
+
--ion-color-secondary: #50c8ff;
|
|
101
|
+
--ion-color-secondary-rgb: 80,200,255;
|
|
102
|
+
--ion-color-secondary-contrast: #ffffff;
|
|
103
|
+
--ion-color-secondary-contrast-rgb: 255,255,255;
|
|
104
|
+
--ion-color-secondary-shade: #46b0e0;
|
|
105
|
+
--ion-color-secondary-tint: #62ceff;
|
|
106
|
+
|
|
107
|
+
--ion-color-tertiary: #6a64ff;
|
|
108
|
+
--ion-color-tertiary-rgb: 106,100,255;
|
|
109
|
+
--ion-color-tertiary-contrast: #ffffff;
|
|
110
|
+
--ion-color-tertiary-contrast-rgb: 255,255,255;
|
|
111
|
+
--ion-color-tertiary-shade: #5d58e0;
|
|
112
|
+
--ion-color-tertiary-tint: #7974ff;
|
|
113
|
+
|
|
114
|
+
--ion-color-success: #2fdf75;
|
|
115
|
+
--ion-color-success-rgb: 47,223,117;
|
|
116
|
+
--ion-color-success-contrast: #000000;
|
|
117
|
+
--ion-color-success-contrast-rgb: 0,0,0;
|
|
118
|
+
--ion-color-success-shade: #29c467;
|
|
119
|
+
--ion-color-success-tint: #44e283;
|
|
120
|
+
|
|
121
|
+
--ion-color-warning: #ffd534;
|
|
122
|
+
--ion-color-warning-rgb: 255,213,52;
|
|
123
|
+
--ion-color-warning-contrast: #000000;
|
|
124
|
+
--ion-color-warning-contrast-rgb: 0,0,0;
|
|
125
|
+
--ion-color-warning-shade: #e0bb2e;
|
|
126
|
+
--ion-color-warning-tint: #ffd948;
|
|
127
|
+
|
|
128
|
+
--ion-color-danger: #ff4961;
|
|
129
|
+
--ion-color-danger-rgb: 255,73,97;
|
|
130
|
+
--ion-color-danger-contrast: #ffffff;
|
|
131
|
+
--ion-color-danger-contrast-rgb: 255,255,255;
|
|
132
|
+
--ion-color-danger-shade: #e04055;
|
|
133
|
+
--ion-color-danger-tint: #ff5b71;
|
|
134
|
+
|
|
135
|
+
--ion-color-dark: #f4f5f8;
|
|
136
|
+
--ion-color-dark-rgb: 244,245,248;
|
|
137
|
+
--ion-color-dark-contrast: #000000;
|
|
138
|
+
--ion-color-dark-contrast-rgb: 0,0,0;
|
|
139
|
+
--ion-color-dark-shade: #d7d8da;
|
|
140
|
+
--ion-color-dark-tint: #f5f6f9;
|
|
141
|
+
|
|
142
|
+
--ion-color-medium: #989aa2;
|
|
143
|
+
--ion-color-medium-rgb: 152,154,162;
|
|
144
|
+
--ion-color-medium-contrast: #000000;
|
|
145
|
+
--ion-color-medium-contrast-rgb: 0,0,0;
|
|
146
|
+
--ion-color-medium-shade: #86888f;
|
|
147
|
+
--ion-color-medium-tint: #a2a4ab;
|
|
148
|
+
|
|
149
|
+
--ion-color-light: #222428;
|
|
150
|
+
--ion-color-light-rgb: 34,36,40;
|
|
151
|
+
--ion-color-light-contrast: #ffffff;
|
|
152
|
+
--ion-color-light-contrast-rgb: 255,255,255;
|
|
153
|
+
--ion-color-light-shade: #1e2023;
|
|
154
|
+
--ion-color-light-tint: #383a3e;
|
|
155
|
+
}
|
|
154
156
|
|
|
155
157
|
/*
|
|
156
158
|
* iOS Dark Theme
|
|
157
159
|
* -------------------------------------------
|
|
158
160
|
*/
|
|
159
161
|
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
162
|
+
.ios body {
|
|
163
|
+
--ion-background-color: #000000;
|
|
164
|
+
--ion-background-color-rgb: 0,0,0;
|
|
165
|
+
|
|
166
|
+
--ion-text-color: #ffffff;
|
|
167
|
+
--ion-text-color-rgb: 255,255,255;
|
|
168
|
+
|
|
169
|
+
--ion-color-step-50: #0d0d0d;
|
|
170
|
+
--ion-color-step-100: #1a1a1a;
|
|
171
|
+
--ion-color-step-150: #262626;
|
|
172
|
+
--ion-color-step-200: #333333;
|
|
173
|
+
--ion-color-step-250: #404040;
|
|
174
|
+
--ion-color-step-300: #4d4d4d;
|
|
175
|
+
--ion-color-step-350: #595959;
|
|
176
|
+
--ion-color-step-400: #666666;
|
|
177
|
+
--ion-color-step-450: #737373;
|
|
178
|
+
--ion-color-step-500: #808080;
|
|
179
|
+
--ion-color-step-550: #8c8c8c;
|
|
180
|
+
--ion-color-step-600: #999999;
|
|
181
|
+
--ion-color-step-650: #a6a6a6;
|
|
182
|
+
--ion-color-step-700: #b3b3b3;
|
|
183
|
+
--ion-color-step-750: #bfbfbf;
|
|
184
|
+
--ion-color-step-800: #cccccc;
|
|
185
|
+
--ion-color-step-850: #d9d9d9;
|
|
186
|
+
--ion-color-step-900: #e6e6e6;
|
|
187
|
+
--ion-color-step-950: #f2f2f2;
|
|
188
|
+
|
|
189
|
+
--ion-toolbar-background: #0d0d0d;
|
|
190
|
+
|
|
191
|
+
--ion-item-background: #000000;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
/*
|
|
196
|
+
* Material Design Dark Theme
|
|
197
|
+
* -------------------------------------------
|
|
198
|
+
*/
|
|
199
|
+
|
|
200
|
+
.md body {
|
|
201
|
+
--ion-background-color: #121212;
|
|
202
|
+
--ion-background-color-rgb: 18,18,18;
|
|
203
|
+
|
|
204
|
+
--ion-text-color: #ffffff;
|
|
205
|
+
--ion-text-color-rgb: 255,255,255;
|
|
206
|
+
|
|
207
|
+
--ion-border-color: #222222;
|
|
208
|
+
|
|
209
|
+
--ion-color-step-50: #1e1e1e;
|
|
210
|
+
--ion-color-step-100: #2a2a2a;
|
|
211
|
+
--ion-color-step-150: #363636;
|
|
212
|
+
--ion-color-step-200: #414141;
|
|
213
|
+
--ion-color-step-250: #4d4d4d;
|
|
214
|
+
--ion-color-step-300: #595959;
|
|
215
|
+
--ion-color-step-350: #656565;
|
|
216
|
+
--ion-color-step-400: #717171;
|
|
217
|
+
--ion-color-step-450: #7d7d7d;
|
|
218
|
+
--ion-color-step-500: #898989;
|
|
219
|
+
--ion-color-step-550: #949494;
|
|
220
|
+
--ion-color-step-600: #a0a0a0;
|
|
221
|
+
--ion-color-step-650: #acacac;
|
|
222
|
+
--ion-color-step-700: #b8b8b8;
|
|
223
|
+
--ion-color-step-750: #c4c4c4;
|
|
224
|
+
--ion-color-step-800: #d0d0d0;
|
|
225
|
+
--ion-color-step-850: #dbdbdb;
|
|
226
|
+
--ion-color-step-900: #e7e7e7;
|
|
227
|
+
--ion-color-step-950: #f3f3f3;
|
|
228
|
+
|
|
229
|
+
--ion-item-background: #1e1e1e;
|
|
230
|
+
--ion-toolbar-background: #1f1f1f;
|
|
231
|
+
--ion-tab-bar-background: #1f1f1f;
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
/* ----- NEW -----*/
|
|
235
|
+
--icon-color: rgb(135, 150, 175);
|
|
236
|
+
--basic-blue: rgb(33,150,243);
|
|
237
|
+
--basic-red: #EB1E23;
|
|
238
|
+
--basic-blue-02: rgb(51, 65, 85);
|
|
239
|
+
--basic-blue-03: rgb(27,37,51);
|
|
240
|
+
|
|
241
|
+
// ***** Conversation-list: start ***** //
|
|
242
|
+
--list-bkg-color: rgb(16,23,37);
|
|
243
|
+
--list-bkg-color-selected: rgba(24, 119, 242, 0.12); //rgba(24, 119, 242, 0.04);
|
|
244
|
+
--list-bkg-color-selected-border: var(--basic-blue);
|
|
245
|
+
--item-backgroud-hover: rgba(255, 255, 255, 1);
|
|
246
|
+
--archive-button-background: rgb(16,23,37);
|
|
247
|
+
--avatar-placeholder-color: #ffffff;
|
|
248
|
+
--conversation-project-color: rgb(135, 150, 175);
|
|
249
|
+
|
|
250
|
+
--list-conversation-with-color: white;
|
|
251
|
+
--list-conversation-with-color-not-read: var(--basic-blue);
|
|
252
|
+
--list-conversation-message-color-not-read: var(--basic-blue);
|
|
253
|
+
--list-notification-point-color: var(--basic-blue);
|
|
254
|
+
--list-timestamp-color: hsl(228, 2%, 44%);
|
|
255
|
+
--last-message-color: rgb(148, 163, 184);
|
|
256
|
+
|
|
257
|
+
--contact-directory-searchbar-background: var(--basic-blue-03);
|
|
258
|
+
// ***** Conversation-list: end ***** //
|
|
259
|
+
|
|
260
|
+
// ***** Conversation-detail: start ***** //
|
|
261
|
+
--conversation-detail-background: var(--basic-blue-03);
|
|
262
|
+
--conversation-detail-header-color: white;
|
|
263
|
+
--conversation-detail-header-typing-color: var(--basic-blue);
|
|
264
|
+
--border-color-base: rgba(241, 245, 249, 0.12);
|
|
265
|
+
--date-divider-color: rgba(241, 245, 249, 0.12);
|
|
266
|
+
--date-divider-text-color: #64748b;
|
|
267
|
+
--message-date-color: #647491;
|
|
268
|
+
--textarea-background: var(--basic-blue-02);
|
|
269
|
+
--textarea-color: var(--icon-color);
|
|
270
|
+
// ***** Conversation-detail: end ***** //
|
|
271
|
+
|
|
272
|
+
// ***** Conversation-detail: INFO-MESSAGE: start ***** //
|
|
273
|
+
--info-message-background: #C9E4F6;
|
|
274
|
+
--info-message-color: var(--basic-blue-03);
|
|
275
|
+
--info-message-bounce-color: #C9E4F6;
|
|
276
|
+
// ***** Conversation-detail: INFO-MESSAGE: end ***** //
|
|
277
|
+
|
|
278
|
+
// ***** Conversation-detail: BUBBLE-MESSAGE: start ***** //
|
|
279
|
+
--bck-msg-received: rgb(100, 116, 139);
|
|
280
|
+
--col-msg-received: rgb(248, 250, 252);
|
|
281
|
+
--bck-msg-sent: rgb(59, 130, 246);
|
|
282
|
+
--col-msg-sent: rgb(239, 246, 255);
|
|
283
|
+
--return-receipt-color: rgb(59, 130, 246);
|
|
284
|
+
--button-in-msg-font-size: 15px;
|
|
285
|
+
--buttonBackgroundColor: #ffffff;
|
|
286
|
+
--buttonTextColor: #2a6ac1;
|
|
287
|
+
--buttonHoverBackgroundColor: #2a6ac1;
|
|
288
|
+
--buttonHoverTextColor: #ffffff;
|
|
289
|
+
// ***** Conversation-detail: BUBBLE-MESSAGE: end ***** //
|
|
290
|
+
|
|
291
|
+
// ***** Conversation-detail EMOJI-MART: start ***** //
|
|
292
|
+
--emojii-mart-background: var(--basic-blue-02);
|
|
293
|
+
--emoji-mart-color: var(--icon-color);
|
|
294
|
+
// ***** Conversation-detail EMOJI-MART: end ***** //
|
|
295
|
+
|
|
296
|
+
// ***** Conversation-detail: INFO-DIRECT: start ***** //
|
|
297
|
+
--info-text-color: #f0f2f7;
|
|
298
|
+
--info-direct-detail-accordion-background: var(--basic-blue-02);
|
|
299
|
+
--info-direct-color-accordion-hover: rgba(255, 255, 255, .05);
|
|
300
|
+
--info-direct-color-accordion-color-title: #fff;
|
|
301
|
+
--info-direct-color-accordion-color-subtitle: #a9afbb;
|
|
302
|
+
// ***** Conversation-detail: INFO-DIRECT: end ***** //
|
|
303
|
+
|
|
304
|
+
// ***** MODALS: start ***** //
|
|
305
|
+
--modal-header-background: rgb(59, 130, 246);
|
|
306
|
+
--modal-icon-color: rgb(239, 246, 255);
|
|
307
|
+
--modal-content-background: var(--basic-blue-03);
|
|
308
|
+
--title-focus-color: rgb(239, 246, 255);
|
|
309
|
+
--border-focus-color: rgb(59, 130, 246);
|
|
310
|
+
--button-no-background-text-color: rgb(98, 112, 139);
|
|
311
|
+
--button-background-color: rgb(59, 130, 246);
|
|
312
|
+
--button-text-color: rgb(239, 246, 255);
|
|
313
|
+
--label-color: #64748b;
|
|
314
|
+
--preview-background: var(--basic-blue-02);
|
|
315
|
+
// ***** MODALS: end ***** //
|
|
316
|
+
|
|
317
|
+
// ***** CANNED-RESPONSES: start ***** //
|
|
318
|
+
--canned-hover-background: #1877f2;
|
|
319
|
+
--canned-hover-color: rgb(135, 150, 175);
|
|
320
|
+
// ***** CANNED-RESPONSES: end ***** //
|
|
321
|
+
|
|
322
|
+
|
|
323
|
+
// ***** Navbar: start ***** //
|
|
324
|
+
--text-base-color: #ffffff;
|
|
325
|
+
--navbar-background: var(--basic-blue-03);
|
|
326
|
+
--nav-bar-heigth: 60px;
|
|
327
|
+
--simulate-btn-background: #216d4b;
|
|
328
|
+
--simulate-btn-color: #fff;
|
|
329
|
+
|
|
330
|
+
--dropdown-menu-background: var(--basic-blue-03);
|
|
331
|
+
--dropdown-menu-color: rgb(148, 163, 184);
|
|
332
|
+
--dropdown-menu-item-color: rgb(226, 232, 240);
|
|
333
|
+
--dropdown-menu-selected-background: rgba(255, 255, 255, .05);
|
|
334
|
+
--dropdown-menu-selected-color: #eee;
|
|
335
|
+
--dropdown-menu-hover-background: rgba(255, 255, 255, .05);
|
|
336
|
+
--dropdown-menu-hover-color: #fff;
|
|
337
|
+
--dropdown-divider-color: rgba(241, 245, 249, 0.12);
|
|
338
|
+
--dropdown-section-title: #eee;
|
|
339
|
+
// ***** Navbar: end ***** //
|
|
340
|
+
|
|
341
|
+
// ***** Sidebar: start ***** //
|
|
342
|
+
--sidebar-background-color: #2d323e;
|
|
343
|
+
--sidebar-header-background: rgb(59, 130, 246);
|
|
344
|
+
--sidebar-color: #fff;
|
|
345
|
+
--sidebar-icon-color: #647491;
|
|
346
|
+
--sidebar-hover-icon-color: #a9afbb;
|
|
347
|
+
--sidebar-active-icon: #fff;
|
|
348
|
+
--sidebar-user-detail-color: #a9afbb;
|
|
349
|
+
--sidebar-user-detail-profile-color: var(--basic-blue);
|
|
350
|
+
--sidebar-user-detail-select-background: var(--basic-blue-02);
|
|
351
|
+
--sidebar-user-profile-select-background: var(--basic-blue-02);
|
|
352
|
+
--sidebar-user-detail-select-hover-background: rgba(255, 255, 255, .05);
|
|
353
|
+
--sidebar-user-detail-select-color: #fff;
|
|
354
|
+
--tooltip-bckground: rgb(151,163, 182);
|
|
355
|
+
--tooltip-color: var(--basic-blue-03);
|
|
356
|
+
// ***** Sidebar: end ***** //
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// ion-title.title-large {
|
|
362
|
+
// --color: white;
|
|
363
|
+
// }
|
|
364
|
+
}
|
package/src/variables.scss
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
body {
|
|
2
2
|
/* Color palette */
|
|
3
|
-
--white: #ffffff;
|
|
4
3
|
--black: #000000;
|
|
5
|
-
--transparent: rgba(255, 255, 255, 0);
|
|
6
4
|
|
|
7
5
|
--basic-green: #0A7D41;
|
|
8
6
|
--dark-green: #005f3b;
|
|
@@ -11,45 +9,141 @@ body {
|
|
|
11
9
|
--basic-gray: #666666;
|
|
12
10
|
--dark-gray: #363636;
|
|
13
11
|
--light-blue: #C9E4F6;
|
|
14
|
-
|
|
15
|
-
--
|
|
12
|
+
|
|
13
|
+
--header-height: 60px;
|
|
14
|
+
--padding-conversation-detail: 10px;
|
|
15
|
+
--border-radius-item: 16px;
|
|
16
|
+
--border-radius-content: 16px;
|
|
17
|
+
--sidebar-width: 60px;
|
|
16
18
|
|
|
19
|
+
--bubble-blue: rgb(0, 153, 255);
|
|
17
20
|
|
|
18
|
-
|
|
21
|
+
/* ----- NEW ----- */
|
|
22
|
+
--icon-color: rgb(135, 150, 175);
|
|
23
|
+
--basic-blue: #2a69c1;
|
|
19
24
|
--basic-red: #EB1E23;
|
|
20
25
|
|
|
21
|
-
|
|
22
|
-
--
|
|
26
|
+
// ***** Conversation-list: start ***** //
|
|
27
|
+
--list-bkg-color: #f8fafc;
|
|
28
|
+
--list-bkg-color-selected: rgba(24, 119, 242, 0.12); //rgba(24, 119, 242, 0.04);
|
|
29
|
+
--list-bkg-color-selected-border: var(--basic-blue);
|
|
30
|
+
--item-backgroud-hover: #000000;
|
|
31
|
+
--archive-button-background: #fff;
|
|
32
|
+
--avatar-placeholder-color: #ffffff;
|
|
33
|
+
--conversation-project-color: #779bbb;
|
|
23
34
|
|
|
24
|
-
--
|
|
25
|
-
--
|
|
35
|
+
--list-conversation-with-color: rgba(0, 0, 0, 1);
|
|
36
|
+
--list-conversation-with-color-not-read: #3c4858;
|
|
37
|
+
--list-conversation-message-color-not-read: #3c4858;
|
|
38
|
+
--list-notification-point-color: #3c4858;
|
|
39
|
+
--list-timestamp-color: #6e6f73;
|
|
40
|
+
--last-message-color: rgb(60, 72, 88);
|
|
41
|
+
|
|
42
|
+
--contact-directory-searchbar-background: rgba(0, 0, 0, 0.05);
|
|
43
|
+
// ***** Conversation-list: end ***** //
|
|
26
44
|
|
|
45
|
+
// ***** Conversation-detail: start ***** //
|
|
46
|
+
--conversation-detail-background: #ffffff;
|
|
47
|
+
--conversation-detail-header-color: rgba(0, 0, 0, 1);
|
|
48
|
+
--conversation-detail-header-typing-color: var(--basic-blue);
|
|
49
|
+
--border-color-base: #e7e7e7;
|
|
50
|
+
--date-divider-color: #dee5ee;
|
|
51
|
+
--date-divider-text-color: #64748b;
|
|
52
|
+
--message-date-color: #647491;
|
|
53
|
+
--textarea-background: #0000000d;
|
|
54
|
+
--textarea-color: var(--icon-color);
|
|
55
|
+
// ***** Conversation-detail: end ***** //
|
|
56
|
+
|
|
57
|
+
// ***** Conversation-detail PRIVATE-MSG: start ***** //
|
|
27
58
|
--bubble-lightyellow: rgb(255, 247, 237);
|
|
28
59
|
--bubble-privateMsg: rgb(254, 214, 168);
|
|
29
60
|
--bubble-privateMsgColor: rgb(47, 57, 65);
|
|
61
|
+
// ***** Conversation-detail PRIVATE-MSG: end ***** //
|
|
30
62
|
|
|
31
|
-
|
|
32
|
-
--
|
|
33
|
-
--
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
--list-bkg-color: #f8fafc;
|
|
37
|
-
--list-bkg-color-selected: rgba(24, 119, 242, 0.12); //rgba(24, 119, 242, 0.04);
|
|
63
|
+
// ***** Conversation-detail: INFO-MESSAGE: start ***** //
|
|
64
|
+
--info-message-background: rgba(24, 119, 242, 0.1);
|
|
65
|
+
--info-message-color: var(--basic-gray);
|
|
66
|
+
--info-message-bounce-color: #C9E4F6;
|
|
67
|
+
// ***** Conversation-detail: INFO-MESSAGE: end ***** //
|
|
38
68
|
|
|
69
|
+
// ***** Conversation-detail: BUBBLE-MESSAGE: start ***** //
|
|
70
|
+
--bck-msg-received: #f0f2f7;
|
|
71
|
+
--col-msg-received: #06132b;
|
|
72
|
+
--bck-msg-sent: #2a6ac1;
|
|
73
|
+
--col-msg-sent:#ffffff;
|
|
74
|
+
--return-receipt-color: #2a6ac1;
|
|
39
75
|
--button-in-msg-font-size: 15px;
|
|
40
76
|
--buttonBackgroundColor: #ffffff;
|
|
41
77
|
--buttonTextColor: #2a6ac1;
|
|
42
78
|
--buttonHoverBackgroundColor: #2a6ac1;
|
|
43
79
|
--buttonHoverTextColor: #ffffff;
|
|
80
|
+
// ***** Conversation-detail: BUBBLE-MESSAGE: end ***** //
|
|
44
81
|
|
|
45
|
-
|
|
82
|
+
// ***** Conversation-detail EMOJI-MART: start ***** //
|
|
83
|
+
--emojii-mart-background: white;
|
|
84
|
+
--emoji-mart-color: var(--icon-color);
|
|
85
|
+
// ***** Conversation-detail EMOJI-MART: end ***** //
|
|
46
86
|
|
|
47
|
-
|
|
48
|
-
--
|
|
87
|
+
// ***** Conversation-detail: INFO-DIRECT: start ***** //
|
|
88
|
+
--info-text-color: #333333;
|
|
89
|
+
--info-direct-detail-accordion-background: #fff;
|
|
90
|
+
--info-direct-color-accordion-hover: #f5f7f9;
|
|
91
|
+
--info-direct-color-accordion-color-title: #050505;
|
|
92
|
+
--info-direct-color-accordion-color-subtitle: #65676b;
|
|
93
|
+
// ***** Conversation-detail: INFO-DIRECT: end ***** //
|
|
49
94
|
|
|
50
|
-
|
|
95
|
+
// ***** MODALS: start ***** //
|
|
96
|
+
--modal-header-background: #f8fafc;
|
|
97
|
+
--modal-icon-color: var(--icon-color);
|
|
98
|
+
--modal-content-background: #ffffff;
|
|
99
|
+
--title-focus-color: rgb(0,86,192);
|
|
100
|
+
--border-focus-color: rgb(0, 86, 192);
|
|
101
|
+
--button-no-background-text-color: rgb(98, 112, 139);
|
|
102
|
+
--button-background-color: rgb(0,86,192);
|
|
103
|
+
--button-text-color: #f1f4f7;
|
|
104
|
+
--label-color: #7695a5;
|
|
105
|
+
--preview-background: #efefef;
|
|
106
|
+
// ***** MODALS: end ***** //
|
|
107
|
+
|
|
108
|
+
// ***** CANNED-RESPONSES: start ***** //
|
|
109
|
+
--canned-hover-background: #1877f2;
|
|
110
|
+
--canned-hover-color: rgb(135, 150, 175);
|
|
111
|
+
// ***** CANNED-RESPONSES: end ***** //
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
// ***** Navbar: start ***** //
|
|
115
|
+
--text-base-color: #555;
|
|
116
|
+
--navbar-background: #ffffff;
|
|
51
117
|
--nav-bar-heigth: 60px;
|
|
118
|
+
--simulate-btn-background: #3ecf8e;
|
|
119
|
+
--simulate-btn-color: #fff;
|
|
120
|
+
|
|
121
|
+
--dropdown-menu-background: #fff;
|
|
122
|
+
--dropdown-menu-color: #333;
|
|
123
|
+
--dropdown-menu-item-color: #0f0e0e;
|
|
124
|
+
--dropdown-menu-selected-background: #4285f4;
|
|
125
|
+
--dropdown-menu-selected-color: #eee;
|
|
126
|
+
--dropdown-menu-hover-background: #3ea9f5;
|
|
127
|
+
--dropdown-menu-hover-color: #fff;
|
|
128
|
+
--dropdown-divider-color: rgba(0,0,0,.12);
|
|
129
|
+
--dropdown-section-title: rgb(118,149,165);
|
|
130
|
+
// ***** Navbar: start ***** //
|
|
52
131
|
|
|
53
|
-
|
|
132
|
+
// ***** Sidebar: start ***** //
|
|
133
|
+
--sidebar-background-color: #1e2129;
|
|
134
|
+
--sidebar-header-background: #2d323e;
|
|
135
|
+
--sidebar-color: #fff;
|
|
136
|
+
--sidebar-icon-color: #647491;
|
|
137
|
+
--sidebar-hover-icon-color: #a9afbb;
|
|
138
|
+
--sidebar-active-icon: #fff;
|
|
139
|
+
--sidebar-user-detail-color: #a9afbb;
|
|
140
|
+
--sidebar-user-detail-profile-color: #00d5ff;
|
|
141
|
+
--sidebar-user-detail-select-background: #2d323e;
|
|
142
|
+
--sidebar-user-profile-select-background: #2d323e;
|
|
143
|
+
--sidebar-user-detail-select-hover-background: rgba(255, 255, 255, .05);
|
|
144
|
+
--sidebar-user-detail-select-color: #fff;
|
|
145
|
+
--tooltip-bckground: #2d323e;
|
|
146
|
+
--tooltip-color: white;
|
|
147
|
+
// ***** Sidebar: end ***** //
|
|
54
148
|
|
|
55
149
|
}
|