@egovernments/digit-ui-health-css 0.2.81 → 0.2.83
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/dist/index.css +577 -532
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/pages/employee/campaign.scss +21 -290
- package/src/pages/employee/campaignCommon.scss +322 -0
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @egovernments/digit-ui-health-css - 0.2.
|
|
2
|
+
* @egovernments/digit-ui-health-css - 0.2.83
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2025 Jagankumar <jagan.kumar@egov.org.in>
|
|
5
5
|
*
|
|
@@ -4095,6 +4095,376 @@ header {
|
|
|
4095
4095
|
opacity: .5;
|
|
4096
4096
|
background: #c5c5c5 !important; }
|
|
4097
4097
|
|
|
4098
|
+
.camp-drawer-caption {
|
|
4099
|
+
font-size: 1rem !important;
|
|
4100
|
+
font-weight: 400 !important; }
|
|
4101
|
+
|
|
4102
|
+
.camp-app-help-tutorial-popup {
|
|
4103
|
+
bottom: 0;
|
|
4104
|
+
top: 62vh !important;
|
|
4105
|
+
width: 100%;
|
|
4106
|
+
max-width: 90% !important;
|
|
4107
|
+
overflow: hidden !important; }
|
|
4108
|
+
.camp-app-help-tutorial-popup .digit-popup-children-wrap {
|
|
4109
|
+
overflow: hidden !important; }
|
|
4110
|
+
.camp-app-help-tutorial-popup .tutorial-wrapper {
|
|
4111
|
+
-webkit-box-orient: vertical;
|
|
4112
|
+
-ms-flex-direction: column;
|
|
4113
|
+
flex-direction: column; }
|
|
4114
|
+
.camp-app-help-tutorial-popup .tutorial-row, .camp-app-help-tutorial-popup .tutorial-wrapper {
|
|
4115
|
+
display: -webkit-box;
|
|
4116
|
+
display: -ms-flexbox;
|
|
4117
|
+
display: flex;
|
|
4118
|
+
-webkit-box-direction: normal;
|
|
4119
|
+
grid-gap: 1rem;
|
|
4120
|
+
gap: 1rem; }
|
|
4121
|
+
.camp-app-help-tutorial-popup .tutorial-row {
|
|
4122
|
+
-webkit-box-orient: horizontal;
|
|
4123
|
+
-ms-flex-direction: row;
|
|
4124
|
+
flex-direction: row;
|
|
4125
|
+
overflow-x: auto;
|
|
4126
|
+
padding-bottom: 1rem; }
|
|
4127
|
+
.camp-app-help-tutorial-popup .tutorial-card {
|
|
4128
|
+
-webkit-box-flex: 0;
|
|
4129
|
+
-ms-flex: 0 0 auto;
|
|
4130
|
+
flex: 0 0 auto;
|
|
4131
|
+
width: 16rem;
|
|
4132
|
+
min-height: 10rem;
|
|
4133
|
+
background: #fff;
|
|
4134
|
+
border-radius: .75rem;
|
|
4135
|
+
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
4136
|
+
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
4137
|
+
display: -webkit-box;
|
|
4138
|
+
display: -ms-flexbox;
|
|
4139
|
+
display: flex;
|
|
4140
|
+
-webkit-box-orient: vertical;
|
|
4141
|
+
-webkit-box-direction: normal;
|
|
4142
|
+
-ms-flex-direction: column;
|
|
4143
|
+
flex-direction: column;
|
|
4144
|
+
-webkit-box-align: center;
|
|
4145
|
+
-ms-flex-align: center;
|
|
4146
|
+
align-items: center;
|
|
4147
|
+
-webkit-box-pack: center;
|
|
4148
|
+
-ms-flex-pack: center;
|
|
4149
|
+
justify-content: center;
|
|
4150
|
+
padding: 1rem;
|
|
4151
|
+
text-align: center;
|
|
4152
|
+
cursor: pointer;
|
|
4153
|
+
-webkit-transition: -webkit-transform .2s ease-in-out;
|
|
4154
|
+
transition: -webkit-transform .2s ease-in-out;
|
|
4155
|
+
transition: transform .2s ease-in-out;
|
|
4156
|
+
transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
|
|
4157
|
+
transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out; }
|
|
4158
|
+
.camp-app-help-tutorial-popup .tutorial-card:hover {
|
|
4159
|
+
-webkit-transform: translateY(-4px);
|
|
4160
|
+
transform: translateY(-4px); }
|
|
4161
|
+
.camp-app-help-tutorial-popup .tutorial-icon {
|
|
4162
|
+
background-color: #f0f0f0;
|
|
4163
|
+
border-radius: 50%;
|
|
4164
|
+
width: 3rem;
|
|
4165
|
+
height: 3rem;
|
|
4166
|
+
display: -webkit-box;
|
|
4167
|
+
display: -ms-flexbox;
|
|
4168
|
+
display: flex;
|
|
4169
|
+
-webkit-box-align: center;
|
|
4170
|
+
-ms-flex-align: center;
|
|
4171
|
+
align-items: center;
|
|
4172
|
+
-webkit-box-pack: center;
|
|
4173
|
+
-ms-flex-pack: center;
|
|
4174
|
+
justify-content: center;
|
|
4175
|
+
margin-bottom: .75rem;
|
|
4176
|
+
font-size: 1.5rem; }
|
|
4177
|
+
.camp-app-help-tutorial-popup .tutorial-title {
|
|
4178
|
+
font-size: .95rem;
|
|
4179
|
+
font-weight: 500; }
|
|
4180
|
+
|
|
4181
|
+
@-webkit-keyframes fadeIn {
|
|
4182
|
+
0% {
|
|
4183
|
+
background-color: transparent; }
|
|
4184
|
+
to {
|
|
4185
|
+
background-color: rgba(0, 0, 0, 0.3); } }
|
|
4186
|
+
|
|
4187
|
+
@keyframes fadeIn {
|
|
4188
|
+
0% {
|
|
4189
|
+
background-color: transparent; }
|
|
4190
|
+
to {
|
|
4191
|
+
background-color: rgba(0, 0, 0, 0.3); } }
|
|
4192
|
+
|
|
4193
|
+
@-webkit-keyframes fadeOut {
|
|
4194
|
+
0% {
|
|
4195
|
+
background-color: rgba(0, 0, 0, 0.3); }
|
|
4196
|
+
to {
|
|
4197
|
+
background-color: transparent; } }
|
|
4198
|
+
|
|
4199
|
+
@keyframes fadeOut {
|
|
4200
|
+
0% {
|
|
4201
|
+
background-color: rgba(0, 0, 0, 0.3); }
|
|
4202
|
+
to {
|
|
4203
|
+
background-color: transparent; } }
|
|
4204
|
+
|
|
4205
|
+
@-webkit-keyframes slideInUp {
|
|
4206
|
+
0% {
|
|
4207
|
+
-webkit-transform: translateY(100%);
|
|
4208
|
+
transform: translateY(100%);
|
|
4209
|
+
opacity: 0; }
|
|
4210
|
+
to {
|
|
4211
|
+
-webkit-transform: translateY(0);
|
|
4212
|
+
transform: translateY(0);
|
|
4213
|
+
opacity: 1; } }
|
|
4214
|
+
|
|
4215
|
+
@keyframes slideInUp {
|
|
4216
|
+
0% {
|
|
4217
|
+
-webkit-transform: translateY(100%);
|
|
4218
|
+
transform: translateY(100%);
|
|
4219
|
+
opacity: 0; }
|
|
4220
|
+
to {
|
|
4221
|
+
-webkit-transform: translateY(0);
|
|
4222
|
+
transform: translateY(0);
|
|
4223
|
+
opacity: 1; } }
|
|
4224
|
+
|
|
4225
|
+
@-webkit-keyframes slideOutDown {
|
|
4226
|
+
0% {
|
|
4227
|
+
-webkit-transform: translateY(0);
|
|
4228
|
+
transform: translateY(0);
|
|
4229
|
+
opacity: 1; }
|
|
4230
|
+
to {
|
|
4231
|
+
-webkit-transform: translateY(100%);
|
|
4232
|
+
transform: translateY(100%);
|
|
4233
|
+
opacity: 0; } }
|
|
4234
|
+
|
|
4235
|
+
@keyframes slideOutDown {
|
|
4236
|
+
0% {
|
|
4237
|
+
-webkit-transform: translateY(0);
|
|
4238
|
+
transform: translateY(0);
|
|
4239
|
+
opacity: 1; }
|
|
4240
|
+
to {
|
|
4241
|
+
-webkit-transform: translateY(100%);
|
|
4242
|
+
transform: translateY(100%);
|
|
4243
|
+
opacity: 0; } }
|
|
4244
|
+
|
|
4245
|
+
.tutorial-overlay {
|
|
4246
|
+
position: fixed;
|
|
4247
|
+
top: 0;
|
|
4248
|
+
right: 0;
|
|
4249
|
+
bottom: 0;
|
|
4250
|
+
left: 0;
|
|
4251
|
+
z-index: 2999;
|
|
4252
|
+
-webkit-animation-duration: .3s;
|
|
4253
|
+
animation-duration: .3s;
|
|
4254
|
+
-webkit-animation-fill-mode: forwards;
|
|
4255
|
+
animation-fill-mode: forwards;
|
|
4256
|
+
display: -webkit-box;
|
|
4257
|
+
display: -ms-flexbox;
|
|
4258
|
+
display: flex;
|
|
4259
|
+
-webkit-box-pack: center;
|
|
4260
|
+
-ms-flex-pack: center;
|
|
4261
|
+
justify-content: center;
|
|
4262
|
+
-webkit-box-align: end;
|
|
4263
|
+
-ms-flex-align: end;
|
|
4264
|
+
align-items: flex-end; }
|
|
4265
|
+
.tutorial-overlay.fade-in {
|
|
4266
|
+
-webkit-animation-name: fadeIn;
|
|
4267
|
+
animation-name: fadeIn; }
|
|
4268
|
+
.tutorial-overlay.fade-out {
|
|
4269
|
+
-webkit-animation-name: fadeOut;
|
|
4270
|
+
animation-name: fadeOut; }
|
|
4271
|
+
|
|
4272
|
+
.tutorial-drawer {
|
|
4273
|
+
position: fixed;
|
|
4274
|
+
bottom: 0;
|
|
4275
|
+
right: 0;
|
|
4276
|
+
width: calc(100vw - 4rem);
|
|
4277
|
+
border-radius: 1rem 1rem 0 0;
|
|
4278
|
+
background: #fff;
|
|
4279
|
+
-webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
|
4280
|
+
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
|
4281
|
+
padding: 1rem;
|
|
4282
|
+
z-index: 1000;
|
|
4283
|
+
display: -webkit-box;
|
|
4284
|
+
display: -ms-flexbox;
|
|
4285
|
+
display: flex;
|
|
4286
|
+
-webkit-box-orient: vertical;
|
|
4287
|
+
-webkit-box-direction: normal;
|
|
4288
|
+
-ms-flex-direction: column;
|
|
4289
|
+
flex-direction: column;
|
|
4290
|
+
-webkit-animation-duration: .3s;
|
|
4291
|
+
animation-duration: .3s;
|
|
4292
|
+
-webkit-animation-fill-mode: forwards;
|
|
4293
|
+
animation-fill-mode: forwards; }
|
|
4294
|
+
.tutorial-drawer.slide-in {
|
|
4295
|
+
-webkit-animation-name: slideInUp;
|
|
4296
|
+
animation-name: slideInUp; }
|
|
4297
|
+
.tutorial-drawer.slide-out {
|
|
4298
|
+
-webkit-animation-name: slideOutDown;
|
|
4299
|
+
animation-name: slideOutDown; }
|
|
4300
|
+
|
|
4301
|
+
.tutorial-header {
|
|
4302
|
+
display: -webkit-box;
|
|
4303
|
+
display: -ms-flexbox;
|
|
4304
|
+
display: flex;
|
|
4305
|
+
-webkit-box-pack: justify;
|
|
4306
|
+
-ms-flex-pack: justify;
|
|
4307
|
+
justify-content: space-between;
|
|
4308
|
+
-webkit-box-align: center;
|
|
4309
|
+
-ms-flex-align: center;
|
|
4310
|
+
align-items: center;
|
|
4311
|
+
font-weight: 600;
|
|
4312
|
+
font-size: 1.5rem;
|
|
4313
|
+
padding: .5rem;
|
|
4314
|
+
color: #0b4b66; }
|
|
4315
|
+
|
|
4316
|
+
.tutorial-close {
|
|
4317
|
+
background: none;
|
|
4318
|
+
border: none;
|
|
4319
|
+
font-size: 1.25rem;
|
|
4320
|
+
cursor: pointer;
|
|
4321
|
+
line-height: 1; }
|
|
4322
|
+
|
|
4323
|
+
.tutorial-row {
|
|
4324
|
+
-webkit-box-orient: horizontal;
|
|
4325
|
+
-ms-flex-direction: row;
|
|
4326
|
+
flex-direction: row;
|
|
4327
|
+
overflow-x: auto;
|
|
4328
|
+
grid-gap: 1rem;
|
|
4329
|
+
gap: 1rem;
|
|
4330
|
+
padding: .25rem;
|
|
4331
|
+
scroll-behavior: smooth;
|
|
4332
|
+
-webkit-overflow-scrolling: touch;
|
|
4333
|
+
scrollbar-width: thin; }
|
|
4334
|
+
|
|
4335
|
+
.tutorial-card, .tutorial-row {
|
|
4336
|
+
display: -webkit-box;
|
|
4337
|
+
display: -ms-flexbox;
|
|
4338
|
+
display: flex;
|
|
4339
|
+
-webkit-box-direction: normal; }
|
|
4340
|
+
|
|
4341
|
+
.tutorial-card {
|
|
4342
|
+
-webkit-box-flex: 0;
|
|
4343
|
+
-ms-flex: 0 0 auto;
|
|
4344
|
+
flex: 0 0 auto;
|
|
4345
|
+
width: 18rem;
|
|
4346
|
+
min-height: 10rem;
|
|
4347
|
+
background: #fff;
|
|
4348
|
+
border-radius: .5rem;
|
|
4349
|
+
-webkit-box-shadow: none;
|
|
4350
|
+
box-shadow: none;
|
|
4351
|
+
padding: 1rem;
|
|
4352
|
+
-webkit-box-orient: vertical;
|
|
4353
|
+
-ms-flex-direction: column;
|
|
4354
|
+
flex-direction: column;
|
|
4355
|
+
overflow: hidden;
|
|
4356
|
+
cursor: pointer;
|
|
4357
|
+
-webkit-transition: -webkit-transform .2s ease-in-out;
|
|
4358
|
+
transition: -webkit-transform .2s ease-in-out;
|
|
4359
|
+
transition: transform .2s ease-in-out;
|
|
4360
|
+
transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
|
|
4361
|
+
transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
|
|
4362
|
+
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14902);
|
|
4363
|
+
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14902); }
|
|
4364
|
+
.tutorial-card:hover {
|
|
4365
|
+
-webkit-transform: translateY(-4px);
|
|
4366
|
+
transform: translateY(-4px); }
|
|
4367
|
+
.tutorial-card .tutorial-card-image {
|
|
4368
|
+
height: 5rem;
|
|
4369
|
+
background-color: #f5f5f5;
|
|
4370
|
+
-webkit-box-align: center;
|
|
4371
|
+
-ms-flex-align: center;
|
|
4372
|
+
align-items: center;
|
|
4373
|
+
-webkit-box-pack: center;
|
|
4374
|
+
-ms-flex-pack: center;
|
|
4375
|
+
justify-content: center;
|
|
4376
|
+
padding: 1rem; }
|
|
4377
|
+
.tutorial-card .tutorial-card-image img {
|
|
4378
|
+
max-width: 5rem;
|
|
4379
|
+
max-height: 4rem; }
|
|
4380
|
+
.tutorial-card .tutorial-card-content {
|
|
4381
|
+
margin: 1rem 0;
|
|
4382
|
+
-webkit-box-orient: vertical;
|
|
4383
|
+
-ms-flex-direction: column;
|
|
4384
|
+
flex-direction: column;
|
|
4385
|
+
grid-gap: .25rem;
|
|
4386
|
+
gap: .25rem; }
|
|
4387
|
+
.tutorial-card .tutorial-card-content .tutorial-card-title {
|
|
4388
|
+
font-weight: 500;
|
|
4389
|
+
color: #0b4b66; }
|
|
4390
|
+
.tutorial-card .tutorial-card-content .tutorial-card-subtext {
|
|
4391
|
+
font-size: .9rem;
|
|
4392
|
+
color: #555; }
|
|
4393
|
+
.tutorial-card .tutorial-card-content .tutorial-card-link {
|
|
4394
|
+
margin-top: .5rem;
|
|
4395
|
+
font-size: .875rem;
|
|
4396
|
+
color: #c84c0e;
|
|
4397
|
+
-webkit-box-align: center;
|
|
4398
|
+
-ms-flex-align: center;
|
|
4399
|
+
align-items: center;
|
|
4400
|
+
grid-gap: .25rem;
|
|
4401
|
+
gap: .25rem; }
|
|
4402
|
+
.tutorial-card .tutorial-card-content .tutorial-card-link .arrow {
|
|
4403
|
+
font-weight: 700; }
|
|
4404
|
+
|
|
4405
|
+
.tutorial-icon {
|
|
4406
|
+
background-color: #f0f0f0;
|
|
4407
|
+
border-radius: 50%;
|
|
4408
|
+
width: 3rem;
|
|
4409
|
+
height: 3rem;
|
|
4410
|
+
display: -webkit-box;
|
|
4411
|
+
display: -ms-flexbox;
|
|
4412
|
+
display: flex;
|
|
4413
|
+
-webkit-box-align: center;
|
|
4414
|
+
-ms-flex-align: center;
|
|
4415
|
+
align-items: center;
|
|
4416
|
+
-webkit-box-pack: center;
|
|
4417
|
+
-ms-flex-pack: center;
|
|
4418
|
+
justify-content: center;
|
|
4419
|
+
margin-bottom: .75rem;
|
|
4420
|
+
font-size: 1.5rem; }
|
|
4421
|
+
@media (max-width: 480px) {
|
|
4422
|
+
.tutorial-icon {
|
|
4423
|
+
width: 2.5rem;
|
|
4424
|
+
height: 2.5rem;
|
|
4425
|
+
font-size: 1.25rem; } }
|
|
4426
|
+
|
|
4427
|
+
.tutorial-title {
|
|
4428
|
+
font-size: .95rem;
|
|
4429
|
+
font-weight: 500; }
|
|
4430
|
+
@media (max-width: 480px) {
|
|
4431
|
+
.tutorial-title {
|
|
4432
|
+
font-size: .85rem; } }
|
|
4433
|
+
|
|
4434
|
+
.camp-help-button-app-configuration-redesign {
|
|
4435
|
+
margin-right: 24rem; }
|
|
4436
|
+
|
|
4437
|
+
.boldLabel .digit-header-content {
|
|
4438
|
+
font-weight: 700; }
|
|
4439
|
+
|
|
4440
|
+
.clickable:hover {
|
|
4441
|
+
border: .063rem solid #c84c0e;
|
|
4442
|
+
-webkit-box-shadow: 0.063rem rgba(0, 0, 0, 0.16078);
|
|
4443
|
+
box-shadow: 0.063rem rgba(0, 0, 0, 0.16078); }
|
|
4444
|
+
|
|
4445
|
+
.cmn-help-info-card {
|
|
4446
|
+
margin: 1.5rem 1rem;
|
|
4447
|
+
max-width: 100%; }
|
|
4448
|
+
.cmn-help-info-card .cmn-help-info-card-elements-wrapper {
|
|
4449
|
+
margin-bottom: .5rem; }
|
|
4450
|
+
.cmn-help-info-card .cmn-help-info-card-elements-wrapper .digit-text-block-header-content .digit-text-block-header {
|
|
4451
|
+
line-height: .75rem;
|
|
4452
|
+
font-weight: 500;
|
|
4453
|
+
font-size: 1.5rem; }
|
|
4454
|
+
.cmn-help-info-card .cmn-help-info-card-elements-wrapper ol, .cmn-help-info-card .cmn-help-info-card-elements-wrapper ul {
|
|
4455
|
+
list-style: auto;
|
|
4456
|
+
font-size: 1rem;
|
|
4457
|
+
font-weight: 400;
|
|
4458
|
+
margin-top: 0;
|
|
4459
|
+
color: #787878;
|
|
4460
|
+
font-weight: .875rem; }
|
|
4461
|
+
|
|
4462
|
+
.digit-text-block-header-content {
|
|
4463
|
+
-webkit-box-orient: vertical !important;
|
|
4464
|
+
-webkit-box-direction: normal !important;
|
|
4465
|
+
-ms-flex-direction: column !important;
|
|
4466
|
+
flex-direction: column !important; }
|
|
4467
|
+
|
|
4098
4468
|
.summary-header {
|
|
4099
4469
|
font-size: 2.25rem;
|
|
4100
4470
|
margin-bottom: 1.5rem !important; }
|
|
@@ -4348,7 +4718,7 @@ header {
|
|
|
4348
4718
|
|
|
4349
4719
|
.app-preview {
|
|
4350
4720
|
width: 29rem;
|
|
4351
|
-
height:
|
|
4721
|
+
height: calc(100vh - 22rem);
|
|
4352
4722
|
overflow-y: auto;
|
|
4353
4723
|
border: 1px solid #c84c0e;
|
|
4354
4724
|
border-radius: 1rem;
|
|
@@ -4421,576 +4791,233 @@ header {
|
|
|
4421
4791
|
border: 1px solid #d6d5d4;
|
|
4422
4792
|
border-radius: .5rem; }
|
|
4423
4793
|
|
|
4424
|
-
.appConfiglabelField.selected {
|
|
4425
|
-
background-color: rgba(244, 119, 56, 0.10196);
|
|
4426
|
-
border: 1px solid #c84c0e; }
|
|
4427
|
-
|
|
4428
|
-
.appConfig-flow-stepper {
|
|
4429
|
-
margin-top: 2rem; }
|
|
4430
|
-
|
|
4431
|
-
.app-config-add-section {
|
|
4432
|
-
margin: 2rem auto 5rem; }
|
|
4433
|
-
|
|
4434
|
-
.appConfigScreenCard {
|
|
4435
|
-
margin-bottom: 2rem; }
|
|
4436
|
-
|
|
4437
|
-
.appConfiglabelField-label {
|
|
4438
|
-
width: 25rem;
|
|
4439
|
-
margin-bottom: .5rem; }
|
|
4440
|
-
|
|
4441
|
-
.app-config-actionBar {
|
|
4442
|
-
z-index: 9999; }
|
|
4443
|
-
|
|
4444
|
-
.digit-popup-wrapper.custom-pop-up-mapping {
|
|
4445
|
-
max-width: 35rem; }
|
|
4446
|
-
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer {
|
|
4447
|
-
padding-top: 0 !important; }
|
|
4448
|
-
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons {
|
|
4449
|
-
width: 100% !important;
|
|
4450
|
-
display: grid;
|
|
4451
|
-
grid-template-columns: 1fr 1fr; }
|
|
4452
|
-
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons .digit-button-primary, .digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons .digit-button-secondary {
|
|
4453
|
-
width: 100%; }
|
|
4454
|
-
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-children-wrap {
|
|
4455
|
-
padding-top: 0 !important;
|
|
4456
|
-
overflow: visible; }
|
|
4457
|
-
|
|
4458
|
-
.rdt_TableBody {
|
|
4459
|
-
border: 1px solid #ccc !important; }
|
|
4460
|
-
|
|
4461
|
-
.rdt_Table, .rdt_TableBody {
|
|
4462
|
-
width: 100% !important; }
|
|
4463
|
-
|
|
4464
|
-
.campaign-header-style {
|
|
4465
|
-
color: #0b4b66;
|
|
4466
|
-
font-size: 2.5rem; }
|
|
4467
|
-
|
|
4468
|
-
.SubHeadingClass {
|
|
4469
|
-
color: #505a5f;
|
|
4470
|
-
font-weight: 400;
|
|
4471
|
-
font-size: 1rem;
|
|
4472
|
-
margin-top: 1.5rem;
|
|
4473
|
-
margin-bottom: 1.5rem; }
|
|
4474
|
-
|
|
4475
|
-
.date-header {
|
|
4476
|
-
width: 100% !important;
|
|
4477
|
-
color: #0b4b66;
|
|
4478
|
-
font-weight: 700;
|
|
4479
|
-
font-size: 40px; }
|
|
4480
|
-
|
|
4481
|
-
.descStyle {
|
|
4482
|
-
font-family: Roboto;
|
|
4483
|
-
font-weight: 500;
|
|
4484
|
-
font-size: 24px;
|
|
4485
|
-
color: #c84c0e;
|
|
4486
|
-
text-align: center;
|
|
4487
|
-
margin-top: 1.5rem; }
|
|
4488
|
-
|
|
4489
|
-
.containerStyle {
|
|
4490
|
-
-ms-flex-wrap: wrap;
|
|
4491
|
-
flex-wrap: wrap;
|
|
4492
|
-
margin-top: 2rem;
|
|
4493
|
-
grid-gap: 2rem;
|
|
4494
|
-
gap: 2rem; }
|
|
4495
|
-
|
|
4496
|
-
.cardStyle, .containerStyle {
|
|
4497
|
-
display: -webkit-box;
|
|
4498
|
-
display: -ms-flexbox;
|
|
4499
|
-
display: flex;
|
|
4500
|
-
-webkit-box-pack: center;
|
|
4501
|
-
-ms-flex-pack: center;
|
|
4502
|
-
justify-content: center; }
|
|
4503
|
-
|
|
4504
|
-
.cardStyle {
|
|
4505
|
-
-webkit-box-align: center;
|
|
4506
|
-
-ms-flex-align: center;
|
|
4507
|
-
align-items: center;
|
|
4508
|
-
width: 400px;
|
|
4509
|
-
height: 139px;
|
|
4510
|
-
border: 1.5px solid #c84c0e;
|
|
4511
|
-
border-radius: 4px;
|
|
4512
|
-
margin: 1rem;
|
|
4513
|
-
cursor: pointer;
|
|
4514
|
-
-webkit-box-orient: vertical;
|
|
4515
|
-
-webkit-box-direction: normal;
|
|
4516
|
-
-ms-flex-direction: column;
|
|
4517
|
-
flex-direction: column;
|
|
4518
|
-
text-align: center;
|
|
4519
|
-
-webkit-transition: -webkit-box-shadow .3s ease-in-out;
|
|
4520
|
-
transition: -webkit-box-shadow .3s ease-in-out;
|
|
4521
|
-
transition: box-shadow .3s ease-in-out;
|
|
4522
|
-
transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
|
|
4523
|
-
transition: box-shadow .3s ease-in-out,-webkit-box-shadow .3s ease-in-out;
|
|
4524
|
-
background-color: #fff; }
|
|
4525
|
-
|
|
4526
|
-
.disabledCard {
|
|
4527
|
-
cursor: not-allowed;
|
|
4528
|
-
border: 1.5px solid #505a5f; }
|
|
4529
|
-
.disabledCard .descStyle {
|
|
4530
|
-
color: #505a5f; }
|
|
4531
|
-
.disabledCard svg {
|
|
4532
|
-
fill: #505a5f; }
|
|
4533
|
-
|
|
4534
|
-
.app-config-radio {
|
|
4535
|
-
display: -webkit-box;
|
|
4536
|
-
display: -ms-flexbox;
|
|
4537
|
-
display: flex;
|
|
4538
|
-
margin-top: 1rem;
|
|
4539
|
-
-webkit-box-orient: vertical;
|
|
4540
|
-
-webkit-box-direction: normal;
|
|
4541
|
-
-ms-flex-direction: column;
|
|
4542
|
-
flex-direction: column; }
|
|
4543
|
-
|
|
4544
|
-
.create-campaign-card {
|
|
4545
|
-
gap: 0;
|
|
4546
|
-
grid-gap: 0; }
|
|
4547
|
-
|
|
4548
|
-
.details-heading {
|
|
4549
|
-
-webkit-box-pack: justify;
|
|
4550
|
-
-ms-flex-pack: justify;
|
|
4551
|
-
justify-content: space-between; }
|
|
4552
|
-
|
|
4553
|
-
.details-heading, .icon-heading {
|
|
4554
|
-
display: -webkit-box;
|
|
4555
|
-
display: -ms-flexbox;
|
|
4556
|
-
display: flex; }
|
|
4557
|
-
|
|
4558
|
-
.icon-heading {
|
|
4559
|
-
grid-gap: 1rem;
|
|
4560
|
-
gap: 1rem; }
|
|
4561
|
-
|
|
4562
|
-
.detail-desc {
|
|
4563
|
-
margin-top: 1.5rem;
|
|
4564
|
-
margin-bottom: 1.5rem;
|
|
4565
|
-
color: #505a5f; }
|
|
4566
|
-
|
|
4567
|
-
.dates {
|
|
4568
|
-
margin-top: .5rem;
|
|
4569
|
-
color: #505a5f;
|
|
4570
|
-
font-family: Roboto; }
|
|
4571
|
-
|
|
4572
|
-
.dates, .detail-header, .details-desc {
|
|
4573
|
-
font-size: [object Object]; }
|
|
4574
|
-
|
|
4575
|
-
.details-desc {
|
|
4576
|
-
color: #505a5f;
|
|
4577
|
-
font-family: Roboto; }
|
|
4578
|
-
|
|
4579
|
-
.campaign-details-header {
|
|
4580
|
-
display: -webkit-box;
|
|
4581
|
-
display: -ms-flexbox;
|
|
4582
|
-
display: flex;
|
|
4583
|
-
-webkit-box-pack: justify;
|
|
4584
|
-
-ms-flex-pack: justify;
|
|
4585
|
-
justify-content: space-between; }
|
|
4586
|
-
|
|
4587
|
-
.campaign-view-tag {
|
|
4588
|
-
margin-left: 1rem; }
|
|
4589
|
-
|
|
4590
|
-
.module-card {
|
|
4591
|
-
width: auto;
|
|
4592
|
-
height: auto;
|
|
4593
|
-
border: 1px;
|
|
4594
|
-
border-radius: .75rem; }
|
|
4595
|
-
|
|
4596
|
-
.modules-container {
|
|
4597
|
-
display: grid;
|
|
4598
|
-
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
4599
|
-
grid-gap: 1.5rem;
|
|
4600
|
-
padding: 1rem; }
|
|
4601
|
-
|
|
4602
|
-
.campaign-module-button {
|
|
4603
|
-
width: auto; }
|
|
4604
|
-
|
|
4605
|
-
.date-selection {
|
|
4606
|
-
width: 100% !important; }
|
|
4607
|
-
|
|
4608
|
-
.beneficiary-selection-label {
|
|
4609
|
-
margin-bottom: 0; }
|
|
4610
|
-
|
|
4611
|
-
.selected-card {
|
|
4612
|
-
border: 2px solid #f47738;
|
|
4613
|
-
background-color: #fef1e4;
|
|
4614
|
-
position: relative; }
|
|
4615
|
-
|
|
4616
|
-
.selected-header {
|
|
4617
|
-
color: #c84c0e; }
|
|
4618
|
-
|
|
4619
|
-
.hcm-app-features .digit-toggle-toolbar {
|
|
4620
|
-
margin-top: 1rem;
|
|
4621
|
-
margin-bottom: .5rem;
|
|
4622
|
-
max-width: 90%; }
|
|
4623
|
-
.hcm-app-features .digit-toggle-toolbar > :first-child label {
|
|
4624
|
-
border-top-left-radius: .5rem;
|
|
4625
|
-
border-bottom-left-radius: .5rem; }
|
|
4626
|
-
.hcm-app-features .digit-toggle-toolbar > :last-child label {
|
|
4627
|
-
border-top-right-radius: .5rem;
|
|
4628
|
-
border-bottom-right-radius: .5rem; }
|
|
4629
|
-
|
|
4630
|
-
.digit-toggle-toolbar.app-config-tab {
|
|
4631
|
-
max-width: 90%; }
|
|
4632
|
-
.digit-toggle-toolbar.app-config-tab > :first-child label {
|
|
4633
|
-
border-top-left-radius: .5rem;
|
|
4634
|
-
border-bottom-left-radius: .5rem; }
|
|
4635
|
-
.digit-toggle-toolbar.app-config-tab > :last-child label {
|
|
4636
|
-
border-top-right-radius: .5rem;
|
|
4637
|
-
border-bottom-right-radius: .5rem; }
|
|
4794
|
+
.appConfiglabelField.selected {
|
|
4795
|
+
background-color: rgba(244, 119, 56, 0.10196);
|
|
4796
|
+
border: 1px solid #c84c0e; }
|
|
4638
4797
|
|
|
4639
|
-
.
|
|
4640
|
-
-
|
|
4641
|
-
-ms-flex-positive: 1;
|
|
4642
|
-
flex-grow: 1;
|
|
4643
|
-
margin: 0 0 1rem;
|
|
4644
|
-
font-family: Roboto;
|
|
4645
|
-
font-size: [object Object];
|
|
4646
|
-
color: #505a5f; }
|
|
4798
|
+
.appConfig-flow-stepper {
|
|
4799
|
+
margin-top: 2rem; }
|
|
4647
4800
|
|
|
4648
|
-
.
|
|
4649
|
-
|
|
4650
|
-
font-weight: 400 !important; }
|
|
4801
|
+
.app-config-add-section {
|
|
4802
|
+
margin: 2rem auto 5rem; }
|
|
4651
4803
|
|
|
4652
|
-
.
|
|
4653
|
-
bottom:
|
|
4654
|
-
top: 62vh !important;
|
|
4655
|
-
width: 100%;
|
|
4656
|
-
max-width: 90% !important;
|
|
4657
|
-
overflow: hidden !important; }
|
|
4658
|
-
.camp-app-help-tutorial-popup .digit-popup-children-wrap {
|
|
4659
|
-
overflow: hidden !important; }
|
|
4660
|
-
.camp-app-help-tutorial-popup .tutorial-wrapper {
|
|
4661
|
-
-webkit-box-orient: vertical;
|
|
4662
|
-
-ms-flex-direction: column;
|
|
4663
|
-
flex-direction: column; }
|
|
4664
|
-
.camp-app-help-tutorial-popup .tutorial-row, .camp-app-help-tutorial-popup .tutorial-wrapper {
|
|
4665
|
-
display: -webkit-box;
|
|
4666
|
-
display: -ms-flexbox;
|
|
4667
|
-
display: flex;
|
|
4668
|
-
-webkit-box-direction: normal;
|
|
4669
|
-
grid-gap: 1rem;
|
|
4670
|
-
gap: 1rem; }
|
|
4671
|
-
.camp-app-help-tutorial-popup .tutorial-row {
|
|
4672
|
-
-webkit-box-orient: horizontal;
|
|
4673
|
-
-ms-flex-direction: row;
|
|
4674
|
-
flex-direction: row;
|
|
4675
|
-
overflow-x: auto;
|
|
4676
|
-
padding-bottom: 1rem; }
|
|
4677
|
-
.camp-app-help-tutorial-popup .tutorial-card {
|
|
4678
|
-
-webkit-box-flex: 0;
|
|
4679
|
-
-ms-flex: 0 0 auto;
|
|
4680
|
-
flex: 0 0 auto;
|
|
4681
|
-
width: 16rem;
|
|
4682
|
-
min-height: 10rem;
|
|
4683
|
-
background: #fff;
|
|
4684
|
-
border-radius: .75rem;
|
|
4685
|
-
-webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
4686
|
-
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
4687
|
-
display: -webkit-box;
|
|
4688
|
-
display: -ms-flexbox;
|
|
4689
|
-
display: flex;
|
|
4690
|
-
-webkit-box-orient: vertical;
|
|
4691
|
-
-webkit-box-direction: normal;
|
|
4692
|
-
-ms-flex-direction: column;
|
|
4693
|
-
flex-direction: column;
|
|
4694
|
-
-webkit-box-align: center;
|
|
4695
|
-
-ms-flex-align: center;
|
|
4696
|
-
align-items: center;
|
|
4697
|
-
-webkit-box-pack: center;
|
|
4698
|
-
-ms-flex-pack: center;
|
|
4699
|
-
justify-content: center;
|
|
4700
|
-
padding: 1rem;
|
|
4701
|
-
text-align: center;
|
|
4702
|
-
cursor: pointer;
|
|
4703
|
-
-webkit-transition: -webkit-transform .2s ease-in-out;
|
|
4704
|
-
transition: -webkit-transform .2s ease-in-out;
|
|
4705
|
-
transition: transform .2s ease-in-out;
|
|
4706
|
-
transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
|
|
4707
|
-
transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out; }
|
|
4708
|
-
.camp-app-help-tutorial-popup .tutorial-card:hover {
|
|
4709
|
-
-webkit-transform: translateY(-4px);
|
|
4710
|
-
transform: translateY(-4px); }
|
|
4711
|
-
.camp-app-help-tutorial-popup .tutorial-icon {
|
|
4712
|
-
background-color: #f0f0f0;
|
|
4713
|
-
border-radius: 50%;
|
|
4714
|
-
width: 3rem;
|
|
4715
|
-
height: 3rem;
|
|
4716
|
-
display: -webkit-box;
|
|
4717
|
-
display: -ms-flexbox;
|
|
4718
|
-
display: flex;
|
|
4719
|
-
-webkit-box-align: center;
|
|
4720
|
-
-ms-flex-align: center;
|
|
4721
|
-
align-items: center;
|
|
4722
|
-
-webkit-box-pack: center;
|
|
4723
|
-
-ms-flex-pack: center;
|
|
4724
|
-
justify-content: center;
|
|
4725
|
-
margin-bottom: .75rem;
|
|
4726
|
-
font-size: 1.5rem; }
|
|
4727
|
-
.camp-app-help-tutorial-popup .tutorial-title {
|
|
4728
|
-
font-size: .95rem;
|
|
4729
|
-
font-weight: 500; }
|
|
4804
|
+
.appConfigScreenCard {
|
|
4805
|
+
margin-bottom: 2rem; }
|
|
4730
4806
|
|
|
4731
|
-
|
|
4732
|
-
|
|
4733
|
-
|
|
4734
|
-
to {
|
|
4735
|
-
background-color: rgba(0, 0, 0, 0.3); } }
|
|
4807
|
+
.appConfiglabelField-label {
|
|
4808
|
+
width: 25rem;
|
|
4809
|
+
margin-bottom: .5rem; }
|
|
4736
4810
|
|
|
4737
|
-
|
|
4738
|
-
|
|
4739
|
-
background-color: transparent; }
|
|
4740
|
-
to {
|
|
4741
|
-
background-color: rgba(0, 0, 0, 0.3); } }
|
|
4811
|
+
.app-config-actionBar {
|
|
4812
|
+
z-index: 9999; }
|
|
4742
4813
|
|
|
4743
|
-
|
|
4744
|
-
|
|
4745
|
-
|
|
4746
|
-
|
|
4747
|
-
|
|
4814
|
+
.digit-popup-wrapper.custom-pop-up-mapping {
|
|
4815
|
+
max-width: 35rem; }
|
|
4816
|
+
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer {
|
|
4817
|
+
padding-top: 0 !important; }
|
|
4818
|
+
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons {
|
|
4819
|
+
width: 100% !important;
|
|
4820
|
+
display: grid;
|
|
4821
|
+
grid-template-columns: 1fr 1fr; }
|
|
4822
|
+
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons .digit-button-primary, .digit-popup-wrapper.custom-pop-up-mapping .digit-popup-footer .digit-popup-footer-buttons .digit-button-secondary {
|
|
4823
|
+
width: 100%; }
|
|
4824
|
+
.digit-popup-wrapper.custom-pop-up-mapping .digit-popup-children-wrap {
|
|
4825
|
+
padding-top: 0 !important;
|
|
4826
|
+
overflow: visible; }
|
|
4748
4827
|
|
|
4749
|
-
|
|
4750
|
-
|
|
4751
|
-
background-color: rgba(0, 0, 0, 0.3); }
|
|
4752
|
-
to {
|
|
4753
|
-
background-color: transparent; } }
|
|
4828
|
+
.rdt_TableBody {
|
|
4829
|
+
border: 1px solid #ccc !important; }
|
|
4754
4830
|
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
-webkit-transform: translateY(100%);
|
|
4758
|
-
transform: translateY(100%);
|
|
4759
|
-
opacity: 0; }
|
|
4760
|
-
to {
|
|
4761
|
-
-webkit-transform: translateY(0);
|
|
4762
|
-
transform: translateY(0);
|
|
4763
|
-
opacity: 1; } }
|
|
4831
|
+
.rdt_Table, .rdt_TableBody {
|
|
4832
|
+
width: 100% !important; }
|
|
4764
4833
|
|
|
4765
|
-
|
|
4766
|
-
|
|
4767
|
-
|
|
4768
|
-
transform: translateY(100%);
|
|
4769
|
-
opacity: 0; }
|
|
4770
|
-
to {
|
|
4771
|
-
-webkit-transform: translateY(0);
|
|
4772
|
-
transform: translateY(0);
|
|
4773
|
-
opacity: 1; } }
|
|
4834
|
+
.campaign-header-style {
|
|
4835
|
+
color: #0b4b66;
|
|
4836
|
+
font-size: 2.5rem; }
|
|
4774
4837
|
|
|
4775
|
-
|
|
4776
|
-
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
4780
|
-
|
|
4781
|
-
-webkit-transform: translateY(100%);
|
|
4782
|
-
transform: translateY(100%);
|
|
4783
|
-
opacity: 0; } }
|
|
4838
|
+
.SubHeadingClass {
|
|
4839
|
+
color: #505a5f;
|
|
4840
|
+
font-weight: 400;
|
|
4841
|
+
font-size: 1rem;
|
|
4842
|
+
margin-top: 1.5rem;
|
|
4843
|
+
margin-bottom: 1.5rem; }
|
|
4784
4844
|
|
|
4785
|
-
|
|
4786
|
-
|
|
4787
|
-
|
|
4788
|
-
|
|
4789
|
-
|
|
4790
|
-
to {
|
|
4791
|
-
-webkit-transform: translateY(100%);
|
|
4792
|
-
transform: translateY(100%);
|
|
4793
|
-
opacity: 0; } }
|
|
4845
|
+
.date-header {
|
|
4846
|
+
width: 100% !important;
|
|
4847
|
+
color: #0b4b66;
|
|
4848
|
+
font-weight: 700;
|
|
4849
|
+
font-size: 40px; }
|
|
4794
4850
|
|
|
4795
|
-
.
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
4801
|
-
|
|
4802
|
-
|
|
4803
|
-
|
|
4804
|
-
-
|
|
4805
|
-
|
|
4851
|
+
.descStyle {
|
|
4852
|
+
font-family: Roboto;
|
|
4853
|
+
font-weight: 500;
|
|
4854
|
+
font-size: 24px;
|
|
4855
|
+
color: #c84c0e;
|
|
4856
|
+
text-align: center;
|
|
4857
|
+
margin-top: 1.5rem; }
|
|
4858
|
+
|
|
4859
|
+
.containerStyle {
|
|
4860
|
+
-ms-flex-wrap: wrap;
|
|
4861
|
+
flex-wrap: wrap;
|
|
4862
|
+
margin-top: 2rem;
|
|
4863
|
+
grid-gap: 2rem;
|
|
4864
|
+
gap: 2rem; }
|
|
4865
|
+
|
|
4866
|
+
.cardStyle, .containerStyle {
|
|
4806
4867
|
display: -webkit-box;
|
|
4807
4868
|
display: -ms-flexbox;
|
|
4808
4869
|
display: flex;
|
|
4809
4870
|
-webkit-box-pack: center;
|
|
4810
4871
|
-ms-flex-pack: center;
|
|
4811
|
-
justify-content: center;
|
|
4812
|
-
|
|
4813
|
-
|
|
4814
|
-
align
|
|
4815
|
-
|
|
4816
|
-
|
|
4817
|
-
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
|
|
4872
|
+
justify-content: center; }
|
|
4873
|
+
|
|
4874
|
+
.cardStyle {
|
|
4875
|
+
-webkit-box-align: center;
|
|
4876
|
+
-ms-flex-align: center;
|
|
4877
|
+
align-items: center;
|
|
4878
|
+
width: 400px;
|
|
4879
|
+
height: 139px;
|
|
4880
|
+
border: 1.5px solid #c84c0e;
|
|
4881
|
+
border-radius: 4px;
|
|
4882
|
+
margin: 1rem;
|
|
4883
|
+
cursor: pointer;
|
|
4884
|
+
-webkit-box-orient: vertical;
|
|
4885
|
+
-webkit-box-direction: normal;
|
|
4886
|
+
-ms-flex-direction: column;
|
|
4887
|
+
flex-direction: column;
|
|
4888
|
+
text-align: center;
|
|
4889
|
+
-webkit-transition: -webkit-box-shadow .3s ease-in-out;
|
|
4890
|
+
transition: -webkit-box-shadow .3s ease-in-out;
|
|
4891
|
+
transition: box-shadow .3s ease-in-out;
|
|
4892
|
+
transition: box-shadow .3s ease-in-out, -webkit-box-shadow .3s ease-in-out;
|
|
4893
|
+
transition: box-shadow .3s ease-in-out,-webkit-box-shadow .3s ease-in-out;
|
|
4894
|
+
background-color: #fff; }
|
|
4895
|
+
|
|
4896
|
+
.disabledCard {
|
|
4897
|
+
cursor: not-allowed;
|
|
4898
|
+
border: 1.5px solid #505a5f; }
|
|
4899
|
+
.disabledCard .descStyle {
|
|
4900
|
+
color: #505a5f; }
|
|
4901
|
+
.disabledCard svg {
|
|
4902
|
+
fill: #505a5f; }
|
|
4821
4903
|
|
|
4822
|
-
.
|
|
4823
|
-
position: fixed;
|
|
4824
|
-
bottom: 0;
|
|
4825
|
-
right: 0;
|
|
4826
|
-
width: calc(100vw - 4rem);
|
|
4827
|
-
border-radius: 1rem 1rem 0 0;
|
|
4828
|
-
background: #fff;
|
|
4829
|
-
-webkit-box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
|
4830
|
-
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
|
|
4831
|
-
padding: 1rem;
|
|
4832
|
-
z-index: 1000;
|
|
4904
|
+
.app-config-radio {
|
|
4833
4905
|
display: -webkit-box;
|
|
4834
4906
|
display: -ms-flexbox;
|
|
4835
4907
|
display: flex;
|
|
4908
|
+
margin-top: 1rem;
|
|
4836
4909
|
-webkit-box-orient: vertical;
|
|
4837
4910
|
-webkit-box-direction: normal;
|
|
4838
4911
|
-ms-flex-direction: column;
|
|
4839
|
-
flex-direction: column;
|
|
4840
|
-
-webkit-animation-duration: .3s;
|
|
4841
|
-
animation-duration: .3s;
|
|
4842
|
-
-webkit-animation-fill-mode: forwards;
|
|
4843
|
-
animation-fill-mode: forwards; }
|
|
4844
|
-
.tutorial-drawer.slide-in {
|
|
4845
|
-
-webkit-animation-name: slideInUp;
|
|
4846
|
-
animation-name: slideInUp; }
|
|
4847
|
-
.tutorial-drawer.slide-out {
|
|
4848
|
-
-webkit-animation-name: slideOutDown;
|
|
4849
|
-
animation-name: slideOutDown; }
|
|
4912
|
+
flex-direction: column; }
|
|
4850
4913
|
|
|
4851
|
-
.
|
|
4852
|
-
|
|
4853
|
-
|
|
4854
|
-
|
|
4914
|
+
.create-campaign-card {
|
|
4915
|
+
gap: 0;
|
|
4916
|
+
grid-gap: 0; }
|
|
4917
|
+
|
|
4918
|
+
.details-heading {
|
|
4855
4919
|
-webkit-box-pack: justify;
|
|
4856
4920
|
-ms-flex-pack: justify;
|
|
4857
|
-
justify-content: space-between;
|
|
4858
|
-
-webkit-box-align: center;
|
|
4859
|
-
-ms-flex-align: center;
|
|
4860
|
-
align-items: center;
|
|
4861
|
-
font-weight: 600;
|
|
4862
|
-
font-size: 1.5rem;
|
|
4863
|
-
padding: .5rem;
|
|
4864
|
-
color: #0b4b66; }
|
|
4921
|
+
justify-content: space-between; }
|
|
4865
4922
|
|
|
4866
|
-
.
|
|
4867
|
-
|
|
4868
|
-
|
|
4869
|
-
|
|
4870
|
-
cursor: pointer;
|
|
4871
|
-
line-height: 1; }
|
|
4923
|
+
.details-heading, .icon-heading {
|
|
4924
|
+
display: -webkit-box;
|
|
4925
|
+
display: -ms-flexbox;
|
|
4926
|
+
display: flex; }
|
|
4872
4927
|
|
|
4873
|
-
.
|
|
4874
|
-
-webkit-box-orient: horizontal;
|
|
4875
|
-
-ms-flex-direction: row;
|
|
4876
|
-
flex-direction: row;
|
|
4877
|
-
overflow-x: auto;
|
|
4928
|
+
.icon-heading {
|
|
4878
4929
|
grid-gap: 1rem;
|
|
4879
|
-
gap: 1rem;
|
|
4880
|
-
padding: .25rem;
|
|
4881
|
-
scroll-behavior: smooth;
|
|
4882
|
-
-webkit-overflow-scrolling: touch;
|
|
4883
|
-
scrollbar-width: thin; }
|
|
4930
|
+
gap: 1rem; }
|
|
4884
4931
|
|
|
4885
|
-
.
|
|
4886
|
-
|
|
4887
|
-
|
|
4888
|
-
|
|
4889
|
-
-webkit-box-direction: normal; }
|
|
4932
|
+
.detail-desc {
|
|
4933
|
+
margin-top: 1.5rem;
|
|
4934
|
+
margin-bottom: 1.5rem;
|
|
4935
|
+
color: #505a5f; }
|
|
4890
4936
|
|
|
4891
|
-
.
|
|
4892
|
-
-
|
|
4893
|
-
|
|
4894
|
-
|
|
4895
|
-
width: 18rem;
|
|
4896
|
-
min-height: 10rem;
|
|
4897
|
-
background: #fff;
|
|
4898
|
-
border-radius: .5rem;
|
|
4899
|
-
-webkit-box-shadow: none;
|
|
4900
|
-
box-shadow: none;
|
|
4901
|
-
padding: 1rem;
|
|
4902
|
-
-webkit-box-orient: vertical;
|
|
4903
|
-
-ms-flex-direction: column;
|
|
4904
|
-
flex-direction: column;
|
|
4905
|
-
overflow: hidden;
|
|
4906
|
-
cursor: pointer;
|
|
4907
|
-
-webkit-transition: -webkit-transform .2s ease-in-out;
|
|
4908
|
-
transition: -webkit-transform .2s ease-in-out;
|
|
4909
|
-
transition: transform .2s ease-in-out;
|
|
4910
|
-
transition: transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
|
|
4911
|
-
transition: transform .2s ease-in-out,-webkit-transform .2s ease-in-out;
|
|
4912
|
-
-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14902);
|
|
4913
|
-
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.14902); }
|
|
4914
|
-
.tutorial-card:hover {
|
|
4915
|
-
-webkit-transform: translateY(-4px);
|
|
4916
|
-
transform: translateY(-4px); }
|
|
4917
|
-
.tutorial-card .tutorial-card-image {
|
|
4918
|
-
height: 5rem;
|
|
4919
|
-
background-color: #f5f5f5;
|
|
4920
|
-
-webkit-box-align: center;
|
|
4921
|
-
-ms-flex-align: center;
|
|
4922
|
-
align-items: center;
|
|
4923
|
-
-webkit-box-pack: center;
|
|
4924
|
-
-ms-flex-pack: center;
|
|
4925
|
-
justify-content: center;
|
|
4926
|
-
padding: 1rem; }
|
|
4927
|
-
.tutorial-card .tutorial-card-image img {
|
|
4928
|
-
max-width: 5rem;
|
|
4929
|
-
max-height: 4rem; }
|
|
4930
|
-
.tutorial-card .tutorial-card-content {
|
|
4931
|
-
margin: 1rem 0;
|
|
4932
|
-
-webkit-box-orient: vertical;
|
|
4933
|
-
-ms-flex-direction: column;
|
|
4934
|
-
flex-direction: column;
|
|
4935
|
-
grid-gap: .25rem;
|
|
4936
|
-
gap: .25rem; }
|
|
4937
|
-
.tutorial-card .tutorial-card-content .tutorial-card-title {
|
|
4938
|
-
font-weight: 500;
|
|
4939
|
-
color: #0b4b66; }
|
|
4940
|
-
.tutorial-card .tutorial-card-content .tutorial-card-subtext {
|
|
4941
|
-
font-size: .9rem;
|
|
4942
|
-
color: #555; }
|
|
4943
|
-
.tutorial-card .tutorial-card-content .tutorial-card-link {
|
|
4944
|
-
margin-top: .5rem;
|
|
4945
|
-
font-size: .875rem;
|
|
4946
|
-
color: #c84c0e;
|
|
4947
|
-
-webkit-box-align: center;
|
|
4948
|
-
-ms-flex-align: center;
|
|
4949
|
-
align-items: center;
|
|
4950
|
-
grid-gap: .25rem;
|
|
4951
|
-
gap: .25rem; }
|
|
4952
|
-
.tutorial-card .tutorial-card-content .tutorial-card-link .arrow {
|
|
4953
|
-
font-weight: 700; }
|
|
4937
|
+
.dates {
|
|
4938
|
+
margin-top: .5rem;
|
|
4939
|
+
color: #505a5f;
|
|
4940
|
+
font-family: Roboto; }
|
|
4954
4941
|
|
|
4955
|
-
.
|
|
4956
|
-
|
|
4957
|
-
|
|
4958
|
-
|
|
4959
|
-
|
|
4942
|
+
.dates, .detail-header {
|
|
4943
|
+
font-size: [object Object]; }
|
|
4944
|
+
|
|
4945
|
+
.detail-header {
|
|
4946
|
+
color: #0b4b66; }
|
|
4947
|
+
|
|
4948
|
+
.details-desc {
|
|
4949
|
+
color: #505a5f;
|
|
4950
|
+
font-family: Roboto;
|
|
4951
|
+
font-size: [object Object]; }
|
|
4952
|
+
|
|
4953
|
+
.campaign-details-header {
|
|
4960
4954
|
display: -webkit-box;
|
|
4961
4955
|
display: -ms-flexbox;
|
|
4962
4956
|
display: flex;
|
|
4963
|
-
-webkit-box-
|
|
4964
|
-
-ms-flex-
|
|
4965
|
-
|
|
4966
|
-
-webkit-box-pack: center;
|
|
4967
|
-
-ms-flex-pack: center;
|
|
4968
|
-
justify-content: center;
|
|
4969
|
-
margin-bottom: .75rem;
|
|
4970
|
-
font-size: 1.5rem; }
|
|
4971
|
-
@media (max-width: 480px) {
|
|
4972
|
-
.tutorial-icon {
|
|
4973
|
-
width: 2.5rem;
|
|
4974
|
-
height: 2.5rem;
|
|
4975
|
-
font-size: 1.25rem; } }
|
|
4957
|
+
-webkit-box-pack: justify;
|
|
4958
|
+
-ms-flex-pack: justify;
|
|
4959
|
+
justify-content: space-between; }
|
|
4976
4960
|
|
|
4977
|
-
.
|
|
4978
|
-
|
|
4979
|
-
font-weight: 500; }
|
|
4980
|
-
@media (max-width: 480px) {
|
|
4981
|
-
.tutorial-title {
|
|
4982
|
-
font-size: .85rem; } }
|
|
4961
|
+
.campaign-view-tag {
|
|
4962
|
+
margin-left: 1rem; }
|
|
4983
4963
|
|
|
4984
|
-
.
|
|
4985
|
-
|
|
4964
|
+
.module-card {
|
|
4965
|
+
width: auto;
|
|
4966
|
+
height: auto;
|
|
4967
|
+
border: 1px;
|
|
4968
|
+
border-radius: .75rem; }
|
|
4986
4969
|
|
|
4987
|
-
.
|
|
4988
|
-
|
|
4970
|
+
.modules-container {
|
|
4971
|
+
display: grid;
|
|
4972
|
+
grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
|
|
4973
|
+
grid-gap: 1.5rem;
|
|
4974
|
+
padding: 1rem; }
|
|
4989
4975
|
|
|
4990
|
-
.
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4976
|
+
.campaign-module-button {
|
|
4977
|
+
width: auto; }
|
|
4978
|
+
|
|
4979
|
+
.date-selection {
|
|
4980
|
+
width: 100% !important; }
|
|
4981
|
+
|
|
4982
|
+
.beneficiary-selection-label {
|
|
4983
|
+
margin-bottom: 0; }
|
|
4984
|
+
|
|
4985
|
+
.selected-card {
|
|
4986
|
+
border: 2px solid #f47738;
|
|
4987
|
+
background-color: #fef1e4;
|
|
4988
|
+
position: relative; }
|
|
4989
|
+
|
|
4990
|
+
.selected-header {
|
|
4991
|
+
color: #c84c0e; }
|
|
4992
|
+
|
|
4993
|
+
.hcm-app-features .digit-toggle-toolbar {
|
|
4994
|
+
margin-top: 1rem;
|
|
4995
|
+
margin-bottom: .5rem;
|
|
4996
|
+
max-width: 90%; }
|
|
4997
|
+
.hcm-app-features .digit-toggle-toolbar > :first-child label {
|
|
4998
|
+
border-top-left-radius: .5rem;
|
|
4999
|
+
border-bottom-left-radius: .5rem; }
|
|
5000
|
+
.hcm-app-features .digit-toggle-toolbar > :last-child label {
|
|
5001
|
+
border-top-right-radius: .5rem;
|
|
5002
|
+
border-bottom-right-radius: .5rem; }
|
|
5003
|
+
|
|
5004
|
+
.digit-toggle-toolbar.app-config-tab {
|
|
5005
|
+
max-width: 90%; }
|
|
5006
|
+
.digit-toggle-toolbar.app-config-tab > :first-child label {
|
|
5007
|
+
border-top-left-radius: .5rem;
|
|
5008
|
+
border-bottom-left-radius: .5rem; }
|
|
5009
|
+
.digit-toggle-toolbar.app-config-tab > :last-child label {
|
|
5010
|
+
border-top-right-radius: .5rem;
|
|
5011
|
+
border-bottom-right-radius: .5rem; }
|
|
5012
|
+
|
|
5013
|
+
.module-description {
|
|
5014
|
+
-webkit-box-flex: 1;
|
|
5015
|
+
-ms-flex-positive: 1;
|
|
5016
|
+
flex-grow: 1;
|
|
5017
|
+
margin: 0 0 1rem;
|
|
5018
|
+
font-family: Roboto;
|
|
5019
|
+
font-size: [object Object];
|
|
5020
|
+
color: #505a5f; }
|
|
4994
5021
|
|
|
4995
5022
|
.name-container-popUp {
|
|
4996
5023
|
margin-right: 0; }
|
|
@@ -5018,6 +5045,24 @@ header {
|
|
|
5018
5045
|
font-weight: 700;
|
|
5019
5046
|
text-wrap: nowrap; }
|
|
5020
5047
|
|
|
5048
|
+
.app-config-version-tags {
|
|
5049
|
+
display: -webkit-box;
|
|
5050
|
+
display: -ms-flexbox;
|
|
5051
|
+
display: flex;
|
|
5052
|
+
-webkit-box-align: end;
|
|
5053
|
+
-ms-flex-align: end;
|
|
5054
|
+
align-items: flex-end;
|
|
5055
|
+
margin-right: 24rem;
|
|
5056
|
+
-webkit-box-pack: center;
|
|
5057
|
+
-ms-flex-pack: center;
|
|
5058
|
+
justify-content: center;
|
|
5059
|
+
margin-top: .75rem;
|
|
5060
|
+
margin-bottom: .5rem; }
|
|
5061
|
+
.app-config-version-tags .app-config-placeholder-version-tag {
|
|
5062
|
+
width: 30%; }
|
|
5063
|
+
.app-config-version-tags .app-config-version-tag {
|
|
5064
|
+
width: 40%; }
|
|
5065
|
+
|
|
5021
5066
|
.formula-label-field {
|
|
5022
5067
|
display: -webkit-box;
|
|
5023
5068
|
display: -ms-flexbox;
|