@wizishop/angular-components 15.1.137 → 15.1.139
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/angular-components.scss +1651 -1653
- package/esm2020/lib/components/alert-popup/alert-popup.component.mjs +6 -37
- package/esm2020/lib/components/color-picker/color-picker.component.mjs +17 -4
- package/esm2020/lib/components/menu-tile/menu-tile.component.mjs +3 -3
- package/fesm2015/wizishop-angular-components.mjs +21 -41
- package/fesm2015/wizishop-angular-components.mjs.map +1 -1
- package/fesm2020/wizishop-angular-components.mjs +21 -40
- package/fesm2020/wizishop-angular-components.mjs.map +1 -1
- package/lib/components/alert-popup/alert-popup.component.d.ts +3 -9
- package/package.json +1 -1
- package/wizishop-angular-components-15.1.139.tgz +0 -0
- package/wizishop-angular-components-15.1.137.tgz +0 -0
package/angular-components.scss
CHANGED
|
@@ -505,8 +505,6 @@ $wac-tab-colunm-blue: #3ba6ec!default;.zindexToggle {
|
|
|
505
505
|
width: auto;
|
|
506
506
|
box-shadow: 0 0 20px rgba(50, 50, 50, 0.1);
|
|
507
507
|
font-size: 14px;
|
|
508
|
-
visibility: hidden;
|
|
509
|
-
opacity: 0!important;
|
|
510
508
|
|
|
511
509
|
&.with-icon {
|
|
512
510
|
.alert--message {
|
|
@@ -517,12 +515,6 @@ $wac-tab-colunm-blue: #3ba6ec!default;.zindexToggle {
|
|
|
517
515
|
}
|
|
518
516
|
}
|
|
519
517
|
|
|
520
|
-
&.is-loaded {
|
|
521
|
-
visibility: visible;
|
|
522
|
-
opacity: 1!important;
|
|
523
|
-
transition: opacity .3s ease .3s, visibility 0s!important;
|
|
524
|
-
}
|
|
525
|
-
|
|
526
518
|
.icon + .wac-alert-popup__close + .wac-alert-popup__text {
|
|
527
519
|
width: auto;
|
|
528
520
|
}
|
|
@@ -1242,1115 +1234,1141 @@ wac-block {
|
|
|
1242
1234
|
}
|
|
1243
1235
|
}
|
|
1244
1236
|
}
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
position: relative;
|
|
1250
|
-
padding: 11px 19px;
|
|
1251
|
-
border-style: solid;
|
|
1252
|
-
border-width: 1px;
|
|
1253
|
-
border-radius: 3px;
|
|
1254
|
-
box-sizing: border-box;
|
|
1255
|
-
|
|
1256
|
-
* {
|
|
1257
|
-
box-sizing: border-box;
|
|
1258
|
-
}
|
|
1259
|
-
|
|
1260
|
-
&.width-auto {
|
|
1261
|
-
width: fit-content;
|
|
1262
|
-
}
|
|
1263
|
-
|
|
1264
|
-
&.white-space-no-wrap {
|
|
1265
|
-
white-space: nowrap;
|
|
1266
|
-
}
|
|
1267
|
-
|
|
1268
|
-
&.no-padding {
|
|
1269
|
-
padding-left: 0!important;
|
|
1270
|
-
padding-right: 0!important;
|
|
1271
|
-
}
|
|
1272
|
-
|
|
1273
|
-
&.is-green.opacity {
|
|
1274
|
-
background-color: $wac-tag-success-light;
|
|
1275
|
-
border-color: transparent!important;
|
|
1276
|
-
transition: .3s;
|
|
1277
|
-
i {
|
|
1278
|
-
color: $wac-tag-success;
|
|
1279
|
-
}
|
|
1280
|
-
&:hover, &:focus {
|
|
1281
|
-
background-color: $wac-tag-success;
|
|
1282
|
-
i {
|
|
1283
|
-
color: $wac-white;
|
|
1284
|
-
}
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
&.is-evolup.opacity {
|
|
1288
|
-
background-color: $wac-evolup-green-opacity;
|
|
1289
|
-
border-color: transparent!important;
|
|
1290
|
-
transition: .3s;
|
|
1291
|
-
i {
|
|
1292
|
-
color: $wac-evolup-green;
|
|
1293
|
-
}
|
|
1294
|
-
&:hover, &:focus {
|
|
1295
|
-
background-color: $wac-evolup-green;
|
|
1296
|
-
i {
|
|
1297
|
-
color: $wac-white;
|
|
1298
|
-
}
|
|
1237
|
+
wac-calendar {
|
|
1238
|
+
&.ng-touched.ng-invalid {
|
|
1239
|
+
.wac-calendar__wrapper__select, .wac-calendar__wrapper__editInPlace, .wac-calendar__wrapper__select {
|
|
1240
|
+
border-color: $wac-form-control-touched-and-invalid-border;
|
|
1299
1241
|
}
|
|
1300
1242
|
}
|
|
1243
|
+
}
|
|
1301
1244
|
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
color: $wac-wizishop-blue-button;
|
|
1314
|
-
}
|
|
1315
|
-
&:hover, &:focus {
|
|
1316
|
-
background-color: $wac-wizishop-blue-button;
|
|
1317
|
-
i {
|
|
1318
|
-
color: $wac-white;
|
|
1245
|
+
.wac-calendar {
|
|
1246
|
+
position: relative;
|
|
1247
|
+
margin: 0 0 20px;
|
|
1248
|
+
width: 268px;
|
|
1249
|
+
&--open {
|
|
1250
|
+
z-index: 9;
|
|
1251
|
+
.wac-calendar {
|
|
1252
|
+
&__absolute {
|
|
1253
|
+
visibility: visible;
|
|
1254
|
+
opacity: 1;
|
|
1255
|
+
transition: 0.3s ease opacity 0.1s, 0s visibility linear 0s;
|
|
1319
1256
|
}
|
|
1320
1257
|
}
|
|
1321
|
-
|
|
1322
|
-
.wac-button__tooltips {
|
|
1323
|
-
background-color: $wac-wizishop-blue-button!important;
|
|
1324
|
-
color: $white!important;
|
|
1325
|
-
}
|
|
1326
1258
|
}
|
|
1327
|
-
|
|
1328
|
-
&.animationText {
|
|
1329
|
-
width: rem(40);
|
|
1330
|
-
height: rem(40);
|
|
1331
|
-
padding: 0!important;
|
|
1332
|
-
border-radius: 3px;
|
|
1333
|
-
transition: 0s linear .3s!important;
|
|
1259
|
+
&--edit {
|
|
1334
1260
|
display: flex;
|
|
1335
|
-
|
|
1261
|
+
flex-direction: column;
|
|
1262
|
+
justify-content: flex-start;
|
|
1336
1263
|
align-items: center;
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
border-radius: 3px 0 0 3px;
|
|
1343
|
-
&.animation-right {
|
|
1344
|
-
border-radius: 0 3px 3px 0;
|
|
1345
|
-
}
|
|
1346
|
-
.wac-button__animation {
|
|
1347
|
-
transition: .3s ease!important;
|
|
1264
|
+
align-content: center;
|
|
1265
|
+
& > * {
|
|
1266
|
+
display: inline-block;
|
|
1267
|
+
&:nth-child(2) {
|
|
1268
|
+
margin: 0 10px;
|
|
1348
1269
|
}
|
|
1349
1270
|
}
|
|
1350
1271
|
}
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
&__wrapper {
|
|
1357
|
-
position: relative;
|
|
1358
|
-
z-index: 2;
|
|
1359
|
-
color: $wac-white;
|
|
1360
|
-
font-size: 14px;
|
|
1361
|
-
line-height: 16px;
|
|
1362
|
-
font-weight: 500;
|
|
1363
|
-
|
|
1364
|
-
i {
|
|
1365
|
-
margin-right: 1.4px;
|
|
1272
|
+
&--no-margin {
|
|
1273
|
+
margin: 0;
|
|
1274
|
+
.wac-calendar__autoHide {
|
|
1275
|
+
margin: 0;
|
|
1366
1276
|
}
|
|
1367
1277
|
}
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
align-items: center;
|
|
1372
|
-
gap: 5px;
|
|
1373
|
-
}
|
|
1374
|
-
|
|
1375
|
-
&__coin {
|
|
1376
|
-
margin: 0 0 0 rem(15);
|
|
1377
|
-
display: flex;
|
|
1378
|
-
align-items: center;
|
|
1379
|
-
justify-content: center;
|
|
1380
|
-
border-radius: 40px;
|
|
1381
|
-
padding: 4px 6px;
|
|
1382
|
-
background-color: #F8EDD2;
|
|
1383
|
-
float: right;
|
|
1384
|
-
z-index: 2;
|
|
1385
|
-
position: relative;
|
|
1386
|
-
i {
|
|
1387
|
-
font-size: rem(18);
|
|
1388
|
-
color: #FDCD52;
|
|
1389
|
-
margin: 0 5px 0 0;
|
|
1278
|
+
&--onlyDate {
|
|
1279
|
+
.wac-calendar__wrapper__input__time, .wac-calendar__wrapper__input__date:after {
|
|
1280
|
+
display: none;
|
|
1390
1281
|
}
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
color: #E0B146;
|
|
1395
|
-
font-weight: 600;
|
|
1396
|
-
letter-spacing: 0;
|
|
1282
|
+
.wac-calendar__wrapper__input {
|
|
1283
|
+
max-width: 160px;
|
|
1284
|
+
min-width: 160px;
|
|
1397
1285
|
}
|
|
1398
1286
|
}
|
|
1287
|
+
&__label {
|
|
1288
|
+
font-size: rem(14) !important;
|
|
1289
|
+
line-height: rem(16) !important;
|
|
1290
|
+
margin: 0 0 10px !important;
|
|
1291
|
+
color: $wac-color-text-grey !important;
|
|
1292
|
+
cursor: pointer;
|
|
1399
1293
|
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
max-width: 0;
|
|
1403
|
-
height: 40px;
|
|
1404
|
-
position: absolute;
|
|
1405
|
-
top: 0;
|
|
1406
|
-
left: 95%;
|
|
1407
|
-
z-index: 2;
|
|
1408
|
-
transition: .3s ease!important;
|
|
1409
|
-
.animation-right & {
|
|
1410
|
-
left: auto;
|
|
1411
|
-
right: 94%;
|
|
1412
|
-
> span {
|
|
1413
|
-
border-radius: 3px 0 0 3px;
|
|
1414
|
-
padding: 0 0 0 20px;
|
|
1415
|
-
}
|
|
1416
|
-
}
|
|
1417
|
-
&__text {
|
|
1418
|
-
position: absolute;
|
|
1419
|
-
top: 0;
|
|
1420
|
-
left: 0;
|
|
1421
|
-
width: auto;
|
|
1422
|
-
white-space: nowrap;
|
|
1423
|
-
height: rem(40);
|
|
1424
|
-
line-height: rem(40);
|
|
1425
|
-
color: $wac-white !important;
|
|
1426
|
-
border-radius: 0 3px 3px 0;
|
|
1427
|
-
padding: 0 20px 0 0;
|
|
1428
|
-
font-size: rem(14);
|
|
1429
|
-
.is-success & {
|
|
1430
|
-
background-color: $wac-green-color;
|
|
1431
|
-
}
|
|
1432
|
-
.is-danger & {
|
|
1433
|
-
background-color: $wac-primary-button;
|
|
1434
|
-
}
|
|
1294
|
+
&.bold {
|
|
1295
|
+
font-weight: 500;
|
|
1435
1296
|
}
|
|
1436
1297
|
}
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
transform: translateX(-50%) translateY(-1px);
|
|
1441
|
-
}
|
|
1442
|
-
|
|
1443
|
-
&.deletePosition-right .wac-button__confirmDelete {
|
|
1444
|
-
right: 0;
|
|
1445
|
-
transform: translateY(-1px);
|
|
1446
|
-
}
|
|
1447
|
-
|
|
1448
|
-
&.deletePosition-left .wac-button__confirmDelete {
|
|
1449
|
-
left: 0;
|
|
1450
|
-
transform: translateY(-1px);
|
|
1298
|
+
&__autoHide {
|
|
1299
|
+
max-width: 300px;
|
|
1300
|
+
position: relative;
|
|
1451
1301
|
}
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
position: absolute;
|
|
1478
|
-
top: 0;
|
|
1479
|
-
left: 50%;
|
|
1480
|
-
transform: translateX(-50%);
|
|
1481
|
-
width: auto;
|
|
1482
|
-
white-space: nowrap;
|
|
1483
|
-
height: rem(40);
|
|
1484
|
-
line-height: rem(40);
|
|
1485
|
-
color: $wac-white !important;
|
|
1486
|
-
padding: 0 20px;
|
|
1487
|
-
font-size: rem(14);
|
|
1488
|
-
opacity: 0;
|
|
1489
|
-
transition: .3s ease;
|
|
1490
|
-
}
|
|
1491
|
-
}
|
|
1492
|
-
|
|
1493
|
-
&.step-delete {
|
|
1494
|
-
i {
|
|
1495
|
-
transition: .3s ease!important;
|
|
1496
|
-
opacity: 0!important;
|
|
1497
|
-
}
|
|
1498
|
-
.wac-button__confirmDelete {
|
|
1499
|
-
transition: .6s ease .3s!important;
|
|
1500
|
-
&__text {
|
|
1501
|
-
opacity: 1;
|
|
1502
|
-
transition: .3s ease .9s;
|
|
1503
|
-
}
|
|
1504
|
-
}
|
|
1505
|
-
}
|
|
1506
|
-
|
|
1507
|
-
&.alone {
|
|
1508
|
-
padding: 7px 14.6px;
|
|
1509
|
-
|
|
1510
|
-
.wac-button__wrapper i {
|
|
1511
|
-
margin-right: 0;
|
|
1512
|
-
}
|
|
1513
|
-
}
|
|
1514
|
-
|
|
1515
|
-
&.is-outlined {
|
|
1516
|
-
&:hover,
|
|
1517
|
-
&.hover {
|
|
1518
|
-
.wac-button__wrapper, .wac-button__animation {
|
|
1519
|
-
color: $wac-white;
|
|
1520
|
-
transition: color 0.3s ease-in-out;
|
|
1521
|
-
}
|
|
1522
|
-
}
|
|
1523
|
-
}
|
|
1524
|
-
|
|
1525
|
-
&.is-dark {
|
|
1526
|
-
background-color: $wac-main-text;
|
|
1527
|
-
border-color: $wac-main-text;
|
|
1528
|
-
transition: background-color 0.3s ease-in-out;
|
|
1529
|
-
|
|
1530
|
-
.wac-button__loader {
|
|
1531
|
-
background-color: $wac-main-text;
|
|
1532
|
-
}
|
|
1533
|
-
|
|
1534
|
-
.wac-button__tooltips {
|
|
1535
|
-
background-color: $wac-main-text-lighten!important;
|
|
1536
|
-
color: $wac-white!important;
|
|
1537
|
-
|
|
1538
|
-
&.right {
|
|
1539
|
-
&:before {
|
|
1540
|
-
border-color: transparent $wac-main-text-lighten transparent transparent;
|
|
1302
|
+
&__wrapper {
|
|
1303
|
+
&__input {
|
|
1304
|
+
border-radius: 3px;
|
|
1305
|
+
display: flex;
|
|
1306
|
+
justify-content: flex-start;
|
|
1307
|
+
align-items: center;
|
|
1308
|
+
align-content: center;
|
|
1309
|
+
min-width: 240px;
|
|
1310
|
+
max-width: 240px;
|
|
1311
|
+
padding: 7px 20px;
|
|
1312
|
+
border: 1px solid $wac-border-form;
|
|
1313
|
+
cursor: pointer;
|
|
1314
|
+
&__icon {
|
|
1315
|
+
width: 16px;
|
|
1316
|
+
margin: 0 10px 0 0;
|
|
1317
|
+
display: flex;
|
|
1318
|
+
justify-content: space-between;
|
|
1319
|
+
align-items: center;
|
|
1320
|
+
align-content: center;
|
|
1321
|
+
cursor: pointer;
|
|
1322
|
+
&:hover,
|
|
1323
|
+
&:focus {
|
|
1324
|
+
i {
|
|
1325
|
+
color: darken($wac-wizishop-blue, 15%);
|
|
1326
|
+
}
|
|
1541
1327
|
}
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
border-color: transparent transparent transparent $wac-main-text-lighten;
|
|
1328
|
+
i {
|
|
1329
|
+
color: $wac-second-color;
|
|
1330
|
+
font-size: rem(18);
|
|
1331
|
+
transition: color 300ms ease;
|
|
1547
1332
|
}
|
|
1548
1333
|
}
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1334
|
+
&__date {
|
|
1335
|
+
width: auto;
|
|
1336
|
+
white-space: nowrap;
|
|
1337
|
+
position: relative;
|
|
1338
|
+
color: $wac-main-text;
|
|
1339
|
+
font-size: rem(14);
|
|
1340
|
+
line-height: rem(24);
|
|
1341
|
+
margin: 0 15px 0 0;
|
|
1342
|
+
letter-spacing: 0.65px;
|
|
1343
|
+
&:after {
|
|
1344
|
+
content: '';
|
|
1345
|
+
display: block;
|
|
1346
|
+
position: absolute;
|
|
1347
|
+
width: 1px;
|
|
1348
|
+
height: 15px;
|
|
1349
|
+
background-color: $wac-input-border;
|
|
1350
|
+
top: 50%;
|
|
1351
|
+
right: -15px;
|
|
1352
|
+
transform: translateY(-50%);
|
|
1553
1353
|
}
|
|
1554
1354
|
}
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1355
|
+
&__time {
|
|
1356
|
+
width: auto;
|
|
1357
|
+
white-space: nowrap;
|
|
1358
|
+
font-size: rem(14);
|
|
1359
|
+
line-height: rem(24);
|
|
1360
|
+
color: $wac-main-text;
|
|
1361
|
+
margin: 0 15px;
|
|
1362
|
+
letter-spacing: 1.3px;
|
|
1560
1363
|
}
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1364
|
+
&__close {
|
|
1365
|
+
width: 10px;
|
|
1366
|
+
cursor: pointer;
|
|
1367
|
+
i {
|
|
1368
|
+
font-size: 14px;
|
|
1369
|
+
transition: color 300ms ease;
|
|
1370
|
+
color: $wac-primary-button;
|
|
1371
|
+
font-weight: 400;
|
|
1565
1372
|
}
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1373
|
+
&:hover,
|
|
1374
|
+
&:focus {
|
|
1375
|
+
i {
|
|
1376
|
+
color: darken($wac-primary-button, 15%);
|
|
1377
|
+
}
|
|
1571
1378
|
}
|
|
1572
1379
|
}
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1380
|
+
}
|
|
1381
|
+
&__editInPlace {
|
|
1382
|
+
display: flex;
|
|
1383
|
+
justify-content: space-between;
|
|
1384
|
+
padding: 5px 0;
|
|
1385
|
+
position: relative;
|
|
1386
|
+
align-content: center;
|
|
1387
|
+
align-items: center;
|
|
1388
|
+
cursor: pointer;
|
|
1389
|
+
&:after {
|
|
1390
|
+
position: absolute;
|
|
1391
|
+
content: '';
|
|
1392
|
+
border-bottom: dashed 1px $wac-calendar-primary;
|
|
1393
|
+
width: 100%;
|
|
1394
|
+
bottom: 0;
|
|
1395
|
+
left: 0;
|
|
1578
1396
|
}
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1397
|
+
&__icon {
|
|
1398
|
+
width: 12px;
|
|
1399
|
+
margin: 0 5px 0 0;
|
|
1400
|
+
display: flex;
|
|
1401
|
+
justify-content: space-between;
|
|
1402
|
+
align-items: center;
|
|
1403
|
+
align-content: center;
|
|
1404
|
+
i {
|
|
1405
|
+
font-size: rem(14);
|
|
1406
|
+
color: $wac-wizishop-blue;
|
|
1407
|
+
transition: color 300ms ease;
|
|
1583
1408
|
}
|
|
1584
1409
|
}
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
}
|
|
1593
|
-
|
|
1594
|
-
&:focus,
|
|
1595
|
-
&.focus {
|
|
1596
|
-
background-color: $wac-main-text-lighten;
|
|
1597
|
-
border-color: $wac-main-text-lighten;
|
|
1598
|
-
transition: background-color 0.3s ease-in-out;
|
|
1599
|
-
}
|
|
1600
|
-
|
|
1601
|
-
&.is-outlined {
|
|
1602
|
-
background-color: transparent;
|
|
1603
|
-
border-color: $wac-main-text;
|
|
1604
|
-
|
|
1605
|
-
.wac-button__loader {
|
|
1606
|
-
background-color: $wac-main-text;
|
|
1607
|
-
}
|
|
1608
|
-
|
|
1609
|
-
.wac-button__wrapper, .wac-button__animation {
|
|
1610
|
-
color: $wac-main-text;
|
|
1611
|
-
transition: color 0.3s ease-in-out;
|
|
1410
|
+
&__date {
|
|
1411
|
+
position: relative;
|
|
1412
|
+
color: $wac-header-color;
|
|
1413
|
+
font-size: rem(14);
|
|
1414
|
+
width: auto;
|
|
1415
|
+
transition: 300ms ease;
|
|
1416
|
+
white-space: nowrap;
|
|
1612
1417
|
}
|
|
1613
|
-
|
|
1614
1418
|
&:hover,
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1419
|
+
&:focus {
|
|
1420
|
+
.wac-calendar {
|
|
1421
|
+
&__wrapper {
|
|
1422
|
+
&__editInPlace {
|
|
1423
|
+
&__date {
|
|
1424
|
+
color: darken($wac-header-color, 30%);
|
|
1425
|
+
}
|
|
1426
|
+
&__icon {
|
|
1427
|
+
i {
|
|
1428
|
+
color: darken($wac-wizishop-blue, 15%);
|
|
1429
|
+
}
|
|
1430
|
+
}
|
|
1431
|
+
}
|
|
1432
|
+
}
|
|
1621
1433
|
}
|
|
1622
1434
|
}
|
|
1623
|
-
|
|
1624
|
-
&:focus,
|
|
1625
|
-
&.focus {
|
|
1626
|
-
background-color: $wac-main-text;
|
|
1627
|
-
border-color: $wac-main-text;
|
|
1628
|
-
transition: background-color 0.3s ease-in-out;
|
|
1629
|
-
.wac-button__wrapper, .wac-button__animation {
|
|
1630
|
-
color: $wac-white;
|
|
1631
|
-
transition: color 0.3s ease-in-out;
|
|
1632
|
-
}
|
|
1633
|
-
}
|
|
1634
|
-
}
|
|
1635
|
-
}
|
|
1636
|
-
|
|
1637
|
-
&.is-info {
|
|
1638
|
-
background-color: $wac-wizishop-blue-button;
|
|
1639
|
-
border-color: $wac-wizishop-blue-button;
|
|
1640
|
-
transition: background-color 0.3s ease-in-out;
|
|
1641
|
-
|
|
1642
|
-
.wac-button__loader {
|
|
1643
|
-
background-color: $wac-wizishop-blue-button-darken;
|
|
1644
|
-
}
|
|
1645
|
-
|
|
1646
|
-
&:hover,
|
|
1647
|
-
&.hover {
|
|
1648
|
-
background-color: $wac-wizishop-blue-button-darken;
|
|
1649
|
-
border-color: $wac-wizishop-blue-button-darken;
|
|
1650
|
-
transition: background-color 0.3s ease-in-out;
|
|
1651
1435
|
}
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1436
|
+
&__select {
|
|
1437
|
+
border-radius: 3px;
|
|
1438
|
+
display: flex;
|
|
1439
|
+
justify-content: flex-start;
|
|
1440
|
+
align-items: center;
|
|
1441
|
+
align-content: center;
|
|
1442
|
+
min-width: 220px;
|
|
1443
|
+
max-width: 220px;
|
|
1444
|
+
padding: 11px 19px;
|
|
1445
|
+
border: 1px solid $wac-input-border;
|
|
1446
|
+
cursor: pointer;
|
|
1447
|
+
background: $wac-white no-repeat center right 15px
|
|
1448
|
+
url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%226.032%22%3E%3Cpath%20data-name%3D%22Arrow%20copie%203%22%20d%3D%22M0%20.016L5%204.65l5-4.634v1.378L5%206.028%200%201.394V.02z%22%20fill%3D%22%231e2e43%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E);
|
|
1449
|
+
&__icon {
|
|
1450
|
+
width: 16px;
|
|
1451
|
+
margin: 0 10px 0 0;
|
|
1452
|
+
display: flex;
|
|
1453
|
+
justify-content: space-between;
|
|
1454
|
+
align-items: center;
|
|
1455
|
+
align-content: center;
|
|
1456
|
+
cursor: pointer;
|
|
1457
|
+
&:hover,
|
|
1458
|
+
&:focus {
|
|
1459
|
+
i {
|
|
1460
|
+
color: darken($wac-second-color, 15%);
|
|
1461
|
+
}
|
|
1462
|
+
}
|
|
1673
1463
|
i {
|
|
1674
|
-
|
|
1464
|
+
font-size: rem(18);
|
|
1465
|
+
font-weight: 400;
|
|
1466
|
+
color: $wac-second-color;
|
|
1467
|
+
transition: color 300ms ease;
|
|
1675
1468
|
}
|
|
1676
1469
|
}
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1470
|
+
&__date {
|
|
1471
|
+
width: auto;
|
|
1472
|
+
position: relative;
|
|
1473
|
+
color: $wac-header-color;
|
|
1474
|
+
font-size: rem(14);
|
|
1475
|
+
white-space: nowrap;
|
|
1476
|
+
margin: 0;
|
|
1477
|
+
&:after {
|
|
1478
|
+
display: none;
|
|
1479
|
+
}
|
|
1480
|
+
}
|
|
1481
|
+
&__close {
|
|
1482
|
+
width: 10px;
|
|
1483
|
+
cursor: pointer;
|
|
1683
1484
|
i {
|
|
1684
|
-
|
|
1485
|
+
font-size: 14px;
|
|
1486
|
+
transition: color 300ms ease;
|
|
1487
|
+
color: $wac-primary-button;
|
|
1488
|
+
}
|
|
1489
|
+
&:hover,
|
|
1490
|
+
&:focus {
|
|
1491
|
+
i {
|
|
1492
|
+
color: darken($wac-primary-button, 15%);
|
|
1493
|
+
}
|
|
1685
1494
|
}
|
|
1686
1495
|
}
|
|
1687
1496
|
}
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
border-color: $wac-wizishop-blue-button;
|
|
1706
|
-
}
|
|
1707
|
-
|
|
1708
|
-
&:focus,
|
|
1709
|
-
&.focus {
|
|
1710
|
-
background-color: $wac-wizishop-blue-button-focus;
|
|
1711
|
-
border-color: $wac-wizishop-blue-button-focus;
|
|
1712
|
-
transition: background-color 0.3s ease-in-out;
|
|
1713
|
-
}
|
|
1497
|
+
}
|
|
1498
|
+
&__absolute {
|
|
1499
|
+
position: absolute;
|
|
1500
|
+
top: 100%;
|
|
1501
|
+
left: 50%;
|
|
1502
|
+
transform: translateX(-50%);
|
|
1503
|
+
visibility: hidden;
|
|
1504
|
+
opacity: 0;
|
|
1505
|
+
transition: 0.3s ease opacity, 0s visibility 0.31s;
|
|
1506
|
+
border: 1px solid $wac-border-light;
|
|
1507
|
+
background-color: $wac-white;
|
|
1508
|
+
box-shadow: 3px 3px 20px $wac-calendar-box-shadow;
|
|
1509
|
+
border-radius: 3px;
|
|
1510
|
+
max-width: 268px;
|
|
1511
|
+
min-width: 268px;
|
|
1512
|
+
&.bottom {
|
|
1513
|
+
transform: translateX(-50%) translateY(10px);
|
|
1714
1514
|
}
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
background-color: $wac-wizishop-blue-button;
|
|
1720
|
-
transition: background-color 0.3s ease-in-out;
|
|
1721
|
-
}
|
|
1722
|
-
&:focus,
|
|
1723
|
-
&.focus {
|
|
1724
|
-
background-color: $wac-wizishop-blue-button-focus;
|
|
1725
|
-
border-color: $wac-wizishop-blue-button-focus;
|
|
1726
|
-
transition: background-color 0.3s ease-in-out;
|
|
1727
|
-
}
|
|
1515
|
+
&.top {
|
|
1516
|
+
top: auto;
|
|
1517
|
+
bottom: 100%;
|
|
1518
|
+
transform: translateX(-50%) translateY(-10px);
|
|
1728
1519
|
}
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
color: $wac-second-color!important;
|
|
1735
|
-
transition: 0.3s ease-in-out;
|
|
1736
|
-
|
|
1737
|
-
.wac-button__loader {
|
|
1738
|
-
background-color: transparent;
|
|
1520
|
+
&.left {
|
|
1521
|
+
transform: translateY(-50%) translateX(-10px);
|
|
1522
|
+
left: auto;
|
|
1523
|
+
right: 100%;
|
|
1524
|
+
top: 50%;
|
|
1739
1525
|
}
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1526
|
+
&.right {
|
|
1527
|
+
transform: translateY(-50%) translateX(10px);
|
|
1528
|
+
left: 100%;
|
|
1529
|
+
top: 50%;
|
|
1743
1530
|
}
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
transition: 0.3s ease-in-out;
|
|
1751
|
-
.wac-button__wrapper {
|
|
1752
|
-
color: $wac-wizishop-blue-button;
|
|
1753
|
-
}
|
|
1531
|
+
&.left-top {
|
|
1532
|
+
left: auto;
|
|
1533
|
+
right: 100%;
|
|
1534
|
+
top: auto;
|
|
1535
|
+
bottom: 0;
|
|
1536
|
+
transform: translateY(-10px) translateX(-10px);
|
|
1754
1537
|
}
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
color: $wac-wizishop-blue-button!important;
|
|
1761
|
-
transition: 0.3s ease-in-out;
|
|
1762
|
-
.wac-button__wrapper {
|
|
1763
|
-
color: $wac-wizishop-blue-button;
|
|
1764
|
-
}
|
|
1538
|
+
&.left-bottom {
|
|
1539
|
+
left: auto;
|
|
1540
|
+
right: 100%;
|
|
1541
|
+
top: 0;
|
|
1542
|
+
transform: translateY(10px) translateX(-10px);
|
|
1765
1543
|
}
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
transition: background-color 0.3s ease-in-out;
|
|
1772
|
-
|
|
1773
|
-
.wac-button__loader {
|
|
1774
|
-
background-color: $wac-orange-color-darken;
|
|
1544
|
+
&.right-top {
|
|
1545
|
+
left: 100%;
|
|
1546
|
+
top: auto;
|
|
1547
|
+
bottom: 0;
|
|
1548
|
+
transform: translateY(-10px) translateX(10px);
|
|
1775
1549
|
}
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
border-color: $wac-orange-color-darken;
|
|
1781
|
-
transition: background-color 0.3s ease-in-out;
|
|
1550
|
+
&.right-bottom {
|
|
1551
|
+
left: 100%;
|
|
1552
|
+
top: 0;
|
|
1553
|
+
transform: translateY(10px) translateX(10px);
|
|
1782
1554
|
}
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
&.focus {
|
|
1786
|
-
background-color: $wac-orange-color-focus;
|
|
1787
|
-
border-color: $wac-orange-color-focus;
|
|
1788
|
-
transition: background-color 0.3s ease-in-out;
|
|
1555
|
+
& > * > * {
|
|
1556
|
+
width: 265px;
|
|
1789
1557
|
}
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
background-color:
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1558
|
+
&__time {
|
|
1559
|
+
position: relative;
|
|
1560
|
+
background-color: $wac-white;
|
|
1561
|
+
padding: 20px;
|
|
1562
|
+
width: 100%;
|
|
1563
|
+
&:before {
|
|
1564
|
+
content: '';
|
|
1565
|
+
width: 100%;
|
|
1566
|
+
height: 5px;
|
|
1567
|
+
bottom: 100%;
|
|
1568
|
+
margin-bottom: -2px;
|
|
1569
|
+
display: block;
|
|
1570
|
+
position: absolute;
|
|
1571
|
+
left: 0;
|
|
1572
|
+
background-color: $wac-white;
|
|
1802
1573
|
}
|
|
1574
|
+
&__wrapper {
|
|
1575
|
+
width: 100% !important;
|
|
1576
|
+
display: flex;
|
|
1577
|
+
align-items: center;
|
|
1578
|
+
align-content: center;
|
|
1579
|
+
justify-content: center;
|
|
1580
|
+
min-height: 42px;
|
|
1581
|
+
position: relative;
|
|
1582
|
+
&:before {
|
|
1583
|
+
content: '';
|
|
1584
|
+
display: block;
|
|
1585
|
+
background-color: $wac-wizishop-blue;
|
|
1586
|
+
width: 4px;
|
|
1587
|
+
height: 4px;
|
|
1588
|
+
border-radius: 50%;
|
|
1589
|
+
position: absolute;
|
|
1590
|
+
top: 50%;
|
|
1591
|
+
left: 50%;
|
|
1592
|
+
transform: translate(-50%, -50%);
|
|
1593
|
+
margin-top: -4px;
|
|
1594
|
+
}
|
|
1595
|
+
&:after {
|
|
1596
|
+
content: '';
|
|
1597
|
+
display: block;
|
|
1598
|
+
background-color: $wac-wizishop-blue;
|
|
1599
|
+
width: 4px;
|
|
1600
|
+
height: 4px;
|
|
1601
|
+
border-radius: 50%;
|
|
1602
|
+
position: absolute;
|
|
1603
|
+
top: 50%;
|
|
1604
|
+
left: 50%;
|
|
1605
|
+
transform: translate(-50%, -50%);
|
|
1606
|
+
margin-top: 4px;
|
|
1607
|
+
}
|
|
1608
|
+
&__hours,
|
|
1609
|
+
&__minutes {
|
|
1610
|
+
position: relative;
|
|
1611
|
+
width: 100px;
|
|
1612
|
+
display: flex;
|
|
1613
|
+
flex-wrap: nowrap;
|
|
1614
|
+
&__left,
|
|
1615
|
+
&__right {
|
|
1616
|
+
width: 100%;
|
|
1617
|
+
display: flex;
|
|
1618
|
+
flex-wrap: nowrap;
|
|
1619
|
+
justify-content: center;
|
|
1620
|
+
flex-direction: column;
|
|
1621
|
+
align-items: center;
|
|
1622
|
+
align-content: center;
|
|
1623
|
+
}
|
|
1624
|
+
&__btn {
|
|
1625
|
+
display: flex;
|
|
1626
|
+
justify-content: center;
|
|
1627
|
+
flex-direction: column;
|
|
1628
|
+
align-items: center;
|
|
1629
|
+
align-content: center;
|
|
1630
|
+
width: 40px;
|
|
1631
|
+
height: 20px;
|
|
1632
|
+
background-color: $wac-gray-background;
|
|
1633
|
+
box-shadow: none;
|
|
1634
|
+
border: none;
|
|
1635
|
+
cursor: pointer;
|
|
1636
|
+
transition: 0.3s ease;
|
|
1637
|
+
&:hover,
|
|
1638
|
+
&:focus {
|
|
1639
|
+
background-color: $wac-wizishop-blue;
|
|
1640
|
+
i {
|
|
1641
|
+
color: $wac-white;
|
|
1642
|
+
}
|
|
1643
|
+
}
|
|
1644
|
+
&:first-child {
|
|
1645
|
+
margin: 0 0 2px;
|
|
1646
|
+
}
|
|
1647
|
+
i {
|
|
1648
|
+
font-size: rem(10);
|
|
1649
|
+
color: $wac-second-color;
|
|
1650
|
+
margin: 0;
|
|
1651
|
+
}
|
|
1652
|
+
}
|
|
1803
1653
|
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1654
|
+
input::-webkit-outer-spin-button,
|
|
1655
|
+
input::-webkit-inner-spin-button {
|
|
1656
|
+
-webkit-appearance: none;
|
|
1657
|
+
margin: 0;
|
|
1658
|
+
}
|
|
1809
1659
|
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
transition: background-color 0.3s ease-in-out;
|
|
1815
|
-
}
|
|
1816
|
-
}
|
|
1660
|
+
/* Firefox */
|
|
1661
|
+
input[type='number'] {
|
|
1662
|
+
-moz-appearance: textfield;
|
|
1663
|
+
}
|
|
1817
1664
|
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1665
|
+
input {
|
|
1666
|
+
border: none;
|
|
1667
|
+
text-align: center;
|
|
1668
|
+
font-size: rem(24);
|
|
1669
|
+
color: $wac-wizishop-blue;
|
|
1670
|
+
padding: 0;
|
|
1671
|
+
line-height: 1.4;
|
|
1672
|
+
margin: 0;
|
|
1673
|
+
width: 100%;
|
|
1674
|
+
}
|
|
1675
|
+
}
|
|
1676
|
+
&__hours {
|
|
1677
|
+
margin: 0 10px 0 0;
|
|
1678
|
+
}
|
|
1679
|
+
&__minutes {
|
|
1680
|
+
margin: 0 0 0 10px;
|
|
1681
|
+
}
|
|
1829
1682
|
}
|
|
1830
1683
|
}
|
|
1831
1684
|
}
|
|
1685
|
+
}
|
|
1832
1686
|
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
transition: background-color 0.3s ease-in-out;
|
|
1837
|
-
|
|
1838
|
-
.wac-button__loader {
|
|
1839
|
-
background-color: $wac-pink-color-darken;
|
|
1840
|
-
}
|
|
1841
|
-
|
|
1842
|
-
&:hover,
|
|
1843
|
-
&.hover {
|
|
1844
|
-
background-color: $wac-pink-color-darken;
|
|
1845
|
-
border-color: $wac-pink-color-darken;
|
|
1846
|
-
transition: background-color 0.3s ease-in-out;
|
|
1847
|
-
}
|
|
1848
|
-
|
|
1849
|
-
&:focus,
|
|
1850
|
-
&.focus {
|
|
1851
|
-
background-color: $wac-pink-color-focus;
|
|
1852
|
-
border-color: $wac-pink-color-focus;
|
|
1853
|
-
transition: background-color 0.3s ease-in-out;
|
|
1854
|
-
}
|
|
1855
|
-
|
|
1856
|
-
&.is-outlined {
|
|
1857
|
-
background-color: transparent;
|
|
1858
|
-
border-color: $wac-pink-color;
|
|
1687
|
+
.datetimepicker-dummy .datetimepicker-clear-button {
|
|
1688
|
+
top: -3px !important;
|
|
1689
|
+
}
|
|
1859
1690
|
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1691
|
+
.datetimepicker-dummy .datetimepicker-dummy-wrapper {
|
|
1692
|
+
border: 1px solid $wac-border-color;
|
|
1693
|
+
border-radius: rem(3);
|
|
1863
1694
|
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1695
|
+
&:hover,
|
|
1696
|
+
&:focus {
|
|
1697
|
+
border: 1px solid $wac-wizishop-blue;
|
|
1698
|
+
}
|
|
1699
|
+
}
|
|
1868
1700
|
|
|
1869
|
-
&:hover,
|
|
1870
|
-
&.hover {
|
|
1871
|
-
background-color: $wac-pink-color;
|
|
1872
|
-
border-color: $wac-pink-color;
|
|
1873
|
-
}
|
|
1874
1701
|
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1702
|
+
.datetimepicker {
|
|
1703
|
+
box-shadow: none !important;
|
|
1704
|
+
&-wrapper {
|
|
1705
|
+
border: none !important;
|
|
1706
|
+
box-shadow: none;
|
|
1707
|
+
background: $wac-white;
|
|
1708
|
+
}
|
|
1709
|
+
}
|
|
1882
1710
|
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
&:focus,
|
|
1890
|
-
&.focus {
|
|
1891
|
-
background-color: $wac-pink-color-focus;
|
|
1892
|
-
border-color: $wac-pink-color-focus;
|
|
1893
|
-
transition: background-color 0.3s ease-in-out;
|
|
1894
|
-
}
|
|
1711
|
+
.datepicker {
|
|
1712
|
+
.datepicker {
|
|
1713
|
+
&-nav {
|
|
1714
|
+
background: $wac-white !important;
|
|
1715
|
+
color: $wac-main-text !important;
|
|
1716
|
+
padding: 15px !important;
|
|
1895
1717
|
}
|
|
1896
1718
|
}
|
|
1719
|
+
}
|
|
1897
1720
|
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1721
|
+
.datetimepicker .datepicker-nav .datepicker-nav-month,
|
|
1722
|
+
.datetimepicker .datepicker-nav .datepicker-nav-year {
|
|
1723
|
+
color: $wac-main-text !important;
|
|
1724
|
+
font-weight: 500 !important;
|
|
1725
|
+
&:hover,
|
|
1726
|
+
&:focus {
|
|
1727
|
+
color: $wac-wizishop-blue !important;
|
|
1728
|
+
}
|
|
1729
|
+
}
|
|
1902
1730
|
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1731
|
+
.datepicker-nav-year {
|
|
1732
|
+
font-weight: 500 !important;
|
|
1733
|
+
}
|
|
1906
1734
|
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1735
|
+
.datetimepicker .datepicker-nav .datepicker-nav-previous,
|
|
1736
|
+
.datetimepicker .datepicker-nav .datepicker-nav-next {
|
|
1737
|
+
border-radius: 3px;
|
|
1738
|
+
color: $wac-main-text !important;
|
|
1739
|
+
width: 25px !important;
|
|
1740
|
+
height: 25px !important;
|
|
1741
|
+
display: flex;
|
|
1742
|
+
justify-content: center;
|
|
1743
|
+
align-items: center;
|
|
1744
|
+
align-content: center;
|
|
1745
|
+
border: 1px solid $wac-border-light;
|
|
1746
|
+
transition: 0.3s ease;
|
|
1747
|
+
> svg {
|
|
1748
|
+
display: none !important;
|
|
1749
|
+
}
|
|
1750
|
+
}
|
|
1911
1751
|
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1752
|
+
.datetimepicker .datepicker-nav .datepicker-nav-previous {
|
|
1753
|
+
background: $wac-white
|
|
1754
|
+
url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-left' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-left fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M34.52 239.03L228.87 44.69c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.36 9.37 24.52.04 33.9L131.49 256l154.02 154.75c9.34 9.38 9.32 24.54-.04 33.9l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z' class=''%3E%3C/path%3E%3C/svg%3E")
|
|
1755
|
+
center center no-repeat !important;
|
|
1756
|
+
background-size: 6px auto !important;
|
|
1757
|
+
&:hover,
|
|
1758
|
+
&:focus {
|
|
1759
|
+
border-color: $wac-wizishop-blue !important;
|
|
1760
|
+
}
|
|
1761
|
+
}
|
|
1918
1762
|
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1763
|
+
.datetimepicker .datepicker-nav .datepicker-nav-next {
|
|
1764
|
+
background: $wac-white
|
|
1765
|
+
url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-2x'%3E%3Cpath fill='currentColor' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z' class=''%3E%3C/path%3E%3C/svg%3E")
|
|
1766
|
+
center center no-repeat !important;
|
|
1767
|
+
background-size: 6px auto !important;
|
|
1768
|
+
&:hover,
|
|
1769
|
+
&:focus {
|
|
1770
|
+
border-color: $wac-wizishop-blue !important;
|
|
1771
|
+
}
|
|
1772
|
+
}
|
|
1773
|
+
|
|
1774
|
+
.wac-calendar__absolute {
|
|
1775
|
+
.datetimepicker .datepicker-body .datepicker-weekdays {
|
|
1776
|
+
padding: 0 15px;
|
|
1777
|
+
}
|
|
1778
|
+
.datepicker-weekdays {
|
|
1779
|
+
height: 14px;
|
|
1780
|
+
margin: 0 0 rem(12);
|
|
1781
|
+
.datepicker-date {
|
|
1782
|
+
font-size: rem(12);
|
|
1783
|
+
white-space: nowrap;
|
|
1784
|
+
line-height: 1;
|
|
1785
|
+
padding: 0 !important;
|
|
1786
|
+
color: $wac-secondary-color !important;
|
|
1924
1787
|
}
|
|
1788
|
+
}
|
|
1789
|
+
.datepicker-days {
|
|
1790
|
+
padding: 0 15px !important;
|
|
1791
|
+
}
|
|
1792
|
+
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-active {
|
|
1793
|
+
background-color: $wac-wizishop-blue;
|
|
1794
|
+
}
|
|
1795
|
+
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item:hover {
|
|
1796
|
+
border-color: $wac-wizishop-blue;
|
|
1797
|
+
}
|
|
1798
|
+
}
|
|
1925
1799
|
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1800
|
+
.datetimepicker .datetimepicker-footer {
|
|
1801
|
+
display: none;
|
|
1802
|
+
}
|
|
1803
|
+
.wac-button {
|
|
1804
|
+
@include flexbox();
|
|
1805
|
+
@include justify-content(center);
|
|
1806
|
+
@include align-items(center);
|
|
1807
|
+
position: relative;
|
|
1808
|
+
padding: 11px 19px;
|
|
1809
|
+
border-style: solid;
|
|
1810
|
+
border-width: 1px;
|
|
1811
|
+
border-radius: 3px;
|
|
1812
|
+
box-sizing: border-box;
|
|
1929
1813
|
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1814
|
+
* {
|
|
1815
|
+
box-sizing: border-box;
|
|
1816
|
+
}
|
|
1933
1817
|
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
}
|
|
1818
|
+
&.width-auto {
|
|
1819
|
+
width: fit-content;
|
|
1820
|
+
}
|
|
1938
1821
|
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
border-color: $wac-white;
|
|
1943
|
-
.wac-button__wrapper, .wac-button__animation {
|
|
1944
|
-
color: $wac-second-color !important;
|
|
1945
|
-
transition: color 0.3s ease-in-out;
|
|
1946
|
-
}
|
|
1947
|
-
}
|
|
1822
|
+
&.white-space-no-wrap {
|
|
1823
|
+
white-space: nowrap;
|
|
1824
|
+
}
|
|
1948
1825
|
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1826
|
+
&.no-padding {
|
|
1827
|
+
padding-left: 0!important;
|
|
1828
|
+
padding-right: 0!important;
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
&.is-green.opacity {
|
|
1832
|
+
background-color: $wac-tag-success-light;
|
|
1833
|
+
border-color: transparent!important;
|
|
1834
|
+
transition: .3s;
|
|
1835
|
+
i {
|
|
1836
|
+
color: $wac-tag-success;
|
|
1837
|
+
}
|
|
1838
|
+
&:hover, &:focus {
|
|
1839
|
+
background-color: $wac-tag-success;
|
|
1840
|
+
i {
|
|
1841
|
+
color: $wac-white;
|
|
1842
|
+
}
|
|
1843
|
+
}
|
|
1844
|
+
}
|
|
1845
|
+
&.is-evolup.opacity {
|
|
1846
|
+
background-color: $wac-evolup-green-opacity;
|
|
1847
|
+
border-color: transparent!important;
|
|
1848
|
+
transition: .3s;
|
|
1849
|
+
i {
|
|
1850
|
+
color: $wac-evolup-green;
|
|
1851
|
+
}
|
|
1852
|
+
&:hover, &:focus {
|
|
1853
|
+
background-color: $wac-evolup-green;
|
|
1854
|
+
i {
|
|
1855
|
+
color: $wac-white;
|
|
1954
1856
|
}
|
|
1955
1857
|
}
|
|
1956
1858
|
}
|
|
1957
1859
|
|
|
1958
|
-
&.
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1860
|
+
&.static-width {
|
|
1861
|
+
width: 40px;
|
|
1862
|
+
min-width: 40px;
|
|
1863
|
+
max-width: 40px;
|
|
1864
|
+
}
|
|
1962
1865
|
|
|
1963
|
-
|
|
1964
|
-
|
|
1866
|
+
&.is-blue.opacity {
|
|
1867
|
+
background-color: $wac-wizishop-blue-button-light;
|
|
1868
|
+
border-color: transparent!important;
|
|
1869
|
+
transition: .3s;
|
|
1870
|
+
i {
|
|
1871
|
+
color: $wac-wizishop-blue-button;
|
|
1965
1872
|
}
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
background-color: $wac-wizishop-blue!important;
|
|
1971
|
-
border-color: $wac-wizishop-blue!important;
|
|
1972
|
-
color: $white!important;
|
|
1973
|
-
.wac-button__wrapper {
|
|
1974
|
-
color: $white!important;
|
|
1975
|
-
i {
|
|
1976
|
-
color: $white!important;
|
|
1977
|
-
}
|
|
1978
|
-
}
|
|
1873
|
+
&:hover, &:focus {
|
|
1874
|
+
background-color: $wac-wizishop-blue-button;
|
|
1875
|
+
i {
|
|
1876
|
+
color: $wac-white;
|
|
1979
1877
|
}
|
|
1980
1878
|
}
|
|
1981
1879
|
|
|
1982
1880
|
.wac-button__tooltips {
|
|
1983
|
-
background-color: $wac-
|
|
1984
|
-
color: $
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
&:before {
|
|
1988
|
-
border-color: transparent $wac-background-color-darken transparent transparent;
|
|
1989
|
-
}
|
|
1990
|
-
}
|
|
1881
|
+
background-color: $wac-wizishop-blue-button!important;
|
|
1882
|
+
color: $white!important;
|
|
1883
|
+
}
|
|
1884
|
+
}
|
|
1991
1885
|
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1886
|
+
&.animationText {
|
|
1887
|
+
width: rem(40);
|
|
1888
|
+
height: rem(40);
|
|
1889
|
+
padding: 0!important;
|
|
1890
|
+
border-radius: 3px;
|
|
1891
|
+
transition: 0s linear .3s!important;
|
|
1892
|
+
display: flex;
|
|
1893
|
+
justify-content: center;
|
|
1894
|
+
align-items: center;
|
|
1895
|
+
cursor: pointer;
|
|
1896
|
+
border: none;
|
|
1897
|
+
position: relative;
|
|
1898
|
+
&:hover, &:focus {
|
|
1899
|
+
transition: 0s!important;
|
|
1900
|
+
border-radius: 3px 0 0 3px;
|
|
1901
|
+
&.animation-right {
|
|
1902
|
+
border-radius: 0 3px 3px 0;
|
|
1996
1903
|
}
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
&:before {
|
|
2000
|
-
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
2001
|
-
}
|
|
1904
|
+
.wac-button__animation {
|
|
1905
|
+
transition: .3s ease!important;
|
|
2002
1906
|
}
|
|
1907
|
+
}
|
|
1908
|
+
}
|
|
2003
1909
|
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
}
|
|
2008
|
-
}
|
|
1910
|
+
&.small {
|
|
1911
|
+
padding: rem(4) rem(15);
|
|
1912
|
+
}
|
|
2009
1913
|
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
1914
|
+
&__wrapper {
|
|
1915
|
+
position: relative;
|
|
1916
|
+
z-index: 2;
|
|
1917
|
+
color: $wac-white;
|
|
1918
|
+
font-size: 14px;
|
|
1919
|
+
line-height: 16px;
|
|
1920
|
+
font-weight: 500;
|
|
2015
1921
|
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
}
|
|
1922
|
+
i {
|
|
1923
|
+
margin-right: 1.4px;
|
|
1924
|
+
}
|
|
1925
|
+
}
|
|
2021
1926
|
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
1927
|
+
.loading-class {
|
|
1928
|
+
display: flex;
|
|
1929
|
+
align-items: center;
|
|
1930
|
+
gap: 5px;
|
|
1931
|
+
}
|
|
2027
1932
|
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
1933
|
+
&__coin {
|
|
1934
|
+
margin: 0 0 0 rem(15);
|
|
1935
|
+
display: flex;
|
|
1936
|
+
align-items: center;
|
|
1937
|
+
justify-content: center;
|
|
1938
|
+
border-radius: 40px;
|
|
1939
|
+
padding: 4px 6px;
|
|
1940
|
+
background-color: #F8EDD2;
|
|
1941
|
+
float: right;
|
|
1942
|
+
z-index: 2;
|
|
1943
|
+
position: relative;
|
|
1944
|
+
i {
|
|
1945
|
+
font-size: rem(18);
|
|
1946
|
+
color: #FDCD52;
|
|
1947
|
+
margin: 0 5px 0 0;
|
|
2033
1948
|
}
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
1949
|
+
> span {
|
|
1950
|
+
font-size: rem(14);
|
|
1951
|
+
line-height: 1;
|
|
1952
|
+
color: #E0B146;
|
|
1953
|
+
font-weight: 600;
|
|
1954
|
+
letter-spacing: 0;
|
|
2038
1955
|
}
|
|
1956
|
+
}
|
|
2039
1957
|
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
1958
|
+
&__animation {
|
|
1959
|
+
overflow: hidden;
|
|
1960
|
+
max-width: 0;
|
|
1961
|
+
height: 40px;
|
|
1962
|
+
position: absolute;
|
|
1963
|
+
top: 0;
|
|
1964
|
+
left: 95%;
|
|
1965
|
+
z-index: 2;
|
|
1966
|
+
transition: .3s ease!important;
|
|
1967
|
+
.animation-right & {
|
|
1968
|
+
left: auto;
|
|
1969
|
+
right: 94%;
|
|
1970
|
+
> span {
|
|
1971
|
+
border-radius: 3px 0 0 3px;
|
|
1972
|
+
padding: 0 0 0 20px;
|
|
1973
|
+
}
|
|
2045
1974
|
}
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
1975
|
+
&__text {
|
|
1976
|
+
position: absolute;
|
|
1977
|
+
top: 0;
|
|
1978
|
+
left: 0;
|
|
1979
|
+
width: auto;
|
|
1980
|
+
white-space: nowrap;
|
|
1981
|
+
height: rem(40);
|
|
1982
|
+
line-height: rem(40);
|
|
1983
|
+
color: $wac-white !important;
|
|
1984
|
+
border-radius: 0 3px 3px 0;
|
|
1985
|
+
padding: 0 20px 0 0;
|
|
1986
|
+
font-size: rem(14);
|
|
1987
|
+
.is-success & {
|
|
1988
|
+
background-color: $wac-green-color;
|
|
1989
|
+
}
|
|
1990
|
+
.is-danger & {
|
|
1991
|
+
background-color: $wac-primary-button;
|
|
1992
|
+
}
|
|
2052
1993
|
}
|
|
1994
|
+
}
|
|
2053
1995
|
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
1996
|
+
&.deletePosition-center .wac-button__confirmDelete {
|
|
1997
|
+
left: 50%;
|
|
1998
|
+
transform: translateX(-50%) translateY(-1px);
|
|
1999
|
+
}
|
|
2057
2000
|
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2001
|
+
&.deletePosition-right .wac-button__confirmDelete {
|
|
2002
|
+
right: 0;
|
|
2003
|
+
transform: translateY(-1px);
|
|
2004
|
+
}
|
|
2061
2005
|
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2006
|
+
&.deletePosition-left .wac-button__confirmDelete {
|
|
2007
|
+
left: 0;
|
|
2008
|
+
transform: translateY(-1px);
|
|
2009
|
+
}
|
|
2066
2010
|
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2011
|
+
&__confirmDelete {
|
|
2012
|
+
overflow: hidden;
|
|
2013
|
+
max-width: 0;
|
|
2014
|
+
height: 40px;
|
|
2015
|
+
position: absolute;
|
|
2016
|
+
top: 0;
|
|
2017
|
+
z-index: 2;
|
|
2018
|
+
transition: .3s ease!important;
|
|
2019
|
+
border-radius: 3px;
|
|
2020
|
+
|
|
2021
|
+
|
|
2022
|
+
.is-success & {
|
|
2023
|
+
background-color: $wac-green-color;
|
|
2024
|
+
&:hover, &:focus {
|
|
2025
|
+
background-color: darken($wac-green-color, 15%);
|
|
2026
|
+
}
|
|
2027
|
+
}
|
|
2028
|
+
.is-danger & {
|
|
2029
|
+
background-color: $wac-primary-button;
|
|
2030
|
+
&:hover, &:focus {
|
|
2031
|
+
background-color: darken($wac-primary-button, 15%);
|
|
2071
2032
|
}
|
|
2033
|
+
}
|
|
2034
|
+
&__text {
|
|
2035
|
+
position: absolute;
|
|
2036
|
+
top: 0;
|
|
2037
|
+
left: 50%;
|
|
2038
|
+
transform: translateX(-50%);
|
|
2039
|
+
width: auto;
|
|
2040
|
+
white-space: nowrap;
|
|
2041
|
+
height: rem(40);
|
|
2042
|
+
line-height: rem(40);
|
|
2043
|
+
color: $wac-white !important;
|
|
2044
|
+
padding: 0 20px;
|
|
2045
|
+
font-size: rem(14);
|
|
2046
|
+
opacity: 0;
|
|
2047
|
+
transition: .3s ease;
|
|
2048
|
+
}
|
|
2049
|
+
}
|
|
2072
2050
|
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2051
|
+
&.step-delete {
|
|
2052
|
+
i {
|
|
2053
|
+
transition: .3s ease!important;
|
|
2054
|
+
opacity: 0!important;
|
|
2055
|
+
}
|
|
2056
|
+
.wac-button__confirmDelete {
|
|
2057
|
+
transition: .6s ease .3s!important;
|
|
2058
|
+
&__text {
|
|
2059
|
+
opacity: 1;
|
|
2060
|
+
transition: .3s ease .9s;
|
|
2078
2061
|
}
|
|
2079
2062
|
}
|
|
2063
|
+
}
|
|
2080
2064
|
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2065
|
+
&.alone {
|
|
2066
|
+
padding: 7px 14.6px;
|
|
2067
|
+
|
|
2068
|
+
.wac-button__wrapper i {
|
|
2069
|
+
margin-right: 0;
|
|
2070
|
+
}
|
|
2071
|
+
}
|
|
2072
|
+
|
|
2073
|
+
&.is-outlined {
|
|
2074
|
+
&:hover,
|
|
2075
|
+
&.hover {
|
|
2076
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2077
|
+
color: $wac-white;
|
|
2078
|
+
transition: color 0.3s ease-in-out;
|
|
2086
2079
|
}
|
|
2087
2080
|
}
|
|
2088
2081
|
}
|
|
2089
2082
|
|
|
2090
|
-
&.is-
|
|
2091
|
-
background-color: $wac-
|
|
2092
|
-
border-color: $wac-
|
|
2083
|
+
&.is-dark {
|
|
2084
|
+
background-color: $wac-main-text;
|
|
2085
|
+
border-color: $wac-main-text;
|
|
2093
2086
|
transition: background-color 0.3s ease-in-out;
|
|
2094
2087
|
|
|
2095
2088
|
.wac-button__loader {
|
|
2096
|
-
background-color: $wac-
|
|
2089
|
+
background-color: $wac-main-text;
|
|
2097
2090
|
}
|
|
2098
2091
|
|
|
2099
2092
|
.wac-button__tooltips {
|
|
2100
|
-
background-color: $wac-
|
|
2093
|
+
background-color: $wac-main-text-lighten!important;
|
|
2101
2094
|
color: $wac-white!important;
|
|
2095
|
+
|
|
2102
2096
|
&.right {
|
|
2103
2097
|
&:before {
|
|
2104
|
-
border-color: transparent $wac-
|
|
2098
|
+
border-color: transparent $wac-main-text-lighten transparent transparent;
|
|
2105
2099
|
}
|
|
2106
2100
|
}
|
|
2107
2101
|
|
|
2108
2102
|
&.left {
|
|
2109
2103
|
&:before {
|
|
2110
|
-
border-color: transparent transparent transparent $wac-
|
|
2104
|
+
border-color: transparent transparent transparent $wac-main-text-lighten;
|
|
2111
2105
|
}
|
|
2112
2106
|
}
|
|
2113
2107
|
|
|
2114
2108
|
&.top-center {
|
|
2115
2109
|
&:before {
|
|
2116
|
-
border-color: $wac-
|
|
2110
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
2117
2111
|
}
|
|
2118
2112
|
}
|
|
2119
2113
|
|
|
2120
2114
|
&.top-right {
|
|
2121
2115
|
&:before {
|
|
2122
|
-
border-color: $wac-
|
|
2116
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
2123
2117
|
}
|
|
2124
2118
|
}
|
|
2125
2119
|
|
|
2126
2120
|
&.top-left {
|
|
2127
2121
|
&:before {
|
|
2128
|
-
border-color: $wac-
|
|
2122
|
+
border-color: $wac-main-text-lighten transparent transparent transparent;
|
|
2129
2123
|
}
|
|
2130
2124
|
}
|
|
2131
2125
|
|
|
2132
2126
|
&.bottom-center {
|
|
2133
2127
|
&:before {
|
|
2134
|
-
border-color: transparent transparent $wac-
|
|
2128
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
2135
2129
|
}
|
|
2136
2130
|
}
|
|
2137
2131
|
|
|
2138
2132
|
&.bottom-right {
|
|
2139
2133
|
&:before {
|
|
2140
|
-
border-color: transparent transparent $wac-
|
|
2134
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
2141
2135
|
}
|
|
2142
2136
|
}
|
|
2143
2137
|
|
|
2144
2138
|
&.bottom-left {
|
|
2145
2139
|
&:before {
|
|
2146
|
-
border-color: transparent transparent $wac-
|
|
2140
|
+
border-color: transparent transparent $wac-main-text-lighten transparent;
|
|
2147
2141
|
}
|
|
2148
2142
|
}
|
|
2149
2143
|
}
|
|
2150
2144
|
|
|
2151
2145
|
&:hover,
|
|
2152
2146
|
&.hover {
|
|
2153
|
-
background-color: $wac-
|
|
2154
|
-
border-color: $wac-
|
|
2147
|
+
background-color: $wac-main-text-lighten;
|
|
2148
|
+
border-color: $wac-main-text-lighten;
|
|
2155
2149
|
transition: background-color 0.3s ease-in-out;
|
|
2156
2150
|
}
|
|
2157
2151
|
|
|
2158
2152
|
&:focus,
|
|
2159
2153
|
&.focus {
|
|
2160
|
-
background-color: $wac-
|
|
2161
|
-
border-color: $wac-
|
|
2154
|
+
background-color: $wac-main-text-lighten;
|
|
2155
|
+
border-color: $wac-main-text-lighten;
|
|
2162
2156
|
transition: background-color 0.3s ease-in-out;
|
|
2163
2157
|
}
|
|
2164
2158
|
|
|
2165
2159
|
&.is-outlined {
|
|
2166
2160
|
background-color: transparent;
|
|
2167
|
-
border-color: $wac-
|
|
2161
|
+
border-color: $wac-main-text;
|
|
2162
|
+
|
|
2163
|
+
.wac-button__loader {
|
|
2164
|
+
background-color: $wac-main-text;
|
|
2165
|
+
}
|
|
2168
2166
|
|
|
2169
2167
|
.wac-button__wrapper, .wac-button__animation {
|
|
2170
|
-
color: $wac-
|
|
2168
|
+
color: $wac-main-text;
|
|
2171
2169
|
transition: color 0.3s ease-in-out;
|
|
2172
2170
|
}
|
|
2173
2171
|
|
|
2174
2172
|
&:hover,
|
|
2175
2173
|
&.hover {
|
|
2176
|
-
background-color: $wac-
|
|
2177
|
-
border-color: $wac-
|
|
2174
|
+
background-color: $wac-main-text;
|
|
2175
|
+
border-color: $wac-main-text;
|
|
2176
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2177
|
+
color: $wac-white;
|
|
2178
|
+
transition: color 0.3s ease-in-out;
|
|
2179
|
+
}
|
|
2178
2180
|
}
|
|
2179
2181
|
|
|
2180
2182
|
&:focus,
|
|
2181
2183
|
&.focus {
|
|
2182
|
-
background-color: $wac-
|
|
2183
|
-
border-color: $wac-
|
|
2184
|
+
background-color: $wac-main-text;
|
|
2185
|
+
border-color: $wac-main-text;
|
|
2184
2186
|
transition: background-color 0.3s ease-in-out;
|
|
2187
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2188
|
+
color: $wac-white;
|
|
2189
|
+
transition: color 0.3s ease-in-out;
|
|
2190
|
+
}
|
|
2185
2191
|
}
|
|
2186
2192
|
}
|
|
2193
|
+
}
|
|
2187
2194
|
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
+
&.is-info {
|
|
2196
|
+
background-color: $wac-wizishop-blue-button;
|
|
2197
|
+
border-color: $wac-wizishop-blue-button;
|
|
2198
|
+
transition: background-color 0.3s ease-in-out;
|
|
2199
|
+
|
|
2200
|
+
.wac-button__loader {
|
|
2201
|
+
background-color: $wac-wizishop-blue-button-darken;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
&:hover,
|
|
2205
|
+
&.hover {
|
|
2206
|
+
background-color: $wac-wizishop-blue-button-darken;
|
|
2207
|
+
border-color: $wac-wizishop-blue-button-darken;
|
|
2208
|
+
transition: background-color 0.3s ease-in-out;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
&:focus,
|
|
2212
|
+
&.focus {
|
|
2213
|
+
background-color: $wac-wizishop-blue-button-focus;
|
|
2214
|
+
border-color: $wac-wizishop-blue-button-focus;
|
|
2215
|
+
transition: background-color 0.3s ease-in-out;
|
|
2216
|
+
}
|
|
2195
2217
|
|
|
2196
2218
|
&.opacity {
|
|
2197
|
-
background-color: $wac-
|
|
2219
|
+
background-color: $wac-wizishop-blue-button-light;
|
|
2198
2220
|
border-color: transparent!important;
|
|
2199
|
-
&:hover, &:focus {
|
|
2200
|
-
background-color: $wac-primary-button;
|
|
2201
|
-
border-color: $wac-primary-button;
|
|
2202
|
-
}
|
|
2203
|
-
}
|
|
2204
|
-
}
|
|
2205
2221
|
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
background-color: $wac-green-color-darken!important;
|
|
2209
|
-
color: $wac-white!important;
|
|
2210
|
-
&.right {
|
|
2211
|
-
&:before {
|
|
2212
|
-
border-color: transparent $wac-green-color-darken transparent transparent;
|
|
2213
|
-
}
|
|
2222
|
+
i {
|
|
2223
|
+
color: $wac-wizishop-blue-button;
|
|
2214
2224
|
}
|
|
2215
2225
|
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2226
|
+
&:hover,
|
|
2227
|
+
&.hover {
|
|
2228
|
+
background-color: $wac-wizishop-blue-button;
|
|
2229
|
+
border-color: $wac-wizishop-blue-button;
|
|
2230
|
+
transition: background-color 0.3s ease-in-out;
|
|
2231
|
+
i {
|
|
2232
|
+
color: $white;
|
|
2219
2233
|
}
|
|
2220
2234
|
}
|
|
2221
2235
|
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2236
|
+
&:focus,
|
|
2237
|
+
&.focus {
|
|
2238
|
+
background-color: $wac-wizishop-blue-button;
|
|
2239
|
+
border-color: $wac-wizishop-blue-button;
|
|
2240
|
+
transition: background-color 0.3s ease-in-out;
|
|
2241
|
+
i {
|
|
2242
|
+
color: $white;
|
|
2225
2243
|
}
|
|
2226
2244
|
}
|
|
2245
|
+
}
|
|
2227
2246
|
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2247
|
+
&.is-outlined {
|
|
2248
|
+
background-color: transparent;
|
|
2249
|
+
border-color: $wac-wizishop-blue-button;
|
|
2250
|
+
|
|
2251
|
+
.wac-button__loader {
|
|
2252
|
+
background-color: $wac-wizishop-blue-button-darken;
|
|
2232
2253
|
}
|
|
2233
2254
|
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
}
|
|
2255
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2256
|
+
color: $wac-wizishop-blue-button;
|
|
2257
|
+
transition: color 0.3s ease-in-out;
|
|
2238
2258
|
}
|
|
2239
2259
|
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2260
|
+
&:hover,
|
|
2261
|
+
&.hover {
|
|
2262
|
+
background-color: $wac-wizishop-blue-button;
|
|
2263
|
+
border-color: $wac-wizishop-blue-button;
|
|
2244
2264
|
}
|
|
2245
2265
|
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2266
|
+
&:focus,
|
|
2267
|
+
&.focus {
|
|
2268
|
+
background-color: $wac-wizishop-blue-button-focus;
|
|
2269
|
+
border-color: $wac-wizishop-blue-button-focus;
|
|
2270
|
+
transition: background-color 0.3s ease-in-out;
|
|
2250
2271
|
}
|
|
2272
|
+
}
|
|
2251
2273
|
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2274
|
+
&.is-loading {
|
|
2275
|
+
&:hover,
|
|
2276
|
+
&.hover {
|
|
2277
|
+
background-color: $wac-wizishop-blue-button;
|
|
2278
|
+
transition: background-color 0.3s ease-in-out;
|
|
2279
|
+
}
|
|
2280
|
+
&:focus,
|
|
2281
|
+
&.focus {
|
|
2282
|
+
background-color: $wac-wizishop-blue-button-focus;
|
|
2283
|
+
border-color: $wac-wizishop-blue-button-focus;
|
|
2284
|
+
transition: background-color 0.3s ease-in-out;
|
|
2256
2285
|
}
|
|
2257
2286
|
}
|
|
2258
2287
|
}
|
|
2259
2288
|
|
|
2260
|
-
&.is-
|
|
2261
|
-
background-color:
|
|
2262
|
-
border-color:
|
|
2263
|
-
|
|
2289
|
+
&.is-clear {
|
|
2290
|
+
background-color: transparent!important;
|
|
2291
|
+
border-color: transparent!important;
|
|
2292
|
+
color: $wac-second-color!important;
|
|
2293
|
+
transition: 0.3s ease-in-out;
|
|
2264
2294
|
|
|
2265
2295
|
.wac-button__loader {
|
|
2266
|
-
background-color:
|
|
2296
|
+
background-color: transparent;
|
|
2267
2297
|
}
|
|
2268
2298
|
|
|
2269
|
-
.wac-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
&.right {
|
|
2273
|
-
&:before {
|
|
2274
|
-
border-color: transparent $wac-green-color-darken transparent transparent;
|
|
2275
|
-
}
|
|
2276
|
-
}
|
|
2277
|
-
|
|
2278
|
-
&.left {
|
|
2279
|
-
&:before {
|
|
2280
|
-
border-color: transparent transparent transparent $wac-green-color-darken;
|
|
2281
|
-
}
|
|
2282
|
-
}
|
|
2283
|
-
|
|
2284
|
-
&.top-center {
|
|
2285
|
-
&:before {
|
|
2286
|
-
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2287
|
-
}
|
|
2288
|
-
}
|
|
2289
|
-
|
|
2290
|
-
&.top-right {
|
|
2291
|
-
&:before {
|
|
2292
|
-
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2293
|
-
}
|
|
2294
|
-
}
|
|
2299
|
+
.wac-button__wrapper {
|
|
2300
|
+
color: $wac-second-color;
|
|
2301
|
+
}
|
|
2295
2302
|
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2303
|
+
&:hover,
|
|
2304
|
+
&.hover {
|
|
2305
|
+
background-color: transparent!important;
|
|
2306
|
+
border-color: transparent!important;
|
|
2307
|
+
color: $wac-wizishop-blue-button!important;
|
|
2308
|
+
transition: 0.3s ease-in-out;
|
|
2309
|
+
.wac-button__wrapper {
|
|
2310
|
+
color: $wac-wizishop-blue-button;
|
|
2300
2311
|
}
|
|
2312
|
+
}
|
|
2301
2313
|
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2314
|
+
&:focus,
|
|
2315
|
+
&.focus {
|
|
2316
|
+
background-color: transparent!important;
|
|
2317
|
+
border-color: transparent!important;
|
|
2318
|
+
color: $wac-wizishop-blue-button!important;
|
|
2319
|
+
transition: 0.3s ease-in-out;
|
|
2320
|
+
.wac-button__wrapper {
|
|
2321
|
+
color: $wac-wizishop-blue-button;
|
|
2306
2322
|
}
|
|
2323
|
+
}
|
|
2324
|
+
}
|
|
2307
2325
|
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
}
|
|
2326
|
+
&.is-orange {
|
|
2327
|
+
background-color: $wac-orange-color;
|
|
2328
|
+
border-color: $wac-orange-color;
|
|
2329
|
+
transition: background-color 0.3s ease-in-out;
|
|
2313
2330
|
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2317
|
-
}
|
|
2318
|
-
}
|
|
2331
|
+
.wac-button__loader {
|
|
2332
|
+
background-color: $wac-orange-color-darken;
|
|
2319
2333
|
}
|
|
2320
2334
|
|
|
2321
2335
|
&:hover,
|
|
2322
2336
|
&.hover {
|
|
2323
|
-
background-color: $wac-
|
|
2324
|
-
border-color: $wac-
|
|
2337
|
+
background-color: $wac-orange-color-darken;
|
|
2338
|
+
border-color: $wac-orange-color-darken;
|
|
2325
2339
|
transition: background-color 0.3s ease-in-out;
|
|
2326
2340
|
}
|
|
2327
2341
|
|
|
2328
2342
|
&:focus,
|
|
2329
2343
|
&.focus {
|
|
2330
|
-
background-color: $wac-
|
|
2331
|
-
border-color: $wac-
|
|
2344
|
+
background-color: $wac-orange-color-focus;
|
|
2345
|
+
border-color: $wac-orange-color-focus;
|
|
2332
2346
|
transition: background-color 0.3s ease-in-out;
|
|
2333
2347
|
}
|
|
2334
2348
|
|
|
2335
2349
|
&.is-outlined {
|
|
2336
2350
|
background-color: transparent;
|
|
2337
|
-
border-color: $wac-
|
|
2351
|
+
border-color: $wac-orange-color;
|
|
2352
|
+
|
|
2353
|
+
.wac-button__loader {
|
|
2354
|
+
background-color: $wac-orange-color-darken;
|
|
2355
|
+
}
|
|
2338
2356
|
|
|
2339
2357
|
.wac-button__wrapper, .wac-button__animation {
|
|
2340
|
-
color: $wac-
|
|
2358
|
+
color: $wac-orange-color;
|
|
2341
2359
|
transition: color 0.3s ease-in-out;
|
|
2342
2360
|
}
|
|
2343
2361
|
|
|
2344
2362
|
&:hover,
|
|
2345
2363
|
&.hover {
|
|
2346
|
-
background-color: $wac-
|
|
2347
|
-
border-color: $wac-
|
|
2364
|
+
background-color: $wac-orange-color;
|
|
2365
|
+
border-color: $wac-orange-color;
|
|
2348
2366
|
}
|
|
2349
2367
|
|
|
2350
2368
|
&:focus,
|
|
2351
2369
|
&.focus {
|
|
2352
|
-
background-color: $wac-
|
|
2353
|
-
border-color: $wac-
|
|
2370
|
+
background-color: $wac-orange-color-focus;
|
|
2371
|
+
border-color: $wac-orange-color-focus;
|
|
2354
2372
|
transition: background-color 0.3s ease-in-out;
|
|
2355
2373
|
}
|
|
2356
2374
|
}
|
|
@@ -2358,114 +2376,262 @@ wac-block {
|
|
|
2358
2376
|
&.is-loading {
|
|
2359
2377
|
&:hover,
|
|
2360
2378
|
&.hover {
|
|
2361
|
-
background-color: $wac-
|
|
2379
|
+
background-color: $wac-orange-color;
|
|
2362
2380
|
transition: background-color 0.3s ease-in-out;
|
|
2363
2381
|
}
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
background-color: $wac-green-color;
|
|
2370
|
-
border-color: $wac-green-color;
|
|
2382
|
+
&:focus,
|
|
2383
|
+
&.focus {
|
|
2384
|
+
background-color: $wac-orange-color-focus;
|
|
2385
|
+
border-color: $wac-orange-color-focus;
|
|
2386
|
+
transition: background-color 0.3s ease-in-out;
|
|
2371
2387
|
}
|
|
2372
2388
|
}
|
|
2373
2389
|
}
|
|
2374
2390
|
|
|
2375
|
-
&.is-
|
|
2376
|
-
background-color: $wac-
|
|
2377
|
-
border-color: $wac-
|
|
2391
|
+
&.is-pink {
|
|
2392
|
+
background-color: $wac-pink-color;
|
|
2393
|
+
border-color: $wac-pink-color;
|
|
2378
2394
|
transition: background-color 0.3s ease-in-out;
|
|
2379
2395
|
|
|
2380
2396
|
.wac-button__loader {
|
|
2381
|
-
background-color: $wac-
|
|
2397
|
+
background-color: $wac-pink-color-darken;
|
|
2382
2398
|
}
|
|
2383
2399
|
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
color: $wac-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2400
|
+
&:hover,
|
|
2401
|
+
&.hover {
|
|
2402
|
+
background-color: $wac-pink-color-darken;
|
|
2403
|
+
border-color: $wac-pink-color-darken;
|
|
2404
|
+
transition: background-color 0.3s ease-in-out;
|
|
2405
|
+
}
|
|
2406
|
+
|
|
2407
|
+
&:focus,
|
|
2408
|
+
&.focus {
|
|
2409
|
+
background-color: $wac-pink-color-focus;
|
|
2410
|
+
border-color: $wac-pink-color-focus;
|
|
2411
|
+
transition: background-color 0.3s ease-in-out;
|
|
2412
|
+
}
|
|
2413
|
+
|
|
2414
|
+
&.is-outlined {
|
|
2415
|
+
background-color: transparent;
|
|
2416
|
+
border-color: $wac-pink-color;
|
|
2417
|
+
|
|
2418
|
+
.wac-button__loader {
|
|
2419
|
+
background-color: $wac-pink-color-darken;
|
|
2420
|
+
}
|
|
2421
|
+
|
|
2422
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2423
|
+
color: $wac-pink-color;
|
|
2424
|
+
transition: color 0.3s ease-in-out;
|
|
2425
|
+
}
|
|
2426
|
+
|
|
2427
|
+
&:hover,
|
|
2428
|
+
&.hover {
|
|
2429
|
+
background-color: $wac-pink-color;
|
|
2430
|
+
border-color: $wac-pink-color;
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
&:focus,
|
|
2434
|
+
&.focus {
|
|
2435
|
+
background-color: $wac-pink-color-focus;
|
|
2436
|
+
border-color: $wac-pink-color-focus;
|
|
2437
|
+
transition: background-color 0.3s ease-in-out;
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
|
|
2441
|
+
&.is-loading {
|
|
2442
|
+
&:hover,
|
|
2443
|
+
&.hover {
|
|
2444
|
+
background-color: $wac-pink-color;
|
|
2445
|
+
transition: background-color 0.3s ease-in-out;
|
|
2446
|
+
}
|
|
2447
|
+
&:focus,
|
|
2448
|
+
&.focus {
|
|
2449
|
+
background-color: $wac-pink-color-focus;
|
|
2450
|
+
border-color: $wac-pink-color-focus;
|
|
2451
|
+
transition: background-color 0.3s ease-in-out;
|
|
2452
|
+
}
|
|
2453
|
+
}
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
&.is-white {
|
|
2457
|
+
background-color: $wac-background-color;
|
|
2458
|
+
border-color: $wac-background-color;
|
|
2459
|
+
transition: background-color 0.3s ease-in-out;
|
|
2460
|
+
|
|
2461
|
+
.wac-button__loader {
|
|
2462
|
+
background-color: $wac-background-color-darken;
|
|
2463
|
+
}
|
|
2464
|
+
|
|
2465
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2466
|
+
color: $wac-white;
|
|
2467
|
+
transition: color 0.3s ease-in-out;
|
|
2468
|
+
}
|
|
2469
|
+
|
|
2470
|
+
&:hover,
|
|
2471
|
+
&.hover {
|
|
2472
|
+
background-color: $wac-background-color-darken;
|
|
2473
|
+
border-color: $wac-background-color-darken;
|
|
2474
|
+
transition: background-color 0.3s ease-in-out;
|
|
2475
|
+
}
|
|
2476
|
+
|
|
2477
|
+
&:focus,
|
|
2478
|
+
&.focus {
|
|
2479
|
+
background-color: $wac-background-color-focus;
|
|
2480
|
+
border-color: $wac-background-color-focus;
|
|
2481
|
+
transition: background-color 0.3s ease-in-out;
|
|
2482
|
+
}
|
|
2483
|
+
|
|
2484
|
+
&.is-outlined {
|
|
2485
|
+
background-color: transparent;
|
|
2486
|
+
border-color: $wac-white;
|
|
2487
|
+
|
|
2488
|
+
.wac-button__loader {
|
|
2489
|
+
background-color: $wac-background-color-darken;
|
|
2490
|
+
}
|
|
2491
|
+
|
|
2492
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2493
|
+
color: $wac-white !important;
|
|
2494
|
+
transition: color 0.3s ease-in-out;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
&:hover,
|
|
2498
|
+
&.hover {
|
|
2499
|
+
background-color: $wac-white;
|
|
2500
|
+
border-color: $wac-white;
|
|
2501
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2502
|
+
color: $wac-second-color !important;
|
|
2503
|
+
transition: color 0.3s ease-in-out;
|
|
2504
|
+
}
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
&:focus,
|
|
2508
|
+
&.focus {
|
|
2509
|
+
background-color: $wac-background-color-focus;
|
|
2510
|
+
border-color: $wac-background-color-focus;
|
|
2511
|
+
transition: background-color 0.3s ease-in-out;
|
|
2512
|
+
}
|
|
2513
|
+
}
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
&.is-grey {
|
|
2517
|
+
background-color: $wac-background-color;
|
|
2518
|
+
border-color: $wac-background-color;
|
|
2519
|
+
transition: background-color 0.3s ease-in-out;
|
|
2520
|
+
|
|
2521
|
+
.wac-button__loader {
|
|
2522
|
+
background-color: $wac-background-color-darken;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
&.opacity {
|
|
2526
|
+
background-color: $wac-grey-light;
|
|
2527
|
+
&:hover, &:focus {
|
|
2528
|
+
background-color: $wac-wizishop-blue!important;
|
|
2529
|
+
border-color: $wac-wizishop-blue!important;
|
|
2530
|
+
color: $white!important;
|
|
2531
|
+
.wac-button__wrapper {
|
|
2532
|
+
color: $white!important;
|
|
2533
|
+
i {
|
|
2534
|
+
color: $white!important;
|
|
2535
|
+
}
|
|
2536
|
+
}
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2539
|
+
|
|
2540
|
+
.wac-button__tooltips {
|
|
2541
|
+
background-color: $wac-background-color-darken!important;
|
|
2542
|
+
color: $wac-main-text!important;
|
|
2543
|
+
|
|
2544
|
+
&.right {
|
|
2545
|
+
&:before {
|
|
2546
|
+
border-color: transparent $wac-background-color-darken transparent transparent;
|
|
2547
|
+
}
|
|
2548
|
+
}
|
|
2549
|
+
|
|
2550
|
+
&.left {
|
|
2551
|
+
&:before {
|
|
2552
|
+
border-color: transparent transparent transparent $wac-background-color-darken;
|
|
2553
|
+
}
|
|
2554
|
+
}
|
|
2398
2555
|
|
|
2399
2556
|
&.top-center {
|
|
2400
2557
|
&:before {
|
|
2401
|
-
border-color: $wac-
|
|
2558
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
2402
2559
|
}
|
|
2403
2560
|
}
|
|
2404
2561
|
|
|
2405
2562
|
&.top-right {
|
|
2406
2563
|
&:before {
|
|
2407
|
-
border-color: $wac-
|
|
2564
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
2408
2565
|
}
|
|
2409
2566
|
}
|
|
2410
2567
|
|
|
2411
2568
|
&.top-left {
|
|
2412
2569
|
&:before {
|
|
2413
|
-
border-color: $wac-
|
|
2570
|
+
border-color: $wac-background-color-darken transparent transparent transparent;
|
|
2414
2571
|
}
|
|
2415
2572
|
}
|
|
2416
2573
|
|
|
2417
2574
|
&.bottom-center {
|
|
2418
2575
|
&:before {
|
|
2419
|
-
border-color: transparent transparent $wac-
|
|
2576
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
2420
2577
|
}
|
|
2421
2578
|
}
|
|
2422
2579
|
|
|
2423
2580
|
&.bottom-right {
|
|
2424
2581
|
&:before {
|
|
2425
|
-
border-color: transparent transparent $wac-
|
|
2582
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
2426
2583
|
}
|
|
2427
2584
|
}
|
|
2428
2585
|
|
|
2429
2586
|
&.bottom-left {
|
|
2430
2587
|
&:before {
|
|
2431
|
-
border-color: transparent transparent $wac-
|
|
2588
|
+
border-color: transparent transparent $wac-background-color-darken transparent;
|
|
2432
2589
|
}
|
|
2433
2590
|
}
|
|
2434
2591
|
}
|
|
2435
2592
|
|
|
2593
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2594
|
+
color: $wac-second-color;
|
|
2595
|
+
transition: color 0.3s ease-in-out;
|
|
2596
|
+
}
|
|
2597
|
+
|
|
2436
2598
|
&:hover,
|
|
2437
2599
|
&.hover {
|
|
2438
|
-
background-color: $wac-
|
|
2439
|
-
border-color: $wac-
|
|
2600
|
+
background-color: $wac-background-color-darken;
|
|
2601
|
+
border-color: $wac-background-color-darken;
|
|
2440
2602
|
transition: background-color 0.3s ease-in-out;
|
|
2441
2603
|
}
|
|
2442
2604
|
|
|
2443
2605
|
&:focus,
|
|
2444
2606
|
&.focus {
|
|
2445
|
-
background-color: $wac-
|
|
2446
|
-
border-color: $wac-
|
|
2607
|
+
background-color: $wac-background-color-focus;
|
|
2608
|
+
border-color: $wac-background-color-focus;
|
|
2447
2609
|
transition: background-color 0.3s ease-in-out;
|
|
2448
2610
|
}
|
|
2449
2611
|
|
|
2450
2612
|
&.is-outlined {
|
|
2451
2613
|
background-color: transparent;
|
|
2452
|
-
border-color: $wac-
|
|
2614
|
+
border-color: $wac-border-light;
|
|
2615
|
+
|
|
2616
|
+
.wac-button__loader {
|
|
2617
|
+
background-color: $wac-background-color-darken;
|
|
2618
|
+
}
|
|
2453
2619
|
|
|
2454
2620
|
.wac-button__wrapper, .wac-button__animation {
|
|
2455
|
-
color: $wac-
|
|
2621
|
+
color: $wac-second-color !important;
|
|
2456
2622
|
transition: color 0.3s ease-in-out;
|
|
2457
2623
|
}
|
|
2458
2624
|
|
|
2459
2625
|
&:hover,
|
|
2460
2626
|
&.hover {
|
|
2461
|
-
background-color: $wac-
|
|
2462
|
-
border-color: $wac-
|
|
2627
|
+
background-color: $wac-background-color;
|
|
2628
|
+
border-color: $wac-background-color;
|
|
2463
2629
|
}
|
|
2464
2630
|
|
|
2465
2631
|
&:focus,
|
|
2466
2632
|
&.focus {
|
|
2467
|
-
background-color: $wac-
|
|
2468
|
-
border-color: $wac-
|
|
2633
|
+
background-color: $wac-background-color-focus;
|
|
2634
|
+
border-color: $wac-background-color-focus;
|
|
2469
2635
|
transition: background-color 0.3s ease-in-out;
|
|
2470
2636
|
}
|
|
2471
2637
|
}
|
|
@@ -2473,874 +2639,700 @@ wac-block {
|
|
|
2473
2639
|
&.is-loading {
|
|
2474
2640
|
&:hover,
|
|
2475
2641
|
&.hover {
|
|
2476
|
-
background-color: $wac-
|
|
2642
|
+
background-color: $wac-background-color;
|
|
2477
2643
|
transition: background-color 0.3s ease-in-out;
|
|
2478
2644
|
}
|
|
2479
2645
|
}
|
|
2480
|
-
&.opacity {
|
|
2481
|
-
background-color: $wac-green-opacity;
|
|
2482
|
-
border-color: transparent!important;
|
|
2483
|
-
&:hover, &:focus {
|
|
2484
|
-
background-color: $wac-evolup-green;
|
|
2485
|
-
border-color: $wac-evolup-green;
|
|
2486
|
-
}
|
|
2487
|
-
}
|
|
2488
2646
|
}
|
|
2489
2647
|
|
|
2490
|
-
&.is-
|
|
2491
|
-
background-color:
|
|
2492
|
-
border-color: $wac-
|
|
2648
|
+
&.is-danger {
|
|
2649
|
+
background-color: $wac-primary-button;
|
|
2650
|
+
border-color: $wac-primary-button;
|
|
2493
2651
|
transition: background-color 0.3s ease-in-out;
|
|
2494
2652
|
|
|
2495
2653
|
.wac-button__loader {
|
|
2496
|
-
background-color: $wac-
|
|
2497
|
-
}
|
|
2498
|
-
|
|
2499
|
-
.wac-button__wrapper, .wac-button__animation {
|
|
2500
|
-
color: $wac-secondary-color;
|
|
2654
|
+
background-color: $wac-primary-button-darken;
|
|
2501
2655
|
}
|
|
2502
2656
|
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2657
|
+
.wac-button__tooltips {
|
|
2658
|
+
background-color: $wac-primary-button-darken!important;
|
|
2659
|
+
color: $wac-white!important;
|
|
2660
|
+
&.right {
|
|
2661
|
+
&:before {
|
|
2662
|
+
border-color: transparent $wac-primary-button-darken transparent transparent;
|
|
2663
|
+
}
|
|
2664
|
+
}
|
|
2508
2665
|
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
transition: background-color 0.3s ease-in-out;
|
|
2666
|
+
&.left {
|
|
2667
|
+
&:before {
|
|
2668
|
+
border-color: transparent transparent transparent $wac-primary-button-darken;
|
|
2669
|
+
}
|
|
2514
2670
|
}
|
|
2515
|
-
}
|
|
2516
|
-
}
|
|
2517
2671
|
|
|
2518
|
-
|
|
2519
|
-
|
|
2520
|
-
|
|
2672
|
+
&.top-center {
|
|
2673
|
+
&:before {
|
|
2674
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
2675
|
+
}
|
|
2676
|
+
}
|
|
2521
2677
|
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
color: $wac-white;
|
|
2527
|
-
transition: color 0.3s ease-in-out;
|
|
2678
|
+
&.top-right {
|
|
2679
|
+
&:before {
|
|
2680
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
2681
|
+
}
|
|
2528
2682
|
}
|
|
2529
|
-
}
|
|
2530
|
-
}
|
|
2531
2683
|
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
z-index: 1;
|
|
2538
|
-
transition: width 0.3s ease-in-out;
|
|
2539
|
-
overflow: hidden;
|
|
2684
|
+
&.top-left {
|
|
2685
|
+
&:before {
|
|
2686
|
+
border-color: $wac-primary-button-darken transparent transparent transparent;
|
|
2687
|
+
}
|
|
2688
|
+
}
|
|
2540
2689
|
|
|
2541
|
-
|
|
2542
|
-
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
|
|
2546
|
-
overflow: hidden;
|
|
2547
|
-
text-overflow: clip;
|
|
2548
|
-
font-size: 14px;
|
|
2549
|
-
line-height: 26px;
|
|
2550
|
-
white-space: nowrap;
|
|
2551
|
-
z-index: 3;
|
|
2690
|
+
&.bottom-center {
|
|
2691
|
+
&:before {
|
|
2692
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
2693
|
+
}
|
|
2694
|
+
}
|
|
2552
2695
|
|
|
2553
|
-
|
|
2554
|
-
|
|
2696
|
+
&.bottom-right {
|
|
2697
|
+
&:before {
|
|
2698
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
2699
|
+
}
|
|
2700
|
+
}
|
|
2701
|
+
|
|
2702
|
+
&.bottom-left {
|
|
2703
|
+
&:before {
|
|
2704
|
+
border-color: transparent transparent $wac-primary-button-darken transparent;
|
|
2705
|
+
}
|
|
2555
2706
|
}
|
|
2556
2707
|
}
|
|
2557
2708
|
|
|
2558
|
-
|
|
2559
|
-
|
|
2709
|
+
&:hover,
|
|
2710
|
+
&.hover {
|
|
2711
|
+
background-color: $wac-primary-button-darken;
|
|
2712
|
+
border-color: $wac-primary-button-darken;
|
|
2713
|
+
transition: background-color 0.3s ease-in-out;
|
|
2560
2714
|
}
|
|
2561
|
-
}
|
|
2562
2715
|
|
|
2563
|
-
|
|
2564
|
-
|
|
2565
|
-
|
|
2566
|
-
|
|
2716
|
+
&:focus,
|
|
2717
|
+
&.focus {
|
|
2718
|
+
background-color: $wac-primary-button-focus;
|
|
2719
|
+
border-color: $wac-primary-button-focus;
|
|
2720
|
+
transition: background-color 0.3s ease-in-out;
|
|
2567
2721
|
}
|
|
2568
|
-
}
|
|
2569
2722
|
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
border-color: transparent!important;
|
|
2723
|
+
&.is-outlined {
|
|
2724
|
+
background-color: transparent;
|
|
2725
|
+
border-color: $wac-primary-button;
|
|
2574
2726
|
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
}
|
|
2727
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2728
|
+
color: $wac-primary-button;
|
|
2729
|
+
transition: color 0.3s ease-in-out;
|
|
2730
|
+
}
|
|
2580
2731
|
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
color: $wac-
|
|
2732
|
+
&:hover,
|
|
2733
|
+
&.hover {
|
|
2734
|
+
background-color: $wac-primary-button;
|
|
2735
|
+
border-color: $wac-primary-button;
|
|
2584
2736
|
}
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2737
|
+
|
|
2738
|
+
&:focus,
|
|
2739
|
+
&.focus {
|
|
2740
|
+
background-color: $wac-primary-button-focus;
|
|
2741
|
+
border-color: $wac-primary-button-focus;
|
|
2742
|
+
transition: background-color 0.3s ease-in-out;
|
|
2589
2743
|
}
|
|
2590
2744
|
}
|
|
2591
2745
|
|
|
2592
|
-
&.is-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
i {
|
|
2598
|
-
color: $wac-white!important;
|
|
2599
|
-
}
|
|
2746
|
+
&.is-loading {
|
|
2747
|
+
&:hover,
|
|
2748
|
+
&.hover {
|
|
2749
|
+
background-color: $wac-primary-button;
|
|
2750
|
+
transition: background-color 0.3s ease-in-out;
|
|
2600
2751
|
}
|
|
2601
2752
|
}
|
|
2602
2753
|
|
|
2603
|
-
&.
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
}
|
|
2754
|
+
&.opacity {
|
|
2755
|
+
background-color: $wac-primary-button-light;
|
|
2756
|
+
border-color: transparent!important;
|
|
2607
2757
|
&:hover, &:focus {
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
}
|
|
2758
|
+
background-color: $wac-primary-button;
|
|
2759
|
+
border-color: $wac-primary-button;
|
|
2611
2760
|
}
|
|
2612
2761
|
}
|
|
2613
2762
|
}
|
|
2614
2763
|
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
2623
|
-
|
|
2624
|
-
font-size: 12px;
|
|
2625
|
-
opacity: 0;
|
|
2626
|
-
transition: opacity .3s ease 0s, visibility 0s linear .35s;
|
|
2627
|
-
|
|
2628
|
-
&.oneline {
|
|
2629
|
-
width: auto!important;
|
|
2630
|
-
white-space: nowrap;
|
|
2631
|
-
min-width: unset!important;
|
|
2632
|
-
}
|
|
2764
|
+
&.is-green {
|
|
2765
|
+
.wac-button__tooltips {
|
|
2766
|
+
background-color: $wac-green-color-darken!important;
|
|
2767
|
+
color: $wac-white!important;
|
|
2768
|
+
&.right {
|
|
2769
|
+
&:before {
|
|
2770
|
+
border-color: transparent $wac-green-color-darken transparent transparent;
|
|
2771
|
+
}
|
|
2772
|
+
}
|
|
2633
2773
|
|
|
2634
|
-
|
|
2635
|
-
|
|
2636
|
-
|
|
2774
|
+
&.left {
|
|
2775
|
+
&:before {
|
|
2776
|
+
border-color: transparent transparent transparent $wac-green-color-darken;
|
|
2777
|
+
}
|
|
2778
|
+
}
|
|
2637
2779
|
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
|
|
2641
|
-
|
|
2780
|
+
&.top-center {
|
|
2781
|
+
&:before {
|
|
2782
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2783
|
+
}
|
|
2784
|
+
}
|
|
2642
2785
|
|
|
2643
|
-
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2648
|
-
height: 0;
|
|
2649
|
-
border-style: solid;
|
|
2650
|
-
border-width: 10px 10px 0 10px;
|
|
2651
|
-
border-color: $wizishop-blue transparent transparent transparent;
|
|
2652
|
-
}
|
|
2786
|
+
&.top-right {
|
|
2787
|
+
&:before {
|
|
2788
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2789
|
+
}
|
|
2790
|
+
}
|
|
2653
2791
|
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
&:before {
|
|
2659
|
-
width: 0;
|
|
2660
|
-
height: 0;
|
|
2661
|
-
border-style: solid;
|
|
2662
|
-
border-width: 10px 10px 10px 0;
|
|
2663
|
-
border-color: transparent transparentize($wac-second-color, .1) transparent transparent;
|
|
2664
|
-
right: 100%;
|
|
2665
|
-
top: 50%;
|
|
2666
|
-
transform: translateY(-50%);
|
|
2792
|
+
&.top-left {
|
|
2793
|
+
&:before {
|
|
2794
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2795
|
+
}
|
|
2667
2796
|
}
|
|
2668
|
-
}
|
|
2669
2797
|
|
|
2670
|
-
|
|
2671
|
-
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
&:before {
|
|
2675
|
-
width: 0;
|
|
2676
|
-
height: 0;
|
|
2677
|
-
border-style: solid;
|
|
2678
|
-
border-width: 10px 0 10px 10px;
|
|
2679
|
-
border-color: transparent transparent transparent transparentize($wac-second-color, .1);
|
|
2680
|
-
left: 100%;
|
|
2681
|
-
top: 50%;
|
|
2682
|
-
transform: translateY(-50%);
|
|
2798
|
+
&.bottom-center {
|
|
2799
|
+
&:before {
|
|
2800
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2801
|
+
}
|
|
2683
2802
|
}
|
|
2684
|
-
}
|
|
2685
2803
|
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
&:before {
|
|
2691
|
-
left: 50%;
|
|
2692
|
-
top: 100%;
|
|
2693
|
-
transform: translateX(-50%);
|
|
2804
|
+
&.bottom-right {
|
|
2805
|
+
&:before {
|
|
2806
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2807
|
+
}
|
|
2694
2808
|
}
|
|
2695
|
-
}
|
|
2696
2809
|
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
2700
|
-
|
|
2701
|
-
&:before {
|
|
2702
|
-
right: 10px;
|
|
2703
|
-
top: 100%;
|
|
2810
|
+
&.bottom-left {
|
|
2811
|
+
&:before {
|
|
2812
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2813
|
+
}
|
|
2704
2814
|
}
|
|
2705
2815
|
}
|
|
2816
|
+
}
|
|
2706
2817
|
|
|
2707
|
-
|
|
2708
|
-
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
}
|
|
2818
|
+
&.is-success {
|
|
2819
|
+
background-color: $wac-green-color;
|
|
2820
|
+
border-color: $wac-green-color;
|
|
2821
|
+
transition: background-color 0.3s ease-in-out;
|
|
2822
|
+
|
|
2823
|
+
.wac-button__loader {
|
|
2824
|
+
background-color: $wac-green-color-darken;
|
|
2715
2825
|
}
|
|
2716
2826
|
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2722
|
-
|
|
2723
|
-
|
|
2724
|
-
border-style: solid;
|
|
2725
|
-
border-width: 0 10px 10px 10px;
|
|
2726
|
-
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
2727
|
-
right: auto;
|
|
2728
|
-
top: auto;
|
|
2729
|
-
left: 50%;
|
|
2730
|
-
bottom: 100%;
|
|
2731
|
-
transform: translateX(-50%);
|
|
2827
|
+
.wac-button__tooltips {
|
|
2828
|
+
background-color: $wac-green-color-darken!important;
|
|
2829
|
+
color: $wac-white!important;
|
|
2830
|
+
&.right {
|
|
2831
|
+
&:before {
|
|
2832
|
+
border-color: transparent $wac-green-color-darken transparent transparent;
|
|
2833
|
+
}
|
|
2732
2834
|
}
|
|
2733
|
-
}
|
|
2734
2835
|
|
|
2735
|
-
|
|
2736
|
-
|
|
2737
|
-
|
|
2738
|
-
|
|
2739
|
-
&:before {
|
|
2740
|
-
width: 0;
|
|
2741
|
-
height: 0;
|
|
2742
|
-
border-style: solid;
|
|
2743
|
-
border-width: 0 10px 10px 10px;
|
|
2744
|
-
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
2745
|
-
top: auto;
|
|
2746
|
-
right: 10px;
|
|
2747
|
-
bottom: 100%;
|
|
2836
|
+
&.left {
|
|
2837
|
+
&:before {
|
|
2838
|
+
border-color: transparent transparent transparent $wac-green-color-darken;
|
|
2839
|
+
}
|
|
2748
2840
|
}
|
|
2749
|
-
}
|
|
2750
2841
|
|
|
2751
|
-
|
|
2752
|
-
|
|
2753
|
-
|
|
2754
|
-
|
|
2755
|
-
&:before {
|
|
2756
|
-
width: 0;
|
|
2757
|
-
height: 0;
|
|
2758
|
-
border-style: solid;
|
|
2759
|
-
border-width: 0 10px 10px 10px;
|
|
2760
|
-
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
2761
|
-
right: auto;
|
|
2762
|
-
top: auto;
|
|
2763
|
-
left: 10px;
|
|
2764
|
-
bottom: 100%;
|
|
2842
|
+
&.top-center {
|
|
2843
|
+
&:before {
|
|
2844
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2845
|
+
}
|
|
2765
2846
|
}
|
|
2766
|
-
}
|
|
2767
|
-
}
|
|
2768
2847
|
|
|
2769
|
-
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2848
|
+
&.top-right {
|
|
2849
|
+
&:before {
|
|
2850
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2851
|
+
}
|
|
2852
|
+
}
|
|
2853
|
+
|
|
2854
|
+
&.top-left {
|
|
2855
|
+
&:before {
|
|
2856
|
+
border-color: $wac-green-color-darken transparent transparent transparent;
|
|
2857
|
+
}
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
&.bottom-center {
|
|
2861
|
+
&:before {
|
|
2862
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
|
|
2866
|
+
&.bottom-right {
|
|
2867
|
+
&:before {
|
|
2868
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2869
|
+
}
|
|
2870
|
+
}
|
|
2871
|
+
|
|
2872
|
+
&.bottom-left {
|
|
2873
|
+
&:before {
|
|
2874
|
+
border-color: transparent transparent $wac-green-color-darken transparent;
|
|
2875
|
+
}
|
|
2775
2876
|
}
|
|
2776
2877
|
}
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2780
|
-
|
|
2781
|
-
|
|
2782
|
-
|
|
2878
|
+
|
|
2879
|
+
&:hover,
|
|
2880
|
+
&.hover {
|
|
2881
|
+
background-color: $wac-green-color-darken;
|
|
2882
|
+
border-color: $wac-green-color-darken;
|
|
2883
|
+
transition: background-color 0.3s ease-in-out;
|
|
2783
2884
|
}
|
|
2784
|
-
}
|
|
2785
|
-
}
|
|
2786
2885
|
|
|
2787
|
-
|
|
2788
|
-
|
|
2789
|
-
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
z-index: 9;
|
|
2793
|
-
.wac-calendar {
|
|
2794
|
-
&__absolute {
|
|
2795
|
-
visibility: visible;
|
|
2796
|
-
opacity: 1;
|
|
2797
|
-
transition: 0.3s ease opacity 0.1s, 0s visibility linear 0s;
|
|
2798
|
-
}
|
|
2886
|
+
&:focus,
|
|
2887
|
+
&.focus {
|
|
2888
|
+
background-color: $wac-green-color-focus;
|
|
2889
|
+
border-color: $wac-green-color-focus;
|
|
2890
|
+
transition: background-color 0.3s ease-in-out;
|
|
2799
2891
|
}
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2892
|
+
|
|
2893
|
+
&.is-outlined {
|
|
2894
|
+
background-color: transparent;
|
|
2895
|
+
border-color: $wac-green-color;
|
|
2896
|
+
|
|
2897
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
2898
|
+
color: $wac-green-color;
|
|
2899
|
+
transition: color 0.3s ease-in-out;
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
&:hover,
|
|
2903
|
+
&.hover {
|
|
2904
|
+
background-color: $wac-green-color;
|
|
2905
|
+
border-color: $wac-green-color;
|
|
2906
|
+
}
|
|
2907
|
+
|
|
2908
|
+
&:focus,
|
|
2909
|
+
&.focus {
|
|
2910
|
+
background-color: $wac-green-color-focus;
|
|
2911
|
+
border-color: $wac-green-color-focus;
|
|
2912
|
+
transition: background-color 0.3s ease-in-out;
|
|
2811
2913
|
}
|
|
2812
2914
|
}
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
&--onlyDate {
|
|
2821
|
-
.wac-calendar__wrapper__input__time, .wac-calendar__wrapper__input__date:after {
|
|
2822
|
-
display: none;
|
|
2915
|
+
|
|
2916
|
+
&.is-loading {
|
|
2917
|
+
&:hover,
|
|
2918
|
+
&.hover {
|
|
2919
|
+
background-color: $wac-green-color;
|
|
2920
|
+
transition: background-color 0.3s ease-in-out;
|
|
2921
|
+
}
|
|
2823
2922
|
}
|
|
2824
|
-
|
|
2825
|
-
|
|
2826
|
-
|
|
2923
|
+
&.opacity {
|
|
2924
|
+
background-color: $wac-green-opacity;
|
|
2925
|
+
border-color: transparent!important;
|
|
2926
|
+
&:hover, &:focus {
|
|
2927
|
+
background-color: $wac-green-color;
|
|
2928
|
+
border-color: $wac-green-color;
|
|
2929
|
+
}
|
|
2827
2930
|
}
|
|
2828
2931
|
}
|
|
2829
|
-
&__label {
|
|
2830
|
-
font-size: rem(14) !important;
|
|
2831
|
-
line-height: rem(16) !important;
|
|
2832
|
-
margin: 0 0 10px !important;
|
|
2833
|
-
color: $wac-color-text-grey !important;
|
|
2834
|
-
cursor: pointer;
|
|
2835
2932
|
|
|
2836
|
-
|
|
2837
|
-
|
|
2933
|
+
&.is-evolup {
|
|
2934
|
+
background-color: $wac-evolup-green;
|
|
2935
|
+
border-color: $wac-evolup-green;
|
|
2936
|
+
transition: background-color 0.3s ease-in-out;
|
|
2937
|
+
|
|
2938
|
+
.wac-button__loader {
|
|
2939
|
+
background-color: $wac-evolup-green-darken;
|
|
2838
2940
|
}
|
|
2839
|
-
|
|
2840
|
-
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
border-radius: 3px;
|
|
2847
|
-
display: flex;
|
|
2848
|
-
justify-content: flex-start;
|
|
2849
|
-
align-items: center;
|
|
2850
|
-
align-content: center;
|
|
2851
|
-
min-width: 240px;
|
|
2852
|
-
max-width: 240px;
|
|
2853
|
-
padding: 7px 20px;
|
|
2854
|
-
border: 1px solid $wac-border-form;
|
|
2855
|
-
cursor: pointer;
|
|
2856
|
-
&__icon {
|
|
2857
|
-
width: 16px;
|
|
2858
|
-
margin: 0 10px 0 0;
|
|
2859
|
-
display: flex;
|
|
2860
|
-
justify-content: space-between;
|
|
2861
|
-
align-items: center;
|
|
2862
|
-
align-content: center;
|
|
2863
|
-
cursor: pointer;
|
|
2864
|
-
&:hover,
|
|
2865
|
-
&:focus {
|
|
2866
|
-
i {
|
|
2867
|
-
color: darken($wac-wizishop-blue, 15%);
|
|
2868
|
-
}
|
|
2941
|
+
|
|
2942
|
+
.wac-button__tooltips {
|
|
2943
|
+
background-color: $wac-evolup-green-darken!important;
|
|
2944
|
+
color: $wac-white!important;
|
|
2945
|
+
&.right {
|
|
2946
|
+
&:before {
|
|
2947
|
+
border-color: transparent $wac-evolup-green-darken transparent transparent;
|
|
2869
2948
|
}
|
|
2870
|
-
|
|
2871
|
-
|
|
2872
|
-
|
|
2873
|
-
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
&.left {
|
|
2952
|
+
&:before {
|
|
2953
|
+
border-color: transparent transparent transparent $wac-evolup-green-darken;
|
|
2874
2954
|
}
|
|
2875
2955
|
}
|
|
2876
|
-
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
|
|
2880
|
-
color: $wac-main-text;
|
|
2881
|
-
font-size: rem(14);
|
|
2882
|
-
line-height: rem(24);
|
|
2883
|
-
margin: 0 15px 0 0;
|
|
2884
|
-
letter-spacing: 0.65px;
|
|
2885
|
-
&:after {
|
|
2886
|
-
content: '';
|
|
2887
|
-
display: block;
|
|
2888
|
-
position: absolute;
|
|
2889
|
-
width: 1px;
|
|
2890
|
-
height: 15px;
|
|
2891
|
-
background-color: $wac-input-border;
|
|
2892
|
-
top: 50%;
|
|
2893
|
-
right: -15px;
|
|
2894
|
-
transform: translateY(-50%);
|
|
2956
|
+
|
|
2957
|
+
&.top-center {
|
|
2958
|
+
&:before {
|
|
2959
|
+
border-color: $wac-evolup-green-darken transparent transparent transparent;
|
|
2895
2960
|
}
|
|
2896
2961
|
}
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2901
|
-
|
|
2902
|
-
color: $wac-main-text;
|
|
2903
|
-
margin: 0 15px;
|
|
2904
|
-
letter-spacing: 1.3px;
|
|
2962
|
+
|
|
2963
|
+
&.top-right {
|
|
2964
|
+
&:before {
|
|
2965
|
+
border-color: $wac-evolup-green-darken transparent transparent transparent;
|
|
2966
|
+
}
|
|
2905
2967
|
}
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
font-size: 14px;
|
|
2911
|
-
transition: color 300ms ease;
|
|
2912
|
-
color: $wac-primary-button;
|
|
2913
|
-
font-weight: 400;
|
|
2968
|
+
|
|
2969
|
+
&.top-left {
|
|
2970
|
+
&:before {
|
|
2971
|
+
border-color: $wac-evolup-green-darken transparent transparent transparent;
|
|
2914
2972
|
}
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2973
|
+
}
|
|
2974
|
+
|
|
2975
|
+
&.bottom-center {
|
|
2976
|
+
&:before {
|
|
2977
|
+
border-color: transparent transparent $wac-evolup-green-darken transparent;
|
|
2920
2978
|
}
|
|
2921
2979
|
}
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
2927
|
-
position: relative;
|
|
2928
|
-
align-content: center;
|
|
2929
|
-
align-items: center;
|
|
2930
|
-
cursor: pointer;
|
|
2931
|
-
&:after {
|
|
2932
|
-
position: absolute;
|
|
2933
|
-
content: '';
|
|
2934
|
-
border-bottom: dashed 1px $wac-calendar-primary;
|
|
2935
|
-
width: 100%;
|
|
2936
|
-
bottom: 0;
|
|
2937
|
-
left: 0;
|
|
2980
|
+
|
|
2981
|
+
&.bottom-right {
|
|
2982
|
+
&:before {
|
|
2983
|
+
border-color: transparent transparent $wac-evolup-green-darken transparent;
|
|
2984
|
+
}
|
|
2938
2985
|
}
|
|
2939
|
-
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
justify-content: space-between;
|
|
2944
|
-
align-items: center;
|
|
2945
|
-
align-content: center;
|
|
2946
|
-
i {
|
|
2947
|
-
font-size: rem(14);
|
|
2948
|
-
color: $wac-wizishop-blue;
|
|
2949
|
-
transition: color 300ms ease;
|
|
2986
|
+
|
|
2987
|
+
&.bottom-left {
|
|
2988
|
+
&:before {
|
|
2989
|
+
border-color: transparent transparent $wac-evolup-green-darken transparent;
|
|
2950
2990
|
}
|
|
2951
2991
|
}
|
|
2952
|
-
|
|
2953
|
-
|
|
2954
|
-
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
|
|
2958
|
-
|
|
2992
|
+
}
|
|
2993
|
+
|
|
2994
|
+
&:hover,
|
|
2995
|
+
&.hover {
|
|
2996
|
+
background-color: $wac-evolup-green-darken;
|
|
2997
|
+
border-color: $wac-evolup-green-darken;
|
|
2998
|
+
transition: background-color 0.3s ease-in-out;
|
|
2999
|
+
}
|
|
3000
|
+
|
|
3001
|
+
&:focus,
|
|
3002
|
+
&.focus {
|
|
3003
|
+
background-color: $wac-evolup-green-focus;
|
|
3004
|
+
border-color: $wac-evolup-green-focus;
|
|
3005
|
+
transition: background-color 0.3s ease-in-out;
|
|
3006
|
+
}
|
|
3007
|
+
|
|
3008
|
+
&.is-outlined {
|
|
3009
|
+
background-color: transparent;
|
|
3010
|
+
border-color: $wac-evolup-green;
|
|
3011
|
+
|
|
3012
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3013
|
+
color: $wac-evolup-green;
|
|
3014
|
+
transition: color 0.3s ease-in-out;
|
|
2959
3015
|
}
|
|
3016
|
+
|
|
2960
3017
|
&:hover,
|
|
2961
|
-
|
|
2962
|
-
|
|
2963
|
-
|
|
2964
|
-
&__editInPlace {
|
|
2965
|
-
&__date {
|
|
2966
|
-
color: darken($wac-header-color, 30%);
|
|
2967
|
-
}
|
|
2968
|
-
&__icon {
|
|
2969
|
-
i {
|
|
2970
|
-
color: darken($wac-wizishop-blue, 15%);
|
|
2971
|
-
}
|
|
2972
|
-
}
|
|
2973
|
-
}
|
|
2974
|
-
}
|
|
2975
|
-
}
|
|
3018
|
+
&.hover {
|
|
3019
|
+
background-color: $wac-evolup-green;
|
|
3020
|
+
border-color: $wac-evolup-green;
|
|
2976
3021
|
}
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
2982
|
-
|
|
2983
|
-
align-content: center;
|
|
2984
|
-
min-width: 220px;
|
|
2985
|
-
max-width: 220px;
|
|
2986
|
-
padding: 11px 19px;
|
|
2987
|
-
border: 1px solid $wac-input-border;
|
|
2988
|
-
cursor: pointer;
|
|
2989
|
-
background: $wac-white no-repeat center right 15px
|
|
2990
|
-
url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%226.032%22%3E%3Cpath%20data-name%3D%22Arrow%20copie%203%22%20d%3D%22M0%20.016L5%204.65l5-4.634v1.378L5%206.028%200%201.394V.02z%22%20fill%3D%22%231e2e43%22%20fill-rule%3D%22evenodd%22/%3E%3C/svg%3E);
|
|
2991
|
-
&__icon {
|
|
2992
|
-
width: 16px;
|
|
2993
|
-
margin: 0 10px 0 0;
|
|
2994
|
-
display: flex;
|
|
2995
|
-
justify-content: space-between;
|
|
2996
|
-
align-items: center;
|
|
2997
|
-
align-content: center;
|
|
2998
|
-
cursor: pointer;
|
|
2999
|
-
&:hover,
|
|
3000
|
-
&:focus {
|
|
3001
|
-
i {
|
|
3002
|
-
color: darken($wac-second-color, 15%);
|
|
3003
|
-
}
|
|
3004
|
-
}
|
|
3005
|
-
i {
|
|
3006
|
-
font-size: rem(18);
|
|
3007
|
-
font-weight: 400;
|
|
3008
|
-
color: $wac-second-color;
|
|
3009
|
-
transition: color 300ms ease;
|
|
3010
|
-
}
|
|
3022
|
+
|
|
3023
|
+
&:focus,
|
|
3024
|
+
&.focus {
|
|
3025
|
+
background-color: $wac-evolup-green-focus;
|
|
3026
|
+
border-color: $wac-evolup-green-focus;
|
|
3027
|
+
transition: background-color 0.3s ease-in-out;
|
|
3011
3028
|
}
|
|
3012
|
-
|
|
3013
|
-
|
|
3014
|
-
|
|
3015
|
-
|
|
3016
|
-
|
|
3017
|
-
|
|
3018
|
-
|
|
3019
|
-
&:after {
|
|
3020
|
-
display: none;
|
|
3021
|
-
}
|
|
3029
|
+
}
|
|
3030
|
+
|
|
3031
|
+
&.is-loading {
|
|
3032
|
+
&:hover,
|
|
3033
|
+
&.hover {
|
|
3034
|
+
background-color: $wac-evolup-green;
|
|
3035
|
+
transition: background-color 0.3s ease-in-out;
|
|
3022
3036
|
}
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3026
|
-
|
|
3027
|
-
|
|
3028
|
-
|
|
3029
|
-
|
|
3030
|
-
}
|
|
3031
|
-
&:hover,
|
|
3032
|
-
&:focus {
|
|
3033
|
-
i {
|
|
3034
|
-
color: darken($wac-primary-button, 15%);
|
|
3035
|
-
}
|
|
3036
|
-
}
|
|
3037
|
+
}
|
|
3038
|
+
&.opacity {
|
|
3039
|
+
background-color: $wac-green-opacity;
|
|
3040
|
+
border-color: transparent!important;
|
|
3041
|
+
&:hover, &:focus {
|
|
3042
|
+
background-color: $wac-evolup-green;
|
|
3043
|
+
border-color: $wac-evolup-green;
|
|
3037
3044
|
}
|
|
3038
3045
|
}
|
|
3039
3046
|
}
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
border: 1px solid $wac-border-light;
|
|
3049
|
-
background-color: $wac-white;
|
|
3050
|
-
box-shadow: 3px 3px 20px $wac-calendar-box-shadow;
|
|
3051
|
-
border-radius: 3px;
|
|
3052
|
-
max-width: 268px;
|
|
3053
|
-
min-width: 268px;
|
|
3054
|
-
&.bottom {
|
|
3055
|
-
transform: translateX(-50%) translateY(10px);
|
|
3056
|
-
}
|
|
3057
|
-
&.top {
|
|
3058
|
-
top: auto;
|
|
3059
|
-
bottom: 100%;
|
|
3060
|
-
transform: translateX(-50%) translateY(-10px);
|
|
3047
|
+
|
|
3048
|
+
&.is-light {
|
|
3049
|
+
background-color: transparent;
|
|
3050
|
+
border-color: $wac-border-color;
|
|
3051
|
+
transition: background-color 0.3s ease-in-out;
|
|
3052
|
+
|
|
3053
|
+
.wac-button__loader {
|
|
3054
|
+
background-color: $wac-hover-btn-grey;
|
|
3061
3055
|
}
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
right: 100%;
|
|
3066
|
-
top: 50%;
|
|
3056
|
+
|
|
3057
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3058
|
+
color: $wac-secondary-color;
|
|
3067
3059
|
}
|
|
3068
|
-
|
|
3069
|
-
|
|
3070
|
-
|
|
3071
|
-
|
|
3060
|
+
|
|
3061
|
+
&:hover,
|
|
3062
|
+
&.hover {
|
|
3063
|
+
background-color: $wac-hover-btn-grey;
|
|
3064
|
+
transition: background-color 0.3s ease-in-out;
|
|
3072
3065
|
}
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3066
|
+
|
|
3067
|
+
&.is-loading {
|
|
3068
|
+
&:hover,
|
|
3069
|
+
&.hover {
|
|
3070
|
+
background-color: transparent;
|
|
3071
|
+
transition: background-color 0.3s ease-in-out;
|
|
3072
|
+
}
|
|
3079
3073
|
}
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3074
|
+
}
|
|
3075
|
+
|
|
3076
|
+
&.disabled {
|
|
3077
|
+
opacity: .7!important;
|
|
3078
|
+
}
|
|
3079
|
+
|
|
3080
|
+
&.is-outlined {
|
|
3081
|
+
&:hover,
|
|
3082
|
+
&.hover {
|
|
3083
|
+
.wac-button__wrapper, .wac-button__animation {
|
|
3084
|
+
color: $wac-white;
|
|
3085
|
+
transition: color 0.3s ease-in-out;
|
|
3086
|
+
}
|
|
3085
3087
|
}
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3088
|
+
}
|
|
3089
|
+
|
|
3090
|
+
&__loader {
|
|
3091
|
+
position: absolute;
|
|
3092
|
+
left: -1px;
|
|
3093
|
+
top: 0;
|
|
3094
|
+
height: 100%;
|
|
3095
|
+
z-index: 1;
|
|
3096
|
+
transition: width 0.3s ease-in-out;
|
|
3097
|
+
overflow: hidden;
|
|
3098
|
+
|
|
3099
|
+
span {
|
|
3100
|
+
position: absolute;
|
|
3101
|
+
left: 20px;
|
|
3102
|
+
top: 7px;
|
|
3103
|
+
color: $wac-white;
|
|
3104
|
+
overflow: hidden;
|
|
3105
|
+
text-overflow: clip;
|
|
3106
|
+
font-size: 14px;
|
|
3107
|
+
line-height: 26px;
|
|
3108
|
+
white-space: nowrap;
|
|
3109
|
+
z-index: 3;
|
|
3110
|
+
|
|
3111
|
+
i {
|
|
3112
|
+
margin-right: 1.4px;
|
|
3113
|
+
}
|
|
3091
3114
|
}
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
transform: translateY(10px) translateX(10px);
|
|
3115
|
+
|
|
3116
|
+
&.outlined {
|
|
3117
|
+
z-index: 4;
|
|
3096
3118
|
}
|
|
3097
|
-
|
|
3098
|
-
|
|
3119
|
+
}
|
|
3120
|
+
|
|
3121
|
+
&.alone {
|
|
3122
|
+
max-width: 40px!important;
|
|
3123
|
+
.wac-button__loader span {
|
|
3124
|
+
left: 14.6px;
|
|
3099
3125
|
}
|
|
3100
|
-
|
|
3101
|
-
position: relative;
|
|
3102
|
-
background-color: $wac-white;
|
|
3103
|
-
padding: 20px;
|
|
3104
|
-
width: 100%;
|
|
3105
|
-
&:before {
|
|
3106
|
-
content: '';
|
|
3107
|
-
width: 100%;
|
|
3108
|
-
height: 5px;
|
|
3109
|
-
bottom: 100%;
|
|
3110
|
-
margin-bottom: -2px;
|
|
3111
|
-
display: block;
|
|
3112
|
-
position: absolute;
|
|
3113
|
-
left: 0;
|
|
3114
|
-
background-color: $wac-white;
|
|
3115
|
-
}
|
|
3116
|
-
&__wrapper {
|
|
3117
|
-
width: 100% !important;
|
|
3118
|
-
display: flex;
|
|
3119
|
-
align-items: center;
|
|
3120
|
-
align-content: center;
|
|
3121
|
-
justify-content: center;
|
|
3122
|
-
min-height: 42px;
|
|
3123
|
-
position: relative;
|
|
3124
|
-
&:before {
|
|
3125
|
-
content: '';
|
|
3126
|
-
display: block;
|
|
3127
|
-
background-color: $wac-wizishop-blue;
|
|
3128
|
-
width: 4px;
|
|
3129
|
-
height: 4px;
|
|
3130
|
-
border-radius: 50%;
|
|
3131
|
-
position: absolute;
|
|
3132
|
-
top: 50%;
|
|
3133
|
-
left: 50%;
|
|
3134
|
-
transform: translate(-50%, -50%);
|
|
3135
|
-
margin-top: -4px;
|
|
3136
|
-
}
|
|
3137
|
-
&:after {
|
|
3138
|
-
content: '';
|
|
3139
|
-
display: block;
|
|
3140
|
-
background-color: $wac-wizishop-blue;
|
|
3141
|
-
width: 4px;
|
|
3142
|
-
height: 4px;
|
|
3143
|
-
border-radius: 50%;
|
|
3144
|
-
position: absolute;
|
|
3145
|
-
top: 50%;
|
|
3146
|
-
left: 50%;
|
|
3147
|
-
transform: translate(-50%, -50%);
|
|
3148
|
-
margin-top: 4px;
|
|
3149
|
-
}
|
|
3150
|
-
&__hours,
|
|
3151
|
-
&__minutes {
|
|
3152
|
-
position: relative;
|
|
3153
|
-
width: 100px;
|
|
3154
|
-
display: flex;
|
|
3155
|
-
flex-wrap: nowrap;
|
|
3156
|
-
&__left,
|
|
3157
|
-
&__right {
|
|
3158
|
-
width: 100%;
|
|
3159
|
-
display: flex;
|
|
3160
|
-
flex-wrap: nowrap;
|
|
3161
|
-
justify-content: center;
|
|
3162
|
-
flex-direction: column;
|
|
3163
|
-
align-items: center;
|
|
3164
|
-
align-content: center;
|
|
3165
|
-
}
|
|
3166
|
-
&__btn {
|
|
3167
|
-
display: flex;
|
|
3168
|
-
justify-content: center;
|
|
3169
|
-
flex-direction: column;
|
|
3170
|
-
align-items: center;
|
|
3171
|
-
align-content: center;
|
|
3172
|
-
width: 40px;
|
|
3173
|
-
height: 20px;
|
|
3174
|
-
background-color: $wac-gray-background;
|
|
3175
|
-
box-shadow: none;
|
|
3176
|
-
border: none;
|
|
3177
|
-
cursor: pointer;
|
|
3178
|
-
transition: 0.3s ease;
|
|
3179
|
-
&:hover,
|
|
3180
|
-
&:focus {
|
|
3181
|
-
background-color: $wac-wizishop-blue;
|
|
3182
|
-
i {
|
|
3183
|
-
color: $wac-white;
|
|
3184
|
-
}
|
|
3185
|
-
}
|
|
3186
|
-
&:first-child {
|
|
3187
|
-
margin: 0 0 2px;
|
|
3188
|
-
}
|
|
3189
|
-
i {
|
|
3190
|
-
font-size: rem(10);
|
|
3191
|
-
color: $wac-second-color;
|
|
3192
|
-
margin: 0;
|
|
3193
|
-
}
|
|
3194
|
-
}
|
|
3126
|
+
}
|
|
3195
3127
|
|
|
3196
|
-
|
|
3197
|
-
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
}
|
|
3128
|
+
&.opacity {
|
|
3129
|
+
min-width: rem(40);
|
|
3130
|
+
min-height: rem(40);
|
|
3131
|
+
border-color: transparent!important;
|
|
3201
3132
|
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3133
|
+
&.alone {
|
|
3134
|
+
display: flex;
|
|
3135
|
+
align-items: center;
|
|
3136
|
+
justify-content: center;
|
|
3137
|
+
}
|
|
3206
3138
|
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
margin: 0;
|
|
3215
|
-
width: 100%;
|
|
3216
|
-
}
|
|
3139
|
+
&.is-success {
|
|
3140
|
+
i {
|
|
3141
|
+
color: $wac-green-color!important;
|
|
3142
|
+
}
|
|
3143
|
+
&:hover, &:focus {
|
|
3144
|
+
i {
|
|
3145
|
+
color: $wac-white!important;
|
|
3217
3146
|
}
|
|
3218
|
-
|
|
3219
|
-
|
|
3147
|
+
}
|
|
3148
|
+
}
|
|
3149
|
+
|
|
3150
|
+
&.is-evolup {
|
|
3151
|
+
i {
|
|
3152
|
+
color: $wac-evolup-green!important;
|
|
3153
|
+
}
|
|
3154
|
+
&:hover, &:focus {
|
|
3155
|
+
i {
|
|
3156
|
+
color: $wac-white!important;
|
|
3220
3157
|
}
|
|
3221
|
-
|
|
3222
|
-
|
|
3158
|
+
}
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
&.is-danger {
|
|
3162
|
+
i {
|
|
3163
|
+
color: $wac-primary-button!important;
|
|
3164
|
+
}
|
|
3165
|
+
&:hover, &:focus {
|
|
3166
|
+
i {
|
|
3167
|
+
color: $wac-white!important;
|
|
3223
3168
|
}
|
|
3224
3169
|
}
|
|
3225
3170
|
}
|
|
3226
3171
|
}
|
|
3227
|
-
}
|
|
3228
3172
|
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3173
|
+
&__tooltips {
|
|
3174
|
+
position: absolute;
|
|
3175
|
+
width: auto;
|
|
3176
|
+
padding: 4px;
|
|
3177
|
+
border-radius: 3px;
|
|
3178
|
+
background: $wizishop-blue;
|
|
3179
|
+
color: $wac-white;
|
|
3180
|
+
min-width: 100%;
|
|
3181
|
+
visibility: hidden;
|
|
3182
|
+
font-size: 12px;
|
|
3183
|
+
opacity: 0;
|
|
3184
|
+
transition: opacity .3s ease 0s, visibility 0s linear .35s;
|
|
3232
3185
|
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3186
|
+
&.oneline {
|
|
3187
|
+
width: auto!important;
|
|
3188
|
+
white-space: nowrap;
|
|
3189
|
+
min-width: unset!important;
|
|
3190
|
+
}
|
|
3236
3191
|
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
}
|
|
3241
|
-
}
|
|
3192
|
+
@include media('>=tablet') {
|
|
3193
|
+
min-width: 600px;
|
|
3194
|
+
}
|
|
3242
3195
|
|
|
3196
|
+
@include media('<tablet') {
|
|
3197
|
+
min-width: 100% !important;
|
|
3198
|
+
max-width: 100% !important;
|
|
3199
|
+
}
|
|
3243
3200
|
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3201
|
+
&:before {
|
|
3202
|
+
content: '';
|
|
3203
|
+
display: none!important;
|
|
3204
|
+
position: absolute;
|
|
3205
|
+
width: 0;
|
|
3206
|
+
height: 0;
|
|
3207
|
+
border-style: solid;
|
|
3208
|
+
border-width: 10px 10px 0 10px;
|
|
3209
|
+
border-color: $wizishop-blue transparent transparent transparent;
|
|
3210
|
+
}
|
|
3252
3211
|
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3212
|
+
&.right {
|
|
3213
|
+
left: 100%;
|
|
3214
|
+
transform: translate(10px, -50%);
|
|
3215
|
+
top: 50%;
|
|
3216
|
+
&:before {
|
|
3217
|
+
width: 0;
|
|
3218
|
+
height: 0;
|
|
3219
|
+
border-style: solid;
|
|
3220
|
+
border-width: 10px 10px 10px 0;
|
|
3221
|
+
border-color: transparent transparentize($wac-second-color, .1) transparent transparent;
|
|
3222
|
+
right: 100%;
|
|
3223
|
+
top: 50%;
|
|
3224
|
+
transform: translateY(-50%);
|
|
3225
|
+
}
|
|
3259
3226
|
}
|
|
3260
|
-
}
|
|
3261
|
-
}
|
|
3262
3227
|
|
|
3263
|
-
|
|
3264
|
-
|
|
3265
|
-
|
|
3266
|
-
|
|
3267
|
-
|
|
3268
|
-
|
|
3269
|
-
|
|
3270
|
-
|
|
3271
|
-
|
|
3228
|
+
&.left {
|
|
3229
|
+
right: 100%;
|
|
3230
|
+
transform: translate(-10px, -50%);
|
|
3231
|
+
top: 50%;
|
|
3232
|
+
&:before {
|
|
3233
|
+
width: 0;
|
|
3234
|
+
height: 0;
|
|
3235
|
+
border-style: solid;
|
|
3236
|
+
border-width: 10px 0 10px 10px;
|
|
3237
|
+
border-color: transparent transparent transparent transparentize($wac-second-color, .1);
|
|
3238
|
+
left: 100%;
|
|
3239
|
+
top: 50%;
|
|
3240
|
+
transform: translateY(-50%);
|
|
3241
|
+
}
|
|
3242
|
+
}
|
|
3272
3243
|
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
|
|
3244
|
+
&.top-center {
|
|
3245
|
+
left: 50%;
|
|
3246
|
+
transform: translate(-50%, -10px);
|
|
3247
|
+
bottom: 100%;
|
|
3248
|
+
&:before {
|
|
3249
|
+
left: 50%;
|
|
3250
|
+
top: 100%;
|
|
3251
|
+
transform: translateX(-50%);
|
|
3252
|
+
}
|
|
3253
|
+
}
|
|
3276
3254
|
|
|
3277
|
-
|
|
3278
|
-
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
align-content: center;
|
|
3287
|
-
border: 1px solid $wac-border-light;
|
|
3288
|
-
transition: 0.3s ease;
|
|
3289
|
-
> svg {
|
|
3290
|
-
display: none !important;
|
|
3291
|
-
}
|
|
3292
|
-
}
|
|
3255
|
+
&.top-right {
|
|
3256
|
+
right: 0;
|
|
3257
|
+
transform: translate(0, -10px);
|
|
3258
|
+
bottom: 100%;
|
|
3259
|
+
&:before {
|
|
3260
|
+
right: 10px;
|
|
3261
|
+
top: 100%;
|
|
3262
|
+
}
|
|
3263
|
+
}
|
|
3293
3264
|
|
|
3294
|
-
|
|
3295
|
-
|
|
3296
|
-
|
|
3297
|
-
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
|
|
3303
|
-
}
|
|
3265
|
+
&.top-left {
|
|
3266
|
+
left: 0;
|
|
3267
|
+
transform: translate(0, -10px);
|
|
3268
|
+
bottom: 100%;
|
|
3269
|
+
&:before {
|
|
3270
|
+
left: 10px;
|
|
3271
|
+
top: 100%;
|
|
3272
|
+
}
|
|
3273
|
+
}
|
|
3304
3274
|
|
|
3305
|
-
|
|
3306
|
-
|
|
3307
|
-
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
|
|
3313
|
-
|
|
3314
|
-
|
|
3275
|
+
&.bottom-center {
|
|
3276
|
+
left: 50%;
|
|
3277
|
+
transform: translate(-50%, 10px);
|
|
3278
|
+
top: 100%;
|
|
3279
|
+
&:before {
|
|
3280
|
+
width: 0;
|
|
3281
|
+
height: 0;
|
|
3282
|
+
border-style: solid;
|
|
3283
|
+
border-width: 0 10px 10px 10px;
|
|
3284
|
+
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
3285
|
+
right: auto;
|
|
3286
|
+
top: auto;
|
|
3287
|
+
left: 50%;
|
|
3288
|
+
bottom: 100%;
|
|
3289
|
+
transform: translateX(-50%);
|
|
3290
|
+
}
|
|
3291
|
+
}
|
|
3315
3292
|
|
|
3316
|
-
|
|
3317
|
-
|
|
3318
|
-
|
|
3319
|
-
|
|
3320
|
-
|
|
3321
|
-
|
|
3322
|
-
|
|
3323
|
-
|
|
3324
|
-
|
|
3325
|
-
|
|
3326
|
-
|
|
3327
|
-
|
|
3328
|
-
|
|
3293
|
+
&.bottom-right {
|
|
3294
|
+
right: 0;
|
|
3295
|
+
transform: translate(0, 10px);
|
|
3296
|
+
top: 100%;
|
|
3297
|
+
&:before {
|
|
3298
|
+
width: 0;
|
|
3299
|
+
height: 0;
|
|
3300
|
+
border-style: solid;
|
|
3301
|
+
border-width: 0 10px 10px 10px;
|
|
3302
|
+
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
3303
|
+
top: auto;
|
|
3304
|
+
right: 10px;
|
|
3305
|
+
bottom: 100%;
|
|
3306
|
+
}
|
|
3307
|
+
}
|
|
3308
|
+
|
|
3309
|
+
&.bottom-left {
|
|
3310
|
+
left: 0;
|
|
3311
|
+
transform: translate(0, 10px);
|
|
3312
|
+
top: 100%;
|
|
3313
|
+
&:before {
|
|
3314
|
+
width: 0;
|
|
3315
|
+
height: 0;
|
|
3316
|
+
border-style: solid;
|
|
3317
|
+
border-width: 0 10px 10px 10px;
|
|
3318
|
+
border-color: transparent transparent transparentize($wac-second-color, .1) transparent;
|
|
3319
|
+
right: auto;
|
|
3320
|
+
top: auto;
|
|
3321
|
+
left: 10px;
|
|
3322
|
+
bottom: 100%;
|
|
3323
|
+
}
|
|
3329
3324
|
}
|
|
3330
3325
|
}
|
|
3331
|
-
.datepicker-days {
|
|
3332
|
-
padding: 0 15px !important;
|
|
3333
|
-
}
|
|
3334
|
-
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item.is-active {
|
|
3335
|
-
background-color: $wac-wizishop-blue;
|
|
3336
|
-
}
|
|
3337
|
-
.datetimepicker.is-primary .datepicker-body .datepicker-dates .datepicker-days .datepicker-date .date-item:hover {
|
|
3338
|
-
border-color: $wac-wizishop-blue;
|
|
3339
|
-
}
|
|
3340
|
-
}
|
|
3341
3326
|
|
|
3342
|
-
|
|
3343
|
-
|
|
3327
|
+
&:hover, &:focus {
|
|
3328
|
+
.wac-button {
|
|
3329
|
+
&__tooltips {
|
|
3330
|
+
visibility: visible;
|
|
3331
|
+
opacity: .9;
|
|
3332
|
+
transition: opacity .3s ease .05s, visibility 0s linear 0s;
|
|
3333
|
+
}
|
|
3334
|
+
}
|
|
3335
|
+
}
|
|
3344
3336
|
}
|
|
3345
3337
|
.wac-card-price {
|
|
3346
3338
|
width: 100%;
|
|
@@ -5151,6 +5143,7 @@ wac-grid {
|
|
|
5151
5143
|
}
|
|
5152
5144
|
}
|
|
5153
5145
|
:host {
|
|
5146
|
+
height: 100%;
|
|
5154
5147
|
position: relative;
|
|
5155
5148
|
|
|
5156
5149
|
@for $i from 1 through 12 {
|
|
@@ -5180,6 +5173,7 @@ wac-grid {
|
|
|
5180
5173
|
align-items: center;
|
|
5181
5174
|
gap: 15px;
|
|
5182
5175
|
height: 100%;
|
|
5176
|
+
min-height: 150px;
|
|
5183
5177
|
background: #ffffff;
|
|
5184
5178
|
width: 100%;
|
|
5185
5179
|
padding: 20px;
|
|
@@ -5209,6 +5203,10 @@ wac-grid {
|
|
|
5209
5203
|
}
|
|
5210
5204
|
}
|
|
5211
5205
|
|
|
5206
|
+
.with-desc {
|
|
5207
|
+
min-height: none !important;
|
|
5208
|
+
}
|
|
5209
|
+
|
|
5212
5210
|
a {
|
|
5213
5211
|
cursor: pointer;
|
|
5214
5212
|
}
|