@bagelink/vue 1.4.22 → 1.4.28
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/Image.vue.d.ts +1 -0
- package/dist/components/Image.vue.d.ts.map +1 -1
- package/dist/components/Pill.vue.d.ts.map +1 -1
- package/dist/components/Slider.vue.d.ts.map +1 -1
- package/dist/components/dataTable/DataTable.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText/index.vue.d.ts +1 -0
- package/dist/components/form/inputs/RichText/index.vue.d.ts.map +1 -1
- package/dist/index.cjs +144 -106
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +144 -106
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +405 -125
- package/dist/types/BagelForm.d.ts +5 -1
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/utils/BagelFormUtils.d.ts +16 -10
- package/dist/utils/BagelFormUtils.d.ts.map +1 -1
- package/dist/utils/useSearch.d.ts.map +1 -1
- package/package.json +3 -4
- package/src/components/Image.vue +4 -3
- package/src/components/ListItem.vue +1 -1
- package/src/components/Pill.vue +0 -2
- package/src/components/Slider.vue +0 -11
- package/src/components/dataTable/DataTable.vue +7 -37
- package/src/components/form/inputs/RichText/index.vue +13 -5
- package/src/index.ts +2 -1
- package/src/plugins/modal.ts +1 -0
- package/src/styles/layout.css +195 -6
- package/src/styles/mobilLayout.css +199 -12
- package/src/types/BagelForm.ts +11 -1
- package/src/utils/BagelFormUtils.ts +31 -24
- package/src/utils/useSearch.ts +23 -11
package/dist/style.css
CHANGED
|
@@ -862,88 +862,67 @@ to {
|
|
|
862
862
|
text-align: center;
|
|
863
863
|
}
|
|
864
864
|
|
|
865
|
-
.table-list-wrap[data-v-
|
|
865
|
+
.table-list-wrap[data-v-6da6fbe2] {
|
|
866
866
|
min-height: 150px;
|
|
867
867
|
}
|
|
868
|
-
.selected[data-v-
|
|
868
|
+
.selected[data-v-6da6fbe2] {
|
|
869
869
|
background: var(--bgl-primary-tint);
|
|
870
870
|
}
|
|
871
|
-
tbody tr.selected[data-v-
|
|
871
|
+
tbody tr.selected[data-v-6da6fbe2]:hover {
|
|
872
872
|
background: var(--bgl-primary-light);
|
|
873
873
|
}
|
|
874
|
-
.
|
|
875
|
-
position: relative;
|
|
876
|
-
}
|
|
877
|
-
.inset[data-v-f795f660] {
|
|
878
|
-
inset: 0;
|
|
879
|
-
}
|
|
880
|
-
.loading-table-animation[data-v-f795f660] {
|
|
881
|
-
--size: 60px;
|
|
882
|
-
top: 30vh;
|
|
883
|
-
inset-inline-start: calc(50% - var(--size));
|
|
884
|
-
border: 3px solid var(--bgl-gray-20);
|
|
885
|
-
border-top: 4px solid var(--bgl-primary);
|
|
886
|
-
width: var(--size);
|
|
887
|
-
height: var(--size);
|
|
888
|
-
animation: loading-table-f795f660 1s linear infinite;
|
|
889
|
-
}
|
|
890
|
-
@keyframes loading-table-f795f660 {
|
|
891
|
-
0% {
|
|
892
|
-
transform: translate(-50%, -50%) rotate(0deg);
|
|
893
|
-
}
|
|
894
|
-
100% {
|
|
895
|
-
transform: translate(-50%, -50%) rotate(360deg);
|
|
896
|
-
}
|
|
897
|
-
}
|
|
898
|
-
.list-arrows[data-v-f795f660] {
|
|
874
|
+
.list-arrows[data-v-6da6fbe2] {
|
|
899
875
|
opacity: 0;
|
|
900
876
|
}
|
|
901
|
-
.list-arrows .bgl_icon-font[data-v-
|
|
877
|
+
.list-arrows .bgl_icon-font[data-v-6da6fbe2] {
|
|
902
878
|
transition: all ease-in-out 0.2s;
|
|
903
879
|
}
|
|
904
|
-
.list-arrows.sorted[data-v-
|
|
880
|
+
.list-arrows.sorted[data-v-6da6fbe2] {
|
|
905
881
|
opacity: 1;
|
|
906
882
|
}
|
|
907
|
-
.col img[data-v-
|
|
883
|
+
.col img[data-v-6da6fbe2] {
|
|
908
884
|
height: 35px;
|
|
909
885
|
margin-top: -14px;
|
|
910
886
|
margin-bottom: -14px;
|
|
911
887
|
border-radius: 5px;
|
|
912
888
|
object-fit: cover;
|
|
913
889
|
}
|
|
914
|
-
.col[data-v-
|
|
890
|
+
.col[data-v-6da6fbe2]:has(img) {
|
|
915
891
|
padding-inline-end: 0.5rem;
|
|
916
892
|
}
|
|
917
|
-
.
|
|
893
|
+
.overflowHiddenLoading[data-v-6da6fbe2]{
|
|
894
|
+
overflow: hidden !important;
|
|
895
|
+
}
|
|
896
|
+
.list-arrows.sorted .desc[data-v-6da6fbe2] {
|
|
918
897
|
transform: rotate(180deg);
|
|
919
898
|
display: inline-block;
|
|
920
899
|
}
|
|
921
|
-
table[data-v-
|
|
900
|
+
table[data-v-6da6fbe2] {
|
|
922
901
|
border-spacing: 0 15px;
|
|
923
902
|
border-collapse: collapse;
|
|
924
903
|
width: 100%;
|
|
925
904
|
}
|
|
926
|
-
th[data-v-
|
|
905
|
+
th[data-v-6da6fbe2] {
|
|
927
906
|
font-size: 0.8rem;
|
|
928
907
|
color: var(--bgl-black-tint);
|
|
929
908
|
position: sticky;
|
|
930
909
|
top: 0;
|
|
931
910
|
z-index: 2;
|
|
932
911
|
background: var(--bgl-box-bg);
|
|
933
|
-
height: var(--
|
|
912
|
+
height: var(--70bc72ee);
|
|
934
913
|
vertical-align: bottom;
|
|
935
914
|
font-weight: 400;
|
|
936
915
|
text-align: start;
|
|
937
916
|
}
|
|
938
|
-
.embedded-field[data-v-
|
|
917
|
+
.embedded-field[data-v-6da6fbe2] {
|
|
939
918
|
margin-bottom: -0.2rem;
|
|
940
919
|
margin-top: -0.2rem;
|
|
941
920
|
}
|
|
942
|
-
.row[data-v-
|
|
921
|
+
.row[data-v-6da6fbe2] {
|
|
943
922
|
border-bottom: 1px solid var(--border-color);
|
|
944
923
|
cursor: pointer;
|
|
945
924
|
}
|
|
946
|
-
.row.first-row[data-v-
|
|
925
|
+
.row.first-row[data-v-6da6fbe2] {
|
|
947
926
|
font-size: 0.8rem;
|
|
948
927
|
color: var(--bgl-black-tint);
|
|
949
928
|
position: sticky;
|
|
@@ -952,7 +931,7 @@ th[data-v-f795f660] {
|
|
|
952
931
|
background: var(--bgl-box-bg);
|
|
953
932
|
vertical-align: bottom;
|
|
954
933
|
}
|
|
955
|
-
.row.first-row[data-v-
|
|
934
|
+
.row.first-row[data-v-6da6fbe2]::after {
|
|
956
935
|
content: '';
|
|
957
936
|
border-bottom: 1px solid var(--border-color);
|
|
958
937
|
position: absolute;
|
|
@@ -960,11 +939,11 @@ th[data-v-f795f660] {
|
|
|
960
939
|
right: 0;
|
|
961
940
|
bottom: -1px;
|
|
962
941
|
}
|
|
963
|
-
.first-row .col[data-v-
|
|
942
|
+
.first-row .col[data-v-6da6fbe2] {
|
|
964
943
|
cursor: pointer;
|
|
965
944
|
background: var(--bgl-box-bg);
|
|
966
945
|
}
|
|
967
|
-
.col[data-v-
|
|
946
|
+
.col[data-v-6da6fbe2] {
|
|
968
947
|
white-space: nowrap;
|
|
969
948
|
padding: 0.75rem 1rem;
|
|
970
949
|
transition: var(--bgl-transition);
|
|
@@ -974,19 +953,19 @@ th[data-v-f795f660] {
|
|
|
974
953
|
overflow: hidden;
|
|
975
954
|
max-width: 30vw;
|
|
976
955
|
}
|
|
977
|
-
.col[data-v-
|
|
956
|
+
.col[data-v-6da6fbe2]:has(.bagel-input) {
|
|
978
957
|
padding: 0rem 0.25rem;
|
|
979
958
|
}
|
|
980
|
-
.col > div[data-v-
|
|
959
|
+
.col > div[data-v-6da6fbe2] {
|
|
981
960
|
display: flex;
|
|
982
961
|
gap: 0.5rem;
|
|
983
962
|
}
|
|
984
|
-
.max-col-width[data-v-
|
|
963
|
+
.max-col-width[data-v-6da6fbe2] {
|
|
985
964
|
max-width: 30vw;
|
|
986
965
|
overflow: hidden;
|
|
987
966
|
text-overflow: ellipsis;
|
|
988
967
|
}
|
|
989
|
-
.col.check .bgl_icon-font[data-v-
|
|
968
|
+
.col.check .bgl_icon-font[data-v-6da6fbe2] {
|
|
990
969
|
border-radius: 100%;
|
|
991
970
|
background: var(--bgl-blue-20);
|
|
992
971
|
color: var(--bgl-primary);
|
|
@@ -997,35 +976,35 @@ th[data-v-f795f660] {
|
|
|
997
976
|
justify-content: center;
|
|
998
977
|
margin-top: -2px;
|
|
999
978
|
}
|
|
1000
|
-
.rows[data-v-
|
|
979
|
+
.rows[data-v-6da6fbe2] {
|
|
1001
980
|
font-size: 0.88em;
|
|
1002
981
|
}
|
|
1003
|
-
.table-list[data-v-
|
|
982
|
+
.table-list[data-v-6da6fbe2] {
|
|
1004
983
|
height: 100%;
|
|
1005
984
|
position: relative;
|
|
1006
985
|
padding-left: 0 !important;
|
|
1007
986
|
padding-right: 0 !important;
|
|
1008
987
|
overflow: auto;
|
|
1009
988
|
}
|
|
1010
|
-
.BagelTable .table-list[data-v-
|
|
989
|
+
.BagelTable .table-list[data-v-6da6fbe2] {
|
|
1011
990
|
overflow: unset;
|
|
1012
991
|
}
|
|
1013
|
-
.row-item[data-v-
|
|
1014
|
-
height: var(--
|
|
992
|
+
.row-item[data-v-6da6fbe2] {
|
|
993
|
+
height: var(--70bc72ee);
|
|
1015
994
|
transition: all 200ms ease;
|
|
1016
995
|
}
|
|
1017
|
-
.row-item[data-v-
|
|
996
|
+
.row-item[data-v-6da6fbe2]:hover {
|
|
1018
997
|
background: var(--bgl-gray-light);
|
|
1019
998
|
}
|
|
1020
|
-
.row-item input[type='checkbox'][data-v-
|
|
999
|
+
.row-item input[type='checkbox'][data-v-6da6fbe2] {
|
|
1021
1000
|
margin-top: 0.45rem !important;
|
|
1022
1001
|
accent-color: var(--bgl-accent-color);
|
|
1023
1002
|
}
|
|
1024
|
-
.infinite-wrapper[data-v-
|
|
1003
|
+
.infinite-wrapper[data-v-6da6fbe2] {
|
|
1025
1004
|
overflow-y: auto;
|
|
1026
1005
|
width: 100%;
|
|
1027
1006
|
}
|
|
1028
|
-
input[type='checkbox'][data-v-
|
|
1007
|
+
input[type='checkbox'][data-v-6da6fbe2] {
|
|
1029
1008
|
margin-top: 0.3rem !important;
|
|
1030
1009
|
accent-color: var(--bgl-accent-color);
|
|
1031
1010
|
transform: scale(1.2);
|
|
@@ -1037,7 +1016,7 @@ input[type='checkbox'][data-v-f795f660] {
|
|
|
1037
1016
|
height: 0.85rem;
|
|
1038
1017
|
width: 0.85rem;
|
|
1039
1018
|
}
|
|
1040
|
-
input[type='checkbox'][data-v-
|
|
1019
|
+
input[type='checkbox'][data-v-6da6fbe2]::before {
|
|
1041
1020
|
content: '';
|
|
1042
1021
|
height: 0.85rem;
|
|
1043
1022
|
width: 0.85rem;
|
|
@@ -1050,18 +1029,18 @@ input[type='checkbox'][data-v-f795f660]::before {
|
|
|
1050
1029
|
transform: scale(1);
|
|
1051
1030
|
position: absolute;
|
|
1052
1031
|
}
|
|
1053
|
-
input[type='checkbox'][data-v-
|
|
1032
|
+
input[type='checkbox'][data-v-6da6fbe2]:hover::before {
|
|
1054
1033
|
opacity: 0.2;
|
|
1055
1034
|
transform: scale(2);
|
|
1056
1035
|
}
|
|
1057
|
-
[lang='he'] [dir='ltr'][data-v-
|
|
1036
|
+
[lang='he'] [dir='ltr'][data-v-6da6fbe2] {
|
|
1058
1037
|
text-align: right;
|
|
1059
1038
|
}
|
|
1060
|
-
th input[type='checkbox'][data-v-
|
|
1039
|
+
th input[type='checkbox'][data-v-6da6fbe2] {
|
|
1061
1040
|
transform: translateY(0.2rem) scale(1.2);
|
|
1062
1041
|
accent-color: var(--bgl-accent-color);
|
|
1063
1042
|
}
|
|
1064
|
-
th[data-v-
|
|
1043
|
+
th[data-v-6da6fbe2]::after {
|
|
1065
1044
|
content: '';
|
|
1066
1045
|
border-bottom: 1px solid var(--border-color);
|
|
1067
1046
|
position: absolute;
|
|
@@ -1069,24 +1048,24 @@ th[data-v-f795f660]::after {
|
|
|
1069
1048
|
right: 0;
|
|
1070
1049
|
bottom: -1px;
|
|
1071
1050
|
}
|
|
1072
|
-
tr[data-v-
|
|
1051
|
+
tr[data-v-6da6fbe2] {
|
|
1073
1052
|
border-bottom: 1px solid var(--border-color);
|
|
1074
1053
|
cursor: pointer;
|
|
1075
1054
|
align-items: center;
|
|
1076
1055
|
}
|
|
1077
|
-
td[data-v-
|
|
1078
|
-
th[data-v-
|
|
1056
|
+
td[data-v-6da6fbe2],
|
|
1057
|
+
th[data-v-6da6fbe2] {
|
|
1079
1058
|
white-space: nowrap;
|
|
1080
1059
|
padding: 0.75rem 0.65rem;
|
|
1081
1060
|
transition: var(--bgl-transition);
|
|
1082
1061
|
line-height: 1;
|
|
1083
1062
|
}
|
|
1084
|
-
tbody tr[data-v-
|
|
1063
|
+
tbody tr[data-v-6da6fbe2] {
|
|
1085
1064
|
font-size: 0.88em;
|
|
1086
|
-
height: var(--
|
|
1065
|
+
height: var(--70bc72ee);
|
|
1087
1066
|
transition: all 200ms ease;
|
|
1088
1067
|
}
|
|
1089
|
-
tbody tr[data-v-
|
|
1068
|
+
tbody tr[data-v-6da6fbe2]:hover {
|
|
1090
1069
|
background: var(--bgl-gray-light);
|
|
1091
1070
|
}
|
|
1092
1071
|
|
|
@@ -1893,34 +1872,32 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
1893
1872
|
line-height: 1.65;
|
|
1894
1873
|
}
|
|
1895
1874
|
|
|
1896
|
-
.rich-text-editor[data-v-
|
|
1875
|
+
.rich-text-editor[data-v-8304a538] {
|
|
1897
1876
|
background: var(--input-bg);
|
|
1898
1877
|
border: 1px solid var(--border-color);
|
|
1899
1878
|
transition: all 0.3s ease;
|
|
1900
1879
|
}
|
|
1901
|
-
.editor-container[data-v-
|
|
1880
|
+
.editor-container[data-v-8304a538] {
|
|
1902
1881
|
display: flex;
|
|
1903
1882
|
gap: 0.5rem;
|
|
1904
1883
|
}
|
|
1905
|
-
.content-area[data-v-
|
|
1906
|
-
.preview-area[data-v-
|
|
1884
|
+
.content-area[data-v-8304a538],
|
|
1885
|
+
.preview-area[data-v-8304a538] {
|
|
1907
1886
|
flex: 1;
|
|
1908
|
-
min-height: 200px;
|
|
1909
1887
|
background: var(--bgl-richtext-color);
|
|
1910
1888
|
}
|
|
1911
|
-
.split-view[data-v-
|
|
1889
|
+
.split-view[data-v-8304a538] {
|
|
1912
1890
|
display: grid;
|
|
1913
1891
|
grid-template-columns: 1fr 1fr;
|
|
1914
1892
|
}
|
|
1915
|
-
.editableContent[data-v-
|
|
1893
|
+
.editableContent[data-v-8304a538] {
|
|
1916
1894
|
width: 100%;
|
|
1917
|
-
min-height: 240px;
|
|
1918
1895
|
height: 100%;
|
|
1919
1896
|
border: none;
|
|
1920
1897
|
outline: none;
|
|
1921
1898
|
background: transparent;
|
|
1922
1899
|
}
|
|
1923
|
-
.html-editor[data-v-
|
|
1900
|
+
.html-editor[data-v-8304a538] {
|
|
1924
1901
|
width: 100%;
|
|
1925
1902
|
height: 100%;
|
|
1926
1903
|
min-height: 200px;
|
|
@@ -1931,12 +1908,12 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
1931
1908
|
color: white;
|
|
1932
1909
|
background-color: var(--bgl-black);
|
|
1933
1910
|
}
|
|
1934
|
-
.preview-area[data-v-
|
|
1911
|
+
.preview-area[data-v-8304a538] {
|
|
1935
1912
|
font-family: monospace;
|
|
1936
1913
|
white-space: pre-wrap;
|
|
1937
1914
|
overflow-x: auto;
|
|
1938
1915
|
}
|
|
1939
|
-
.fullscreen-mode[data-v-
|
|
1916
|
+
.fullscreen-mode[data-v-8304a538] {
|
|
1940
1917
|
position: fixed;
|
|
1941
1918
|
top: 0;
|
|
1942
1919
|
left: 0;
|
|
@@ -1945,15 +1922,15 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
1945
1922
|
z-index: 9999;
|
|
1946
1923
|
padding: 2rem;
|
|
1947
1924
|
}
|
|
1948
|
-
.fullscreen-mode .editor-container[data-v-
|
|
1925
|
+
.fullscreen-mode .editor-container[data-v-8304a538] {
|
|
1949
1926
|
height: calc(100vh - 4rem);
|
|
1950
1927
|
}
|
|
1951
|
-
.fullscreen-mode .content-area[data-v-
|
|
1952
|
-
.fullscreen-mode .preview-area[data-v-
|
|
1928
|
+
.fullscreen-mode .content-area[data-v-8304a538],
|
|
1929
|
+
.fullscreen-mode .preview-area[data-v-8304a538] {
|
|
1953
1930
|
height: 100%;
|
|
1954
1931
|
overflow-y: auto;
|
|
1955
1932
|
}
|
|
1956
|
-
.debug-controls[data-v-
|
|
1933
|
+
.debug-controls[data-v-8304a538] {
|
|
1957
1934
|
display: flex;
|
|
1958
1935
|
gap: 0.5rem;
|
|
1959
1936
|
justify-content: flex-end;
|
|
@@ -2617,13 +2594,13 @@ input[type="range"][data-v-46e22f3e]:active::-webkit-slider-thumb {
|
|
|
2617
2594
|
font-family: 'Font Awesome 6 Brands', serif !important;
|
|
2618
2595
|
}
|
|
2619
2596
|
|
|
2620
|
-
.img-web-kit[data-v-
|
|
2597
|
+
.img-web-kit[data-v-eed047eb] {
|
|
2621
2598
|
max-width: 100%;
|
|
2622
2599
|
vertical-align: middle;
|
|
2623
2600
|
border: 0;
|
|
2624
2601
|
width: 100%;
|
|
2625
2602
|
}
|
|
2626
|
-
.error-image[data-v-
|
|
2603
|
+
.error-image[data-v-eed047eb] {
|
|
2627
2604
|
background-color: var(--skeleton-bg);
|
|
2628
2605
|
}
|
|
2629
2606
|
|
|
@@ -2917,7 +2894,7 @@ button.list-item {
|
|
|
2917
2894
|
border-bottom: none;
|
|
2918
2895
|
}
|
|
2919
2896
|
.list-item:hover,
|
|
2920
|
-
.list-item.router-link-active {
|
|
2897
|
+
.list-item.router-link-exact-active {
|
|
2921
2898
|
background-color: var(--bgl-primary-tint);
|
|
2922
2899
|
}
|
|
2923
2900
|
.notClickable:hover{
|
|
@@ -4260,36 +4237,36 @@ body:has(.bg-dark.is-active) {
|
|
|
4260
4237
|
padding: 0 4px;
|
|
4261
4238
|
}
|
|
4262
4239
|
|
|
4263
|
-
.pillLarge[data-v-
|
|
4240
|
+
.pillLarge[data-v-56ad3910]{
|
|
4264
4241
|
--pill-font-size: var(--bgl-font-size);
|
|
4265
4242
|
--pill-height:auto;
|
|
4266
4243
|
}
|
|
4267
|
-
.pillSmall[data-v-
|
|
4244
|
+
.pillSmall[data-v-56ad3910]{
|
|
4268
4245
|
--pill-font-size: 9px;
|
|
4269
4246
|
--pill-height:15px;
|
|
4270
4247
|
}
|
|
4271
|
-
.pillText[data-v-
|
|
4248
|
+
.pillText[data-v-56ad3910]{
|
|
4272
4249
|
font-size: var(--pill-font-size);
|
|
4273
4250
|
}
|
|
4274
|
-
.bgl_pill-btn[data-v-
|
|
4251
|
+
.bgl_pill-btn[data-v-56ad3910]{
|
|
4275
4252
|
color: var(--pill-btn-color);
|
|
4276
4253
|
background: var(--pill-btn-bg);
|
|
4277
4254
|
width: calc(var(--pill-height) / 1.25)!important;
|
|
4278
4255
|
height: calc(var(--pill-height) / 1.25)!important;
|
|
4279
4256
|
}
|
|
4280
|
-
.loading[data-v-
|
|
4257
|
+
.loading[data-v-56ad3910] {
|
|
4281
4258
|
border: 1px solid var(--bgl-light-text);
|
|
4282
4259
|
border-bottom: 2px solid var(--bgl-light-text);
|
|
4283
|
-
animation: spin-
|
|
4260
|
+
animation: spin-56ad3910 1s linear infinite;
|
|
4284
4261
|
border-radius: 100px;
|
|
4285
4262
|
width: 1rem;
|
|
4286
4263
|
height: 1rem;
|
|
4287
4264
|
margin: auto;
|
|
4288
4265
|
}
|
|
4289
|
-
.bgl_flatPill .loading[data-v-
|
|
4266
|
+
.bgl_flatPill .loading[data-v-56ad3910] {
|
|
4290
4267
|
border-bottom: 2px solid var(--bgl-text-color);
|
|
4291
4268
|
}
|
|
4292
|
-
@keyframes spin-
|
|
4269
|
+
@keyframes spin-56ad3910 {
|
|
4293
4270
|
0% {
|
|
4294
4271
|
transform: rotate(0deg);
|
|
4295
4272
|
}
|
|
@@ -4297,12 +4274,12 @@ body:has(.bg-dark.is-active) {
|
|
|
4297
4274
|
transform: rotate(360deg);
|
|
4298
4275
|
}
|
|
4299
4276
|
}
|
|
4300
|
-
.bgl_pill[data-v-
|
|
4277
|
+
.bgl_pill[data-v-56ad3910] {
|
|
4301
4278
|
padding-inline: calc(var(--pill-font-size) / 6);
|
|
4302
4279
|
padding-block: calc(var(--pill-font-size) / 24);
|
|
4303
4280
|
transition: var(--bgl-transition);
|
|
4304
|
-
background-color: var(--
|
|
4305
|
-
color: var(--
|
|
4281
|
+
background-color: var(--80c2f0ae);
|
|
4282
|
+
color: var(--0e0f2144);
|
|
4306
4283
|
display: inline-block;
|
|
4307
4284
|
margin-inline-end: 0.25rem;
|
|
4308
4285
|
border-radius: var(--pill-border-radius);
|
|
@@ -4310,44 +4287,44 @@ body:has(.bg-dark.is-active) {
|
|
|
4310
4287
|
vertical-align: middle;
|
|
4311
4288
|
margin-bottom: 0.25rem;
|
|
4312
4289
|
}
|
|
4313
|
-
.bgl_pill[disabled="true"][data-v-
|
|
4290
|
+
.bgl_pill[disabled="true"][data-v-56ad3910] {
|
|
4314
4291
|
opacity: 0.5;
|
|
4315
4292
|
cursor: not-allowed;
|
|
4316
4293
|
}
|
|
4317
|
-
.bgl_pill-flex[data-v-
|
|
4294
|
+
.bgl_pill-flex[data-v-56ad3910] {
|
|
4318
4295
|
display: flex;
|
|
4319
4296
|
align-items: center;
|
|
4320
4297
|
gap: 0.25rem;
|
|
4321
4298
|
justify-content: center;
|
|
4322
4299
|
height: 100%;
|
|
4323
4300
|
}
|
|
4324
|
-
.bgl_pill.bgl_flatPill[data-v-
|
|
4301
|
+
.bgl_pill.bgl_flatPill[data-v-56ad3910] {
|
|
4325
4302
|
background: transparent;
|
|
4326
4303
|
}
|
|
4327
|
-
.bgl_pill.round[data-v-
|
|
4304
|
+
.bgl_pill.round[data-v-56ad3910] {
|
|
4328
4305
|
border-radius: 1000px;
|
|
4329
4306
|
}
|
|
4330
|
-
.bgl_pill-border[data-v-
|
|
4331
|
-
outline: 1px solid var(--
|
|
4332
|
-
color: var(--
|
|
4307
|
+
.bgl_pill-border[data-v-56ad3910] {
|
|
4308
|
+
outline: 1px solid var(--80c2f0ae);
|
|
4309
|
+
color: var(--80c2f0ae);
|
|
4333
4310
|
background: transparent;
|
|
4334
4311
|
}
|
|
4335
4312
|
|
|
4336
|
-
.carousel-wrapper[data-v-
|
|
4313
|
+
.carousel-wrapper[data-v-fa8183f4] {
|
|
4337
4314
|
position: relative;
|
|
4338
4315
|
width: 100%;
|
|
4339
4316
|
}
|
|
4340
|
-
.carousel-container[data-v-
|
|
4317
|
+
.carousel-container[data-v-fa8183f4] {
|
|
4341
4318
|
margin: 0 auto;
|
|
4342
4319
|
overflow: hidden;
|
|
4343
4320
|
}
|
|
4344
|
-
.carousel-dots[data-v-
|
|
4321
|
+
.carousel-dots[data-v-fa8183f4] {
|
|
4345
4322
|
display: flex;
|
|
4346
4323
|
justify-content: center;
|
|
4347
4324
|
gap: 8px;
|
|
4348
4325
|
margin-top: 16px;
|
|
4349
4326
|
}
|
|
4350
|
-
.carousel-dot[data-v-
|
|
4327
|
+
.carousel-dot[data-v-fa8183f4] {
|
|
4351
4328
|
width: 12px;
|
|
4352
4329
|
height: 12px;
|
|
4353
4330
|
border-radius: 50px;
|
|
@@ -4357,7 +4334,7 @@ body:has(.bg-dark.is-active) {
|
|
|
4357
4334
|
cursor: pointer;
|
|
4358
4335
|
transition: all 0.3s ease-in-out;
|
|
4359
4336
|
}
|
|
4360
|
-
.carousel-dot.active[data-v-
|
|
4337
|
+
.carousel-dot.active[data-v-fa8183f4] {
|
|
4361
4338
|
background-color: var(--bgl-primary);
|
|
4362
4339
|
width: 26px;
|
|
4363
4340
|
}
|
|
@@ -8442,30 +8419,146 @@ to {
|
|
|
8442
8419
|
display: grid;
|
|
8443
8420
|
grid-template-columns: 1fr;
|
|
8444
8421
|
grid-template-rows: 1fr;
|
|
8445
|
-
}.grid-wrap-50
|
|
8422
|
+
}.grid-wrap-50,
|
|
8423
|
+
.grid-wrap-50-fit {
|
|
8446
8424
|
grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
|
|
8447
8425
|
height: max-content;
|
|
8448
8426
|
width: 100%;
|
|
8449
|
-
}.grid-wrap-100
|
|
8427
|
+
}.grid-wrap-100,
|
|
8428
|
+
.grid-wrap-100-fit {
|
|
8450
8429
|
grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
|
|
8451
8430
|
height: max-content;
|
|
8452
8431
|
width: 100%;
|
|
8453
|
-
}.grid-wrap-
|
|
8432
|
+
}.grid-wrap-150,
|
|
8433
|
+
.grid-wrap-150-fit {
|
|
8434
|
+
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
|
|
8435
|
+
height: max-content;
|
|
8436
|
+
width: 100%;
|
|
8437
|
+
}.grid-wrap-200,
|
|
8438
|
+
.grid-wrap-200-fit {
|
|
8454
8439
|
grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
|
|
8455
8440
|
height: max-content;
|
|
8456
8441
|
width: 100%;
|
|
8457
|
-
}.grid-wrap-
|
|
8442
|
+
}.grid-wrap-250,
|
|
8443
|
+
.grid-wrap-250-fit {
|
|
8444
|
+
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
|
|
8445
|
+
height: max-content;
|
|
8446
|
+
width: 100%;
|
|
8447
|
+
}.grid-wrap-300,
|
|
8448
|
+
.grid-wrap-300-fit {
|
|
8458
8449
|
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
|
|
8459
8450
|
height: max-content;
|
|
8460
8451
|
width: 100%;
|
|
8461
|
-
}.grid-wrap-
|
|
8452
|
+
}.grid-wrap-350,
|
|
8453
|
+
.grid-wrap-350-fit {
|
|
8454
|
+
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
8455
|
+
height: max-content;
|
|
8456
|
+
width: 100%;
|
|
8457
|
+
}.grid-wrap-400,
|
|
8458
|
+
.grid-wrap-400-fit {
|
|
8462
8459
|
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
|
|
8463
8460
|
height: max-content;
|
|
8464
8461
|
width: 100%;
|
|
8465
|
-
}.grid-wrap-
|
|
8462
|
+
}.grid-wrap-450,
|
|
8463
|
+
.grid-wrap-450-fit {
|
|
8464
|
+
grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
|
|
8465
|
+
height: max-content;
|
|
8466
|
+
width: 100%;
|
|
8467
|
+
}.grid-wrap-500,
|
|
8468
|
+
.grid-wrap-500-fit {
|
|
8466
8469
|
grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
|
|
8467
8470
|
height: max-content;
|
|
8468
8471
|
width: 100%;
|
|
8472
|
+
}.grid-wrap-550,
|
|
8473
|
+
.grid-wrap-550-fit {
|
|
8474
|
+
grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr));
|
|
8475
|
+
height: max-content;
|
|
8476
|
+
width: 100%;
|
|
8477
|
+
}.grid-wrap-600,
|
|
8478
|
+
.grid-wrap-600-fit {
|
|
8479
|
+
grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
|
|
8480
|
+
height: max-content;
|
|
8481
|
+
width: 100%;
|
|
8482
|
+
}.grid-wrap-650,
|
|
8483
|
+
.grid-wrap-650-fit {
|
|
8484
|
+
grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr));
|
|
8485
|
+
height: max-content;
|
|
8486
|
+
width: 100%;
|
|
8487
|
+
}.grid-wrap-700,
|
|
8488
|
+
.grid-wrap-700-fit {
|
|
8489
|
+
grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr));
|
|
8490
|
+
height: max-content;
|
|
8491
|
+
width: 100%;
|
|
8492
|
+
}.grid-wrap-750,
|
|
8493
|
+
.grid-wrap-750-fit {
|
|
8494
|
+
grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr));
|
|
8495
|
+
height: max-content;
|
|
8496
|
+
width: 100%;
|
|
8497
|
+
}.grid-wrap-800,
|
|
8498
|
+
.grid-wrap-800-fit {
|
|
8499
|
+
grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr));
|
|
8500
|
+
height: max-content;
|
|
8501
|
+
width: 100%;
|
|
8502
|
+
}.grid-wrap-850,
|
|
8503
|
+
.grid-wrap-850-fit {
|
|
8504
|
+
grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr));
|
|
8505
|
+
height: max-content;
|
|
8506
|
+
width: 100%;
|
|
8507
|
+
}.grid-wrap-900,
|
|
8508
|
+
.grid-wrap-900-fit {
|
|
8509
|
+
grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr));
|
|
8510
|
+
height: max-content;
|
|
8511
|
+
width: 100%;
|
|
8512
|
+
}.grid-wrap-950,
|
|
8513
|
+
.grid-wrap-950-fit {
|
|
8514
|
+
grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr));
|
|
8515
|
+
height: max-content;
|
|
8516
|
+
width: 100%;
|
|
8517
|
+
}.grid-wrap-1000,
|
|
8518
|
+
.grid-wrap-1000-fit {
|
|
8519
|
+
grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr));
|
|
8520
|
+
height: max-content;
|
|
8521
|
+
width: 100%;
|
|
8522
|
+
}.grid-wrap-50-fill {
|
|
8523
|
+
grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr));
|
|
8524
|
+
}.grid-wrap-100-fill {
|
|
8525
|
+
grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr));
|
|
8526
|
+
}.grid-wrap-150-fill {
|
|
8527
|
+
grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
|
|
8528
|
+
}.grid-wrap-200-fill {
|
|
8529
|
+
grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
|
|
8530
|
+
}.grid-wrap-250-fill {
|
|
8531
|
+
grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
|
|
8532
|
+
}.grid-wrap-300-fill {
|
|
8533
|
+
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
|
|
8534
|
+
}.grid-wrap-350-fill {
|
|
8535
|
+
grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
|
|
8536
|
+
}.grid-wrap-400-fill {
|
|
8537
|
+
grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
|
|
8538
|
+
}.grid-wrap-450-fill {
|
|
8539
|
+
grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
|
|
8540
|
+
}.grid-wrap-500-fill {
|
|
8541
|
+
grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
|
|
8542
|
+
}.grid-wrap-550-fill {
|
|
8543
|
+
grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr));
|
|
8544
|
+
}.grid-wrap-600-fill {
|
|
8545
|
+
grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr));
|
|
8546
|
+
}.grid-wrap-650-fill {
|
|
8547
|
+
grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr));
|
|
8548
|
+
}.grid-wrap-700-fill {
|
|
8549
|
+
grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr));
|
|
8550
|
+
}.grid-wrap-750-fill {
|
|
8551
|
+
grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr));
|
|
8552
|
+
}.grid-wrap-800-fill {
|
|
8553
|
+
grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr));
|
|
8554
|
+
}.grid-wrap-850-fill {
|
|
8555
|
+
grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr));
|
|
8556
|
+
}.grid-wrap-900-fill {
|
|
8557
|
+
grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr));
|
|
8558
|
+
}.grid-wrap-950-fill {
|
|
8559
|
+
grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr));
|
|
8560
|
+
}.grid-wrap-1000-fill {
|
|
8561
|
+
grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr));
|
|
8469
8562
|
}.grid-wrap-1 {
|
|
8470
8563
|
grid-template-columns: repeat(1, 1fr);
|
|
8471
8564
|
height: max-content;
|
|
@@ -14033,40 +14126,227 @@ to {
|
|
|
14033
14126
|
}
|
|
14034
14127
|
|
|
14035
14128
|
|
|
14036
|
-
|
|
14129
|
+
|
|
14130
|
+
.m_grid-wrap-50,
|
|
14131
|
+
.m_grid-wrap-50-fit {
|
|
14037
14132
|
grid-template-columns: repeat(auto-fit, minmax(min(50px, 100%), 1fr));
|
|
14038
14133
|
height: max-content;
|
|
14039
|
-
width: 100
|
|
14134
|
+
width: 100%;
|
|
14040
14135
|
}
|
|
14041
14136
|
|
|
14042
|
-
.m_grid-wrap-100
|
|
14137
|
+
.m_grid-wrap-100,
|
|
14138
|
+
.m_grid-wrap-100-fit {
|
|
14043
14139
|
grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
|
|
14044
14140
|
height: max-content;
|
|
14045
|
-
width: 100
|
|
14141
|
+
width: 100%;
|
|
14142
|
+
}
|
|
14143
|
+
|
|
14144
|
+
.m_grid-wrap-150,
|
|
14145
|
+
.m_grid-wrap-150-fit {
|
|
14146
|
+
grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
|
|
14147
|
+
height: max-content;
|
|
14148
|
+
width: 100%;
|
|
14046
14149
|
}
|
|
14047
14150
|
|
|
14048
|
-
.m_grid-wrap-200
|
|
14151
|
+
.m_grid-wrap-200,
|
|
14152
|
+
.m_grid-wrap-200-fit {
|
|
14049
14153
|
grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
|
|
14050
14154
|
height: max-content;
|
|
14051
|
-
width: 100
|
|
14155
|
+
width: 100%;
|
|
14052
14156
|
}
|
|
14053
14157
|
|
|
14054
|
-
.m_grid-wrap-
|
|
14158
|
+
.m_grid-wrap-250,
|
|
14159
|
+
.m_grid-wrap-250-fit {
|
|
14160
|
+
grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
|
|
14161
|
+
height: max-content;
|
|
14162
|
+
width: 100%;
|
|
14163
|
+
}
|
|
14164
|
+
|
|
14165
|
+
.m_grid-wrap-300,
|
|
14166
|
+
.m_grid-wrap-300-fit {
|
|
14055
14167
|
grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
|
|
14056
14168
|
height: max-content;
|
|
14057
|
-
width: 100
|
|
14169
|
+
width: 100%;
|
|
14170
|
+
}
|
|
14171
|
+
|
|
14172
|
+
.m_grid-wrap-350,
|
|
14173
|
+
.m_grid-wrap-350-fit {
|
|
14174
|
+
grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
|
|
14175
|
+
height: max-content;
|
|
14176
|
+
width: 100%;
|
|
14058
14177
|
}
|
|
14059
14178
|
|
|
14060
|
-
.m_grid-wrap-400
|
|
14179
|
+
.m_grid-wrap-400,
|
|
14180
|
+
.m_grid-wrap-400-fit {
|
|
14061
14181
|
grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
|
|
14062
14182
|
height: max-content;
|
|
14063
|
-
width: 100
|
|
14183
|
+
width: 100%;
|
|
14064
14184
|
}
|
|
14065
14185
|
|
|
14066
|
-
.m_grid-wrap-
|
|
14186
|
+
.m_grid-wrap-450,
|
|
14187
|
+
.m_grid-wrap-450-fit {
|
|
14188
|
+
grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
|
|
14189
|
+
height: max-content;
|
|
14190
|
+
width: 100%;
|
|
14191
|
+
}
|
|
14192
|
+
|
|
14193
|
+
.m_grid-wrap-500,
|
|
14194
|
+
.m_grid-wrap-500-fit {
|
|
14067
14195
|
grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
|
|
14068
14196
|
height: max-content;
|
|
14069
|
-
width: 100
|
|
14197
|
+
width: 100%;
|
|
14198
|
+
}
|
|
14199
|
+
|
|
14200
|
+
.m_grid-wrap-550,
|
|
14201
|
+
.m_grid-wrap-550-fit {
|
|
14202
|
+
grid-template-columns: repeat(auto-fit, minmax(min(550px, 100%), 1fr));
|
|
14203
|
+
height: max-content;
|
|
14204
|
+
width: 100%;
|
|
14205
|
+
}
|
|
14206
|
+
|
|
14207
|
+
.m_grid-wrap-600,
|
|
14208
|
+
.m_grid-wrap-600-fit {
|
|
14209
|
+
grid-template-columns: repeat(auto-fit, minmax(min(600px, 100%), 1fr));
|
|
14210
|
+
height: max-content;
|
|
14211
|
+
width: 100%;
|
|
14212
|
+
}
|
|
14213
|
+
|
|
14214
|
+
.m_grid-wrap-650,
|
|
14215
|
+
.m_grid-wrap-650-fit {
|
|
14216
|
+
grid-template-columns: repeat(auto-fit, minmax(min(650px, 100%), 1fr));
|
|
14217
|
+
height: max-content;
|
|
14218
|
+
width: 100%;
|
|
14219
|
+
}
|
|
14220
|
+
|
|
14221
|
+
.m_grid-wrap-700,
|
|
14222
|
+
.m_grid-wrap-700-fit {
|
|
14223
|
+
grid-template-columns: repeat(auto-fit, minmax(min(700px, 100%), 1fr));
|
|
14224
|
+
height: max-content;
|
|
14225
|
+
width: 100%;
|
|
14226
|
+
}
|
|
14227
|
+
|
|
14228
|
+
.m_grid-wrap-750,
|
|
14229
|
+
.m_grid-wrap-750-fit {
|
|
14230
|
+
grid-template-columns: repeat(auto-fit, minmax(min(750px, 100%), 1fr));
|
|
14231
|
+
height: max-content;
|
|
14232
|
+
width: 100%;
|
|
14233
|
+
}
|
|
14234
|
+
|
|
14235
|
+
.m_grid-wrap-800,
|
|
14236
|
+
.m_grid-wrap-800-fit {
|
|
14237
|
+
grid-template-columns: repeat(auto-fit, minmax(min(800px, 100%), 1fr));
|
|
14238
|
+
height: max-content;
|
|
14239
|
+
width: 100%;
|
|
14240
|
+
}
|
|
14241
|
+
|
|
14242
|
+
.m_grid-wrap-850,
|
|
14243
|
+
.m_grid-wrap-850-fit {
|
|
14244
|
+
grid-template-columns: repeat(auto-fit, minmax(min(850px, 100%), 1fr));
|
|
14245
|
+
height: max-content;
|
|
14246
|
+
width: 100%;
|
|
14247
|
+
}
|
|
14248
|
+
|
|
14249
|
+
.m_grid-wrap-900,
|
|
14250
|
+
.m_grid-wrap-900-fit {
|
|
14251
|
+
grid-template-columns: repeat(auto-fit, minmax(min(900px, 100%), 1fr));
|
|
14252
|
+
height: max-content;
|
|
14253
|
+
width: 100%;
|
|
14254
|
+
}
|
|
14255
|
+
|
|
14256
|
+
.m_grid-wrap-950,
|
|
14257
|
+
.m_grid-wrap-950-fit {
|
|
14258
|
+
grid-template-columns: repeat(auto-fit, minmax(min(950px, 100%), 1fr));
|
|
14259
|
+
height: max-content;
|
|
14260
|
+
width: 100%;
|
|
14261
|
+
}
|
|
14262
|
+
|
|
14263
|
+
.m_grid-wrap-1000,
|
|
14264
|
+
.m_grid-wrap-1000-fit {
|
|
14265
|
+
grid-template-columns: repeat(auto-fit, minmax(min(1000px, 100%), 1fr));
|
|
14266
|
+
height: max-content;
|
|
14267
|
+
width: 100%;
|
|
14268
|
+
}
|
|
14269
|
+
|
|
14270
|
+
|
|
14271
|
+
|
|
14272
|
+
.m_grid-wrap-50-fill {
|
|
14273
|
+
grid-template-columns: repeat(auto-fill, minmax(min(50px, 100%), 1fr));
|
|
14274
|
+
}
|
|
14275
|
+
|
|
14276
|
+
.m_grid-wrap-100-fill {
|
|
14277
|
+
grid-template-columns: repeat(auto-fill, minmax(min(100px, 100%), 1fr));
|
|
14278
|
+
}
|
|
14279
|
+
|
|
14280
|
+
.m_grid-wrap-150-fill {
|
|
14281
|
+
grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));
|
|
14282
|
+
}
|
|
14283
|
+
|
|
14284
|
+
.m_grid-wrap-200-fill {
|
|
14285
|
+
grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
|
|
14286
|
+
}
|
|
14287
|
+
|
|
14288
|
+
.m_grid-wrap-250-fill {
|
|
14289
|
+
grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
|
|
14290
|
+
}
|
|
14291
|
+
|
|
14292
|
+
.m_grid-wrap-300-fill {
|
|
14293
|
+
grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
|
|
14294
|
+
}
|
|
14295
|
+
|
|
14296
|
+
.m_grid-wrap-350-fill {
|
|
14297
|
+
grid-template-columns: repeat(auto-fill, minmax(min(350px, 100%), 1fr));
|
|
14298
|
+
}
|
|
14299
|
+
|
|
14300
|
+
.m_grid-wrap-400-fill {
|
|
14301
|
+
grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));
|
|
14302
|
+
}
|
|
14303
|
+
|
|
14304
|
+
.m_grid-wrap-450-fill {
|
|
14305
|
+
grid-template-columns: repeat(auto-fill, minmax(min(450px, 100%), 1fr));
|
|
14306
|
+
}
|
|
14307
|
+
|
|
14308
|
+
.m_grid-wrap-500-fill {
|
|
14309
|
+
grid-template-columns: repeat(auto-fill, minmax(min(500px, 100%), 1fr));
|
|
14310
|
+
}
|
|
14311
|
+
|
|
14312
|
+
.m_grid-wrap-550-fill {
|
|
14313
|
+
grid-template-columns: repeat(auto-fill, minmax(min(550px, 100%), 1fr));
|
|
14314
|
+
}
|
|
14315
|
+
|
|
14316
|
+
.m_grid-wrap-600-fill {
|
|
14317
|
+
grid-template-columns: repeat(auto-fill, minmax(min(600px, 100%), 1fr));
|
|
14318
|
+
}
|
|
14319
|
+
|
|
14320
|
+
.m_grid-wrap-650-fill {
|
|
14321
|
+
grid-template-columns: repeat(auto-fill, minmax(min(650px, 100%), 1fr));
|
|
14322
|
+
}
|
|
14323
|
+
|
|
14324
|
+
.m_grid-wrap-700-fill {
|
|
14325
|
+
grid-template-columns: repeat(auto-fill, minmax(min(700px, 100%), 1fr));
|
|
14326
|
+
}
|
|
14327
|
+
|
|
14328
|
+
.m_grid-wrap-750-fill {
|
|
14329
|
+
grid-template-columns: repeat(auto-fill, minmax(min(750px, 100%), 1fr));
|
|
14330
|
+
}
|
|
14331
|
+
|
|
14332
|
+
.m_grid-wrap-800-fill {
|
|
14333
|
+
grid-template-columns: repeat(auto-fill, minmax(min(800px, 100%), 1fr));
|
|
14334
|
+
}
|
|
14335
|
+
|
|
14336
|
+
.m_grid-wrap-850-fill {
|
|
14337
|
+
grid-template-columns: repeat(auto-fill, minmax(min(850px, 100%), 1fr));
|
|
14338
|
+
}
|
|
14339
|
+
|
|
14340
|
+
.m_grid-wrap-900-fill {
|
|
14341
|
+
grid-template-columns: repeat(auto-fill, minmax(min(900px, 100%), 1fr));
|
|
14342
|
+
}
|
|
14343
|
+
|
|
14344
|
+
.m_grid-wrap-950-fill {
|
|
14345
|
+
grid-template-columns: repeat(auto-fill, minmax(min(950px, 100%), 1fr));
|
|
14346
|
+
}
|
|
14347
|
+
|
|
14348
|
+
.m_grid-wrap-1000-fill {
|
|
14349
|
+
grid-template-columns: repeat(auto-fill, minmax(min(1000px, 100%), 1fr));
|
|
14070
14350
|
}
|
|
14071
14351
|
|
|
14072
14352
|
.m_grid-wrap-1 {
|