@bagelink/vue 0.0.164 → 0.0.170
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/DataPreview.vue.d.ts +3 -19
- package/dist/components/DataPreview.vue.d.ts.map +1 -1
- package/dist/components/FileUploader.vue.d.ts.map +1 -1
- package/dist/components/FormSchema.vue.d.ts +3 -19
- package/dist/components/FormSchema.vue.d.ts.map +1 -1
- package/dist/components/PersonPreview.vue.d.ts +1 -1
- package/dist/components/PersonPreview.vue.d.ts.map +1 -1
- package/dist/components/TabbedLayout.vue.d.ts +1 -1
- package/dist/components/TabbedLayout.vue.d.ts.map +1 -1
- package/dist/components/formkit/FileUploader.vue.d.ts.map +1 -1
- package/dist/components/formkit/index.d.ts +10 -8
- package/dist/components/formkit/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +0 -1
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +206 -349
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +206 -349
- package/dist/plugins/bagel.d.ts +3 -0
- package/dist/plugins/bagel.d.ts.map +1 -1
- package/dist/style.css +227 -323
- package/package.json +1 -1
- package/src/components/DataPreview.vue +5 -6
- package/src/components/FormSchema.vue +7 -10
- package/src/components/PersonPreview.vue +147 -123
- package/src/components/TabbedLayout.vue +50 -59
- package/src/components/form/inputs/Checkbox.vue +1 -1
- package/src/components/formkit/FileUploader.vue +264 -254
- package/src/components/formkit/index.ts +10 -8
- package/src/components/index.ts +0 -1
- package/src/index.ts +1 -1
- package/src/plugins/bagel.ts +17 -1
- package/src/styles/dark.css +79 -21
- package/src/styles/inputs.css +4 -9
- package/src/styles/theme.css +6 -0
- package/src/components/FileUploader.vue +0 -345
package/dist/style.css
CHANGED
|
@@ -604,20 +604,11 @@
|
|
|
604
604
|
flex-grow: 1;
|
|
605
605
|
}
|
|
606
606
|
|
|
607
|
-
.tab[data-v-
|
|
608
|
-
|
|
607
|
+
.tab[data-v-3941cced] {
|
|
608
|
+
text-transform: capitalize;
|
|
609
609
|
}
|
|
610
|
-
|
|
611
|
-
/*
|
|
612
|
-
grid-area: top-section;
|
|
613
|
-
font-size: 10px;
|
|
614
|
-
}
|
|
615
|
-
|
|
616
|
-
.detail-section {
|
|
617
|
-
grid-area: detail-section;
|
|
618
|
-
} */
|
|
619
|
-
.card.tabs-top[data-v-4ac29f1d] {
|
|
620
|
-
width: 99%;
|
|
610
|
+
.card.tabs-top[data-v-3941cced] {
|
|
611
|
+
/* width: 99%; */
|
|
621
612
|
}
|
|
622
613
|
|
|
623
614
|
.comments-wrap[data-v-2eead7c8] {
|
|
@@ -869,90 +860,90 @@ th[data-v-fb5b163a] {
|
|
|
869
860
|
}
|
|
870
861
|
|
|
871
862
|
.person-card {
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
863
|
+
border: 1.1px solid var(--border-color);
|
|
864
|
+
/* background: var(--input-bg); */
|
|
865
|
+
border-radius: var(--card-border-radius);
|
|
866
|
+
padding: 1rem;
|
|
867
|
+
margin-bottom: 0.5rem;
|
|
868
|
+
font-size: 1rem;
|
|
869
|
+
position: relative;
|
|
879
870
|
}
|
|
880
871
|
.person-card p {
|
|
881
|
-
|
|
872
|
+
margin: 0;
|
|
882
873
|
}
|
|
883
874
|
.person-card-details {
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
875
|
+
font-size: 14px;
|
|
876
|
+
margin-bottom: 2px;
|
|
877
|
+
line-height: 1.3;
|
|
878
|
+
display: flex;
|
|
888
879
|
}
|
|
889
880
|
.person-card-details p {
|
|
890
|
-
|
|
891
|
-
|
|
881
|
+
color: var(--input-color);
|
|
882
|
+
opacity: 0.6;
|
|
892
883
|
}
|
|
893
884
|
.person-card-details.badge p {
|
|
894
|
-
|
|
885
|
+
opacity: 1;
|
|
895
886
|
}
|
|
896
887
|
.person-card-details p:nth-child(2) {
|
|
897
|
-
|
|
898
|
-
|
|
888
|
+
opacity: 1;
|
|
889
|
+
padding-inline-end: 0.5rem;
|
|
899
890
|
}
|
|
900
891
|
.person-card-details .icon-font {
|
|
901
|
-
|
|
902
|
-
|
|
892
|
+
color: var(--bgl-primary);
|
|
893
|
+
padding-inline-end: 0.25rem;
|
|
903
894
|
}
|
|
904
895
|
.person-card-edit {
|
|
905
|
-
|
|
906
|
-
|
|
896
|
+
position: absolute;
|
|
897
|
+
inset-inline-end: 1rem;
|
|
907
898
|
}
|
|
908
899
|
.person-card-details-wrap {
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
900
|
+
display: flex;
|
|
901
|
+
gap: 0.5rem;
|
|
902
|
+
flex-wrap: wrap;
|
|
912
903
|
}
|
|
913
904
|
.person-card-icon {
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
905
|
+
background: var(--bgl-gray);
|
|
906
|
+
height: 30px;
|
|
907
|
+
width: 30px;
|
|
908
|
+
border-radius: 100%;
|
|
909
|
+
text-transform: uppercase;
|
|
910
|
+
display: flex;
|
|
911
|
+
justify-content: center;
|
|
912
|
+
align-items: center;
|
|
913
|
+
color: white;
|
|
914
|
+
font-size: 12px;
|
|
924
915
|
}
|
|
925
916
|
.person-card-icon-wrap {
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
917
|
+
display: flex;
|
|
918
|
+
gap: 0.5rem;
|
|
919
|
+
align-items: center;
|
|
920
|
+
padding-bottom: 0.75rem;
|
|
930
921
|
}
|
|
931
922
|
@media screen and (max-width: 910px) {
|
|
932
923
|
.person-card-icon-wrap {
|
|
933
|
-
|
|
924
|
+
padding-bottom: 0.5rem;
|
|
934
925
|
}
|
|
935
926
|
.person-card {
|
|
936
|
-
|
|
937
|
-
|
|
927
|
+
padding: 0.75rem;
|
|
928
|
+
position: relative;
|
|
938
929
|
}
|
|
939
930
|
.person-card-edit {
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
931
|
+
/* position: relative; */
|
|
932
|
+
inset-inline-end: 0.5rem;
|
|
933
|
+
margin-bottom: 1rem;
|
|
934
|
+
justify-content: flex-end;
|
|
944
935
|
}
|
|
945
936
|
.person-card-name {
|
|
946
|
-
|
|
937
|
+
max-width: calc(100% - 170px);
|
|
947
938
|
}
|
|
948
939
|
}
|
|
949
940
|
|
|
950
|
-
.data[data-v-
|
|
941
|
+
.data[data-v-86e783b9] {
|
|
951
942
|
border: 1.1px solid var(--border-color);
|
|
952
943
|
padding: 20px;
|
|
953
944
|
border-radius: var(--input-border-radius);
|
|
954
945
|
}
|
|
955
|
-
.data-row[data-v-
|
|
946
|
+
.data-row[data-v-86e783b9] {
|
|
956
947
|
display: flex;
|
|
957
948
|
justify-content: space-between;
|
|
958
949
|
padding-bottom: 0.5rem;
|
|
@@ -960,7 +951,7 @@ th[data-v-fb5b163a] {
|
|
|
960
951
|
opacity: 0.8;
|
|
961
952
|
border-bottom: 1px solid var(--border-color);
|
|
962
953
|
}
|
|
963
|
-
.data-link[data-v-
|
|
954
|
+
.data-link[data-v-86e783b9] {
|
|
964
955
|
display: block;
|
|
965
956
|
font-size: var(--input-font-size);
|
|
966
957
|
margin-bottom: 2px;
|
|
@@ -968,136 +959,6 @@ th[data-v-fb5b163a] {
|
|
|
968
959
|
color: var(--input-color);
|
|
969
960
|
}
|
|
970
961
|
|
|
971
|
-
/* .uploading-wrap {
|
|
972
|
-
width: 100%;
|
|
973
|
-
} */
|
|
974
|
-
|
|
975
|
-
/* .uploading {
|
|
976
|
-
margin: 0.5rem;
|
|
977
|
-
} */
|
|
978
|
-
|
|
979
|
-
/* .img-label .icon-font {
|
|
980
|
-
font-size: 30px;
|
|
981
|
-
margin-bottom: 10px;
|
|
982
|
-
} */
|
|
983
|
-
|
|
984
|
-
/* .img-label span {
|
|
985
|
-
text-decoration: underline;
|
|
986
|
-
}
|
|
987
|
-
|
|
988
|
-
.file-input {
|
|
989
|
-
display: none;
|
|
990
|
-
} */
|
|
991
|
-
.files-wrapper {
|
|
992
|
-
/* flex-direction: column;
|
|
993
|
-
border-radius: 10px; */
|
|
994
|
-
/*overflow: hidden;*/
|
|
995
|
-
/* min-height: 100px;
|
|
996
|
-
font-size: var(--input-font-size); */
|
|
997
|
-
}
|
|
998
|
-
.drop-zone {
|
|
999
|
-
/* background-color: var(--bgl-bg);
|
|
1000
|
-
height: 100%;
|
|
1001
|
-
width: 100%;
|
|
1002
|
-
flex-grow: 1;
|
|
1003
|
-
position: relative;
|
|
1004
|
-
overflow: hidden;
|
|
1005
|
-
cursor: pointer;
|
|
1006
|
-
transition: var(--bgl-transition);
|
|
1007
|
-
outline: dashed 1px var(--bgl-black-tint);
|
|
1008
|
-
border-radius: 10px;
|
|
1009
|
-
padding: 1px;
|
|
1010
|
-
display: flex;
|
|
1011
|
-
flex-direction: column;
|
|
1012
|
-
align-items: center;
|
|
1013
|
-
justify-content: center;
|
|
1014
|
-
color: var(--input-color); */
|
|
1015
|
-
}
|
|
1016
|
-
.drop-zone:hover {
|
|
1017
|
-
/* color: var(--bgl-primary);
|
|
1018
|
-
outline: dashed 1px var(--bgl-primary-tint); */
|
|
1019
|
-
}
|
|
1020
|
-
.drop-circle {
|
|
1021
|
-
/* pointer-events: none;
|
|
1022
|
-
position: absolute;
|
|
1023
|
-
width: 100px;
|
|
1024
|
-
height: 100px;
|
|
1025
|
-
border-radius: 50%;
|
|
1026
|
-
background-color: var(--bgl-primary-tint);
|
|
1027
|
-
display: flex;
|
|
1028
|
-
top: v-bind(circleTop);
|
|
1029
|
-
left: v-bind(circleLeft);
|
|
1030
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1031
|
-
transform-origin: left top; */
|
|
1032
|
-
}
|
|
1033
|
-
|
|
1034
|
-
/* .drop-circle.active {
|
|
1035
|
-
color: red;
|
|
1036
|
-
background-color: black;
|
|
1037
|
-
transform: translate(-50%, -50%) scale(1);
|
|
1038
|
-
transition: transform 0.2s ease-in-out;
|
|
1039
|
-
} */
|
|
1040
|
-
.load-file-bar {
|
|
1041
|
-
/* display: flex;
|
|
1042
|
-
align-items: center;
|
|
1043
|
-
justify-content: space-between;
|
|
1044
|
-
background: var(--bgl-white);
|
|
1045
|
-
border-radius: var(--btn-border-radius);
|
|
1046
|
-
width: 100%;
|
|
1047
|
-
color: var(--input-color);
|
|
1048
|
-
height: var(--btn-height);
|
|
1049
|
-
padding: 0.5rem;
|
|
1050
|
-
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
1051
|
-
white-space: nowrap; */
|
|
1052
|
-
}
|
|
1053
|
-
.load-file-bar p {
|
|
1054
|
-
/* width: calc(100% - 40px);
|
|
1055
|
-
overflow: hidden;
|
|
1056
|
-
text-overflow: ellipsis; */
|
|
1057
|
-
}
|
|
1058
|
-
.load-file-bar span {
|
|
1059
|
-
/* font-size: 10px; */
|
|
1060
|
-
}
|
|
1061
|
-
.pie {
|
|
1062
|
-
/* width: 30px;
|
|
1063
|
-
height: 30px;
|
|
1064
|
-
position: relative;
|
|
1065
|
-
display: flex;
|
|
1066
|
-
align-items: center;
|
|
1067
|
-
justify-content: center; */
|
|
1068
|
-
}
|
|
1069
|
-
|
|
1070
|
-
/* .pie:before {
|
|
1071
|
-
content: '';
|
|
1072
|
-
position: absolute;
|
|
1073
|
-
border-radius: 50%;
|
|
1074
|
-
inset: 0;
|
|
1075
|
-
background: conic-gradient(var(--bgl-primary) calc(var(--p) * 1%), #0000 0);
|
|
1076
|
-
-webkit-mask: radial-gradient(
|
|
1077
|
-
farthest-side,
|
|
1078
|
-
#0000 calc(99% - var(--b)),
|
|
1079
|
-
#000 calc(100% - var(--b))
|
|
1080
|
-
);
|
|
1081
|
-
mask: radial-gradient(
|
|
1082
|
-
farthest-side,
|
|
1083
|
-
#0000 calc(99% - var(--b)),
|
|
1084
|
-
#000 calc(100% - var(--b))
|
|
1085
|
-
);
|
|
1086
|
-
} */
|
|
1087
|
-
|
|
1088
|
-
/* .pop-enter-active {
|
|
1089
|
-
transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
.pop-leave-active {
|
|
1093
|
-
transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
|
|
1094
|
-
}
|
|
1095
|
-
|
|
1096
|
-
.pop-enter-from,
|
|
1097
|
-
.pop-leave-to {
|
|
1098
|
-
scale: 0;
|
|
1099
|
-
} */
|
|
1100
|
-
|
|
1101
962
|
/* .group-wrap * {
|
|
1102
963
|
outline: 1px solid red;
|
|
1103
964
|
} */
|
|
@@ -1258,13 +1119,13 @@ th[data-v-fb5b163a] {
|
|
|
1258
1119
|
}
|
|
1259
1120
|
}
|
|
1260
1121
|
|
|
1261
|
-
.primary-checkbox input[data-v-
|
|
1122
|
+
.primary-checkbox input[data-v-fe72d553] {
|
|
1262
1123
|
display: none;
|
|
1263
1124
|
}
|
|
1264
|
-
.primary-checkbox[data-v-
|
|
1125
|
+
.primary-checkbox[data-v-fe72d553] {
|
|
1265
1126
|
margin-top: 8px;
|
|
1266
1127
|
}
|
|
1267
|
-
.primary-checkbox span[data-v-
|
|
1128
|
+
.primary-checkbox span[data-v-fe72d553] {
|
|
1268
1129
|
display: flex;
|
|
1269
1130
|
padding-top: 1px;
|
|
1270
1131
|
align-items: center;
|
|
@@ -1273,19 +1134,19 @@ th[data-v-fb5b163a] {
|
|
|
1273
1134
|
border-radius: 100%;
|
|
1274
1135
|
width: 26px;
|
|
1275
1136
|
height: 26px;
|
|
1276
|
-
background: white;
|
|
1137
|
+
background: var(--bgl-white);
|
|
1277
1138
|
border: 4px solid var(--bgl-gray-light);
|
|
1278
1139
|
cursor: pointer;
|
|
1279
1140
|
transition: var(--bgl-transition);
|
|
1280
1141
|
user-select: none;
|
|
1281
1142
|
}
|
|
1282
|
-
.primary-checkbox span[data-v-
|
|
1143
|
+
.primary-checkbox span[data-v-fe72d553]:hover {
|
|
1283
1144
|
filter: brightness(90%);
|
|
1284
1145
|
}
|
|
1285
|
-
.primary-checkbox span[data-v-
|
|
1146
|
+
.primary-checkbox span[data-v-fe72d553]:active {
|
|
1286
1147
|
filter: brightness(80%);
|
|
1287
1148
|
}
|
|
1288
|
-
.primary-checkbox input:checked + span[data-v-
|
|
1149
|
+
.primary-checkbox input:checked + span[data-v-fe72d553] {
|
|
1289
1150
|
background: var(--bgl-primary);
|
|
1290
1151
|
border: none;
|
|
1291
1152
|
}
|
|
@@ -1634,154 +1495,150 @@ input:checked + .slider[data-v-d0543d4b]:before {
|
|
|
1634
1495
|
}
|
|
1635
1496
|
|
|
1636
1497
|
.uploading-wrap {
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1498
|
+
width: 100%;
|
|
1499
|
+
padding-right: 5px;
|
|
1500
|
+
padding-left: 5px;
|
|
1640
1501
|
}
|
|
1641
1502
|
|
|
1642
1503
|
/*
|
|
1643
1504
|
.uploading {}
|
|
1644
1505
|
*/
|
|
1645
1506
|
.img-label .icon-font {
|
|
1646
|
-
|
|
1647
|
-
|
|
1507
|
+
font-size: 30px;
|
|
1508
|
+
margin-bottom: 10px;
|
|
1648
1509
|
}
|
|
1649
1510
|
.img-label span {
|
|
1650
|
-
|
|
1511
|
+
text-decoration: underline;
|
|
1651
1512
|
}
|
|
1652
1513
|
.file-input {
|
|
1653
|
-
|
|
1514
|
+
display: none;
|
|
1654
1515
|
}
|
|
1655
1516
|
.files-wrapper {
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1517
|
+
flex-direction: column;
|
|
1518
|
+
border-radius: 10px;
|
|
1519
|
+
/*overflow: hidden;*/
|
|
1520
|
+
min-height: calc(var(--input-height) * 1.5);
|
|
1660
1521
|
|
|
1661
|
-
|
|
1522
|
+
font-size: var(--input-font-size);
|
|
1662
1523
|
}
|
|
1663
1524
|
.drop-zone {
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1525
|
+
background-color: var(--input-bg);
|
|
1526
|
+
height: 100%;
|
|
1527
|
+
width: 100%;
|
|
1528
|
+
flex-grow: 1;
|
|
1529
|
+
position: relative;
|
|
1530
|
+
overflow: hidden;
|
|
1531
|
+
cursor: pointer;
|
|
1532
|
+
transition: var(--bgl-transition);
|
|
1533
|
+
outline: dashed 1px var(--border-color);
|
|
1534
|
+
border-radius: 10px;
|
|
1535
|
+
padding: 1px;
|
|
1536
|
+
display: flex;
|
|
1537
|
+
flex-direction: column;
|
|
1538
|
+
align-items: center;
|
|
1539
|
+
justify-content: center;
|
|
1540
|
+
color: var(--input-color);
|
|
1680
1541
|
}
|
|
1681
1542
|
.drop-zone:hover {
|
|
1682
|
-
|
|
1683
|
-
|
|
1543
|
+
color: var(--bgl-primary);
|
|
1544
|
+
outline: dashed 1px var(--bgl-primary-tint);
|
|
1684
1545
|
}
|
|
1685
1546
|
.drop-circle {
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1547
|
+
pointer-events: none;
|
|
1548
|
+
position: absolute;
|
|
1549
|
+
width: 100px;
|
|
1550
|
+
height: 100px;
|
|
1551
|
+
border-radius: 50%;
|
|
1552
|
+
background-color: var(--bgl-primary-tint);
|
|
1553
|
+
display: flex;
|
|
1554
|
+
transform: translate(-50%, -50%) scale(1);
|
|
1555
|
+
transform-origin: left top;
|
|
1695
1556
|
}
|
|
1696
1557
|
.load-file-bar {
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1558
|
+
display: flex;
|
|
1559
|
+
align-items: center;
|
|
1560
|
+
justify-content: space-between;
|
|
1561
|
+
background: var(--bgl-white);
|
|
1562
|
+
border-radius: var(--btn-border-radius);
|
|
1563
|
+
width: 100%;
|
|
1564
|
+
color: var(--input-color);
|
|
1565
|
+
height: var(--btn-height);
|
|
1566
|
+
padding: 0.5rem;
|
|
1567
|
+
height: 46px;
|
|
1568
|
+
box-shadow: 0 1px 2px 0 rgb(0 0 0 / 10%);
|
|
1569
|
+
white-space: nowrap;
|
|
1709
1570
|
}
|
|
1710
1571
|
.load-file-bar p {
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1572
|
+
width: calc(100% - 40px);
|
|
1573
|
+
overflow: hidden;
|
|
1574
|
+
text-overflow: ellipsis;
|
|
1714
1575
|
}
|
|
1715
1576
|
.load-file-bar span {
|
|
1716
|
-
|
|
1577
|
+
font-size: 10px;
|
|
1717
1578
|
}
|
|
1718
1579
|
.pie {
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1580
|
+
width: 30px;
|
|
1581
|
+
height: 30px;
|
|
1582
|
+
position: relative;
|
|
1583
|
+
display: flex;
|
|
1584
|
+
align-items: center;
|
|
1585
|
+
justify-content: center;
|
|
1725
1586
|
}
|
|
1726
1587
|
.pie:before {
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
farthest-side,
|
|
1740
|
-
#0000 calc(99% - var(--b)),
|
|
1741
|
-
#000 calc(100% - var(--b))
|
|
1742
|
-
);
|
|
1588
|
+
content: "";
|
|
1589
|
+
position: absolute;
|
|
1590
|
+
border-radius: 50%;
|
|
1591
|
+
inset: 0;
|
|
1592
|
+
transition: all 0.2s ease-in-out;
|
|
1593
|
+
background: conic-gradient(var(--bgl-primary) calc(var(--p) * 1%), #0000 0);
|
|
1594
|
+
-webkit-mask: radial-gradient(farthest-side,
|
|
1595
|
+
#0000 calc(99% - var(--b)),
|
|
1596
|
+
#000 calc(100% - var(--b)));
|
|
1597
|
+
mask: radial-gradient(farthest-side,
|
|
1598
|
+
#0000 calc(99% - var(--b)),
|
|
1599
|
+
#000 calc(100% - var(--b)));
|
|
1743
1600
|
}
|
|
1744
1601
|
.pie .success {
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1602
|
+
transform: scale(0);
|
|
1603
|
+
opacity: 0;
|
|
1604
|
+
transition: all 0.3s ease-in-out;
|
|
1748
1605
|
}
|
|
1749
1606
|
.pie .progress {
|
|
1750
|
-
|
|
1751
|
-
|
|
1607
|
+
position: absolute;
|
|
1608
|
+
font-size: 10px;
|
|
1752
1609
|
}
|
|
1753
1610
|
.pie.complete .progress {
|
|
1754
|
-
|
|
1611
|
+
display: none;
|
|
1755
1612
|
}
|
|
1756
1613
|
.pie.complete .success {
|
|
1757
|
-
|
|
1758
|
-
|
|
1614
|
+
transform: scale(1.3);
|
|
1615
|
+
opacity: 1;
|
|
1759
1616
|
}
|
|
1760
1617
|
.pie.complete:before {
|
|
1761
|
-
|
|
1618
|
+
background: conic-gradient(var(--bgl-green) calc(var(--p) * 1%), #0000 0);
|
|
1762
1619
|
}
|
|
1763
1620
|
.pie.complete {
|
|
1764
|
-
|
|
1621
|
+
color: var(--bgl-green);
|
|
1765
1622
|
}
|
|
1766
1623
|
|
|
1767
1624
|
.pop-enter-active {
|
|
1768
|
-
|
|
1625
|
+
transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
|
|
1769
1626
|
}
|
|
1770
1627
|
.pop-leave-active {
|
|
1771
|
-
|
|
1628
|
+
transition: scale 0.2s cubic-bezier(0.55, 0, 0.1, 1);
|
|
1772
1629
|
}
|
|
1773
1630
|
.pop-enter-from,
|
|
1774
1631
|
.pop-leave-to {
|
|
1775
|
-
|
|
1632
|
+
scale: 0;
|
|
1776
1633
|
}
|
|
1777
1634
|
.delete-btn {
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1635
|
+
margin-inline-end: -30px;
|
|
1636
|
+
opacity: 0;
|
|
1637
|
+
margin-inline-start: 10px;
|
|
1781
1638
|
}
|
|
1782
1639
|
.uploading-wrap:hover .delete-btn {
|
|
1783
|
-
|
|
1784
|
-
|
|
1640
|
+
opacity: 1;
|
|
1641
|
+
margin-inline-end: 0;
|
|
1785
1642
|
}
|
|
1786
1643
|
|
|
1787
1644
|
.person-card {
|
|
@@ -2771,13 +2628,6 @@ select {
|
|
|
2771
2628
|
padding: 0;
|
|
2772
2629
|
width: fit-content;
|
|
2773
2630
|
}
|
|
2774
|
-
.bagel-input input:focus-visible,
|
|
2775
|
-
.bagel-input select:focus-visible,
|
|
2776
|
-
.bagel-input textarea:focus-visible,
|
|
2777
|
-
.input.active {
|
|
2778
|
-
outline: none;
|
|
2779
|
-
box-shadow: inset 0 0 10px #00000012;
|
|
2780
|
-
}
|
|
2781
2631
|
.bagel-input:focus-within label {
|
|
2782
2632
|
color: var(--bgl-primary);
|
|
2783
2633
|
}
|
|
@@ -2916,7 +2766,10 @@ button.formkit-input:active {
|
|
|
2916
2766
|
.formkit-outer input:focus-visible,
|
|
2917
2767
|
.formkit-outer select:focus-visible,
|
|
2918
2768
|
.formkit-outer textarea:focus-visible,
|
|
2919
|
-
.input.active
|
|
2769
|
+
.input.active,
|
|
2770
|
+
.bagel-input input:focus-visible,
|
|
2771
|
+
.bagel-input select:focus-visible,
|
|
2772
|
+
.bagel-input textarea:focus-visible {
|
|
2920
2773
|
outline: none;
|
|
2921
2774
|
box-shadow: inset 0 0 10px #00000012;
|
|
2922
2775
|
}
|
|
@@ -3221,6 +3074,7 @@ h6 {}
|
|
|
3221
3074
|
margin-top: 0;
|
|
3222
3075
|
margin-bottom: 20px;
|
|
3223
3076
|
width: 100%;
|
|
3077
|
+
padding-inline-end: 40px;
|
|
3224
3078
|
}
|
|
3225
3079
|
.modal-footer {
|
|
3226
3080
|
gap: 1rem;
|
|
@@ -3525,6 +3379,10 @@ body {
|
|
|
3525
3379
|
padding-top: 1rem;
|
|
3526
3380
|
inset-inline-start: 0;
|
|
3527
3381
|
}
|
|
3382
|
+
.DonationsDashbored .tabs {
|
|
3383
|
+
border-bottom: 1px solid var(--border-color);
|
|
3384
|
+
border-top: none;
|
|
3385
|
+
}
|
|
3528
3386
|
.copy-url {
|
|
3529
3387
|
background-color: var(--bgl-gray-light);
|
|
3530
3388
|
border-radius: var(--btn-border-radius);
|
|
@@ -3668,14 +3526,17 @@ body {
|
|
|
3668
3526
|
}
|
|
3669
3527
|
}
|
|
3670
3528
|
[theme="dark"] {
|
|
3671
|
-
--bgl-
|
|
3672
|
-
--bgl-
|
|
3673
|
-
|
|
3529
|
+
--bgl-primary: #1c4fe1;
|
|
3530
|
+
--bgl-primary-tint: #1c4fe180;
|
|
3531
|
+
|
|
3532
|
+
/* --bgl-blue-20: rgba(46, 91, 255, 20%); */
|
|
3533
|
+
/* --bgl-blue-dark: #191c30; */
|
|
3534
|
+
--bgl-blue-light: #34363b;
|
|
3674
3535
|
--bgl-black: #dbdcdc;
|
|
3675
|
-
--bgl-black-tint: #
|
|
3676
|
-
--bgl-white:
|
|
3677
|
-
--bgl-gray: #
|
|
3678
|
-
--bgl-gray-light: #
|
|
3536
|
+
--bgl-black-tint: #7a7a7a;
|
|
3537
|
+
--bgl-white: rgb(41, 42, 45);
|
|
3538
|
+
--bgl-gray: #7f7d7d;
|
|
3539
|
+
--bgl-gray-light: #191b1c;
|
|
3679
3540
|
--bgl-gray-80: #e8ecef;
|
|
3680
3541
|
--bgl-gray-20: rgba(183, 183, 183, 0.2);
|
|
3681
3542
|
--bgl-pink: #f1416c;
|
|
@@ -3684,32 +3545,75 @@ body {
|
|
|
3684
3545
|
--bgl-yellow: #ffbb00;
|
|
3685
3546
|
--bgl-yellow-light: #fff6d5;
|
|
3686
3547
|
--bgl-green: #52875b;
|
|
3687
|
-
--border-color: #
|
|
3688
|
-
--bgl-bg: #
|
|
3548
|
+
--border-color: #383a3f;
|
|
3549
|
+
--bgl-bg: #121317;
|
|
3689
3550
|
--bgl-shadow: #4c577d26;
|
|
3690
|
-
--input-bg: #
|
|
3691
|
-
--input-color: #
|
|
3692
|
-
--label-color: #
|
|
3693
|
-
--placeholder-color: #
|
|
3694
|
-
|
|
3695
|
-
--bgl-hover-filter: brightness(
|
|
3696
|
-
--bgl-active-filter: brightness(
|
|
3551
|
+
--input-bg: #1d2023;
|
|
3552
|
+
--input-color: #d3d4d4;
|
|
3553
|
+
--label-color: #d3d4d480;
|
|
3554
|
+
--placeholder-color: #ccd4dd60;
|
|
3555
|
+
|
|
3556
|
+
--bgl-hover-filter: brightness(130%);
|
|
3557
|
+
--bgl-active-filter: brightness(110%);
|
|
3697
3558
|
}
|
|
3698
3559
|
[theme="dark"] .formkit-outer input:focus-visible,
|
|
3699
3560
|
[theme="dark"] .formkit-outer select:focus-visible,
|
|
3700
3561
|
[theme="dark"] .formkit-outer textarea:focus-visible,
|
|
3701
|
-
.input.active
|
|
3562
|
+
[theme="dark"] .input.active,
|
|
3563
|
+
[theme="dark"] .bagel-input input:focus-visible,
|
|
3564
|
+
[theme="dark"] .bagel-input select:focus-visible,
|
|
3565
|
+
[theme="dark"] .bagel-input textarea:focus-visible {
|
|
3702
3566
|
outline: none;
|
|
3703
|
-
box-shadow: inset 0 0 10px
|
|
3567
|
+
box-shadow: inset 0 0 10px var(--bgl-bg);
|
|
3568
|
+
}
|
|
3569
|
+
[theme="dark"] .formkit-outer select {
|
|
3570
|
+
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
|
|
3704
3571
|
}
|
|
3705
3572
|
/* use this is to override the nav color */
|
|
3706
3573
|
[theme="dark"] .nav {
|
|
3707
|
-
|
|
3708
|
-
|
|
3574
|
+
color: var(--bgl-black) !important;
|
|
3575
|
+
background: transparent;
|
|
3576
|
+
border-radius: 0 !important;
|
|
3577
|
+
border-inline-end: 1px solid var(--bgl-gray-20);
|
|
3578
|
+
margin-top: 0 !important;
|
|
3579
|
+
margin-bottom: 0 !important;
|
|
3580
|
+
margin-inline-start: 0 !important;
|
|
3581
|
+
}
|
|
3582
|
+
[theme="dark"] .nav * {
|
|
3583
|
+
color: var(--bgl-black) !important;
|
|
3584
|
+
|
|
3585
|
+
}
|
|
3586
|
+
[theme="dark"] .dropdown-project-head {
|
|
3587
|
+
background: var(--bgl-bg) !important;
|
|
3588
|
+
color: var(--bgl-white) !important;
|
|
3709
3589
|
}
|
|
3710
|
-
[theme="dark"]
|
|
3590
|
+
[theme="dark"] .dropdown-project-body {
|
|
3591
|
+
color: var(--bgl-black-tint) !important;
|
|
3592
|
+
}
|
|
3593
|
+
/* until here */
|
|
3594
|
+
[theme="dark"] input::-webkit-calendar-picker-indicator {
|
|
3711
3595
|
filter: invert(48%);
|
|
3712
3596
|
}
|
|
3597
|
+
[theme="dark"] ::selection {
|
|
3598
|
+
color: var(--bgl-black);
|
|
3599
|
+
background: var(--bgl-primary-tint);
|
|
3600
|
+
}
|
|
3601
|
+
[theme="dark"] .whatsapp-msg {
|
|
3602
|
+
color: var(--bgl-gray-light);
|
|
3603
|
+
}
|
|
3604
|
+
[theme="dark"] button.formkit-input,
|
|
3605
|
+
[theme="dark"] .btn,
|
|
3606
|
+
[theme="dark"] .btn-icon,
|
|
3607
|
+
[theme="dark"] .primary-checkbox input:checked+span,
|
|
3608
|
+
[theme="dark"] .btn.light {
|
|
3609
|
+
color: var(--bgl-black);
|
|
3610
|
+
}
|
|
3611
|
+
[theme="dark"] .bagel-input.checkbox.check .slider:before {
|
|
3612
|
+
color: var(--bgl-black) !important;
|
|
3613
|
+
}
|
|
3614
|
+
[theme="dark"] .nav-expend {
|
|
3615
|
+
top: 67px;
|
|
3616
|
+
}
|
|
3713
3617
|
:root {
|
|
3714
3618
|
--transition-ease-in: cubic-bezier(0.1, 0.5, 0.33, 1);
|
|
3715
3619
|
--transition-ease-out: cubic-bezier(1, 0.33, 0.5, 0.1);
|