@designcrowd/library.brand-page 6.0.26 → 6.1.0-ast-ai
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/lib/src/{CreatedOnBrandCrowd-de-de-DU6YEVcW.js → CreatedOnBrandCrowd-de-de-wp9qx2Hr.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-en-us-DNWWK6Tj.js → CreatedOnBrandCrowd-en-us-D1YmVEXa.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-es-es-DVFvV9Qp.js → CreatedOnBrandCrowd-es-es-BBftOIFq.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-fr-B4ZkjNdw.js → CreatedOnBrandCrowd-fr-ca-CnK1Innw.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-fr-ca-B4ZkjNdw.js → CreatedOnBrandCrowd-fr-fr-CnK1Innw.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-pt-DP7AQGgW.js → CreatedOnBrandCrowd-pt-br-CoHVliEt.js} +1 -1
- package/lib/src/{CreatedOnBrandCrowd-pt-br-DP7AQGgW.js → CreatedOnBrandCrowd-pt-pt-CoHVliEt.js} +1 -1
- package/lib/src/{CreatedOnDcom-de-de-CaC3GtG9.js → CreatedOnDcom-de-de-Cc6iSdR9.js} +1 -1
- package/lib/src/{CreatedOnDcom-en-us-D16yT0-P.js → CreatedOnDcom-en-us-D4IJlAE3.js} +1 -1
- package/lib/src/{CreatedOnDcom-es-es-DA5sHgD_.js → CreatedOnDcom-es-es-CbJNVXVO.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-ca-CDv2SG1-.js → CreatedOnDcom-fr-ca-CQrJB5UN.js} +1 -1
- package/lib/src/{CreatedOnDcom-fr-fr-Cygc7c5d.js → CreatedOnDcom-fr-fr-DAU1O7Is.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-br-B_3RIzgF.js → CreatedOnDcom-pt-br-CUUQkJuj.js} +1 -1
- package/lib/src/{CreatedOnDcom-pt-pt-Bz5w-rrD.js → CreatedOnDcom-pt-pt-Cslzwv7g.js} +1 -1
- package/lib/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.js +5 -3
- package/lib/src/clients/models.d.ts +2 -0
- package/lib/src/css/library.brand-page-brandCrowd.min.css +44 -44
- package/lib/src/css/library.brand-page-brandPage.min.css +44 -44
- package/lib/src/css/library.brand-page-designCom.min.css +44 -44
- package/lib/src/css/library.brand-page-preview.min.css +44 -44
- package/lib/src/index.mjs +1 -1
- package/lib/src/{lib-6_P6kXPu.js → lib-jgDTndjv.js} +2375 -2350
- package/lib/src/plugins/bundle-translations-plugin/bundle-translations-plugin.js +1 -1
- package/lib/src/shared/template-settings/store/template-settings-store.d.ts +2 -0
- package/lib/src/shared/template-settings/store/template-settings-store.js +38 -22
- package/package.json +10 -4
- package/src/brand-page/components/shop/PaymentShippingAddress.vue +1 -0
- package/src/brand-page/components/shop/ProductDetailModal.vue +1 -0
- package/src/brand-page-maker/components/rich-text-editor/RichTextEditor.vue +2 -0
- package/src/brand-page-maker/components/seo-settings/UseExistingDomainModal.vue +1 -0
- package/src/brand-page-maker/stores/brandpage-maker/brandpage-maker-store.ts +7 -3
- package/src/clients/models.ts +3 -0
- package/src/plugins/bundle-translations-plugin/bundle-translations-plugin.ts +1 -1
- package/src/shared/content-settings/components/form-fields-field/FormFieldsField.vue +1 -0
- package/src/shared/content-settings/components/personalisation-override-field/PersonalisationOverrideField.vue +1 -0
- package/src/shared/content-settings/components/personalisation-role-field/PersonalisationRoleField.vue +1 -0
- package/src/shared/content-settings/components/text-style-field/TextStyleField.vue +1 -0
- package/src/shared/font-family-selector/FontPicker.vue +1 -0
- package/src/shared/logo-settings/components/EditLogoSettings.vue +1 -0
- package/src/shared/page-navigation/PageSelectorDropdown.vue +1 -0
- package/src/shared/template-settings/store/template-settings-store.search-personalisation.test.ts +125 -0
- package/src/shared/template-settings/store/template-settings-store.ts +56 -25
|
@@ -285,9 +285,11 @@ export const useBrandPageMakerStore = defineStore('brandPageMaker', {
|
|
|
285
285
|
.filter((c) => c !== null),
|
|
286
286
|
}));
|
|
287
287
|
}
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
288
|
+
const activePersonalisation = templateSettingsStore.searchPersonalisationData ??
|
|
289
|
+
uiStore.personalisationData;
|
|
290
|
+
if (activePersonalisation) {
|
|
291
|
+
const personalisationIndex = await getAiContentIndexByTemplateTokenAndNumberOfVariations(this.selectedTemplateId, activePersonalisation.length);
|
|
292
|
+
const { model } = await applyUserPersonalisationToBrandPageModelAsync(activePersonalisation[personalisationIndex].userPersonalisation, new BrandPageModel(brandPageModel));
|
|
291
293
|
brandPageModel.styles = model.styles;
|
|
292
294
|
brandPageModel.pages = model.pages;
|
|
293
295
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { UserPersonalisationContent } from '@brand-page';
|
|
1
2
|
export interface Paginated<T> {
|
|
2
3
|
paginatedItems: T[];
|
|
3
4
|
page: number;
|
|
@@ -5,6 +6,7 @@ export interface Paginated<T> {
|
|
|
5
6
|
pageCount: number;
|
|
6
7
|
totalResultCount: number;
|
|
7
8
|
abTestValuesToBePushed?: Record<string, string>;
|
|
9
|
+
searchPersonalisation?: UserPersonalisationContent[];
|
|
8
10
|
}
|
|
9
11
|
export interface DesignTemplate {
|
|
10
12
|
token: string;
|
|
@@ -6078,12 +6078,12 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
6078
6078
|
}
|
|
6079
6079
|
}
|
|
6080
6080
|
|
|
6081
|
-
.form-error[data-v-
|
|
6081
|
+
.form-error[data-v-665b8067] {
|
|
6082
6082
|
font-size: 0.75rem;
|
|
6083
6083
|
line-height: 1rem;
|
|
6084
6084
|
color: #f21b3f;
|
|
6085
6085
|
}
|
|
6086
|
-
select[data-v-
|
|
6086
|
+
select[data-v-665b8067] {
|
|
6087
6087
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
|
|
6088
6088
|
background-repeat: no-repeat;
|
|
6089
6089
|
background-position: right 12px center;
|
|
@@ -6861,18 +6861,18 @@ select[data-v-14e7c7c7] {
|
|
|
6861
6861
|
margin-bottom: 0.5rem
|
|
6862
6862
|
}
|
|
6863
6863
|
|
|
6864
|
-
.form-error[data-v-
|
|
6864
|
+
.form-error[data-v-71591b18] {
|
|
6865
6865
|
font-size: 0.875rem;
|
|
6866
6866
|
line-height: 1.25rem;
|
|
6867
6867
|
color: #f21b3f
|
|
6868
6868
|
}
|
|
6869
6869
|
@media (max-width: 767px) {
|
|
6870
|
-
.product-detail[data-v-
|
|
6870
|
+
.product-detail[data-v-71591b18] {
|
|
6871
6871
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
6872
6872
|
}
|
|
6873
6873
|
}
|
|
6874
6874
|
@media (min-width: 767px) {
|
|
6875
|
-
.product-detail[data-v-
|
|
6875
|
+
.product-detail[data-v-71591b18] {
|
|
6876
6876
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
6877
6877
|
}
|
|
6878
6878
|
}
|
|
@@ -8879,11 +8879,11 @@ body {
|
|
|
8879
8879
|
min-width: 33.333333%
|
|
8880
8880
|
}
|
|
8881
8881
|
|
|
8882
|
-
.font-list[data-v-
|
|
8882
|
+
.font-list[data-v-d8988a52] {
|
|
8883
8883
|
scrollbar-width: none; /* Firefox */
|
|
8884
8884
|
-ms-overflow-style: none; /* IE/Edge */
|
|
8885
8885
|
}
|
|
8886
|
-
.font-list[data-v-
|
|
8886
|
+
.font-list[data-v-d8988a52]::-webkit-scrollbar {
|
|
8887
8887
|
display: none; /* Chrome, Safari, Opera */
|
|
8888
8888
|
}
|
|
8889
8889
|
|
|
@@ -8894,16 +8894,16 @@ body {
|
|
|
8894
8894
|
* estimate keeps the scrollbar and scrollToSelectedFont accurate. Nodes
|
|
8895
8895
|
* stay in the DOM, so find-in-page / a11y / selectors are unaffected.
|
|
8896
8896
|
*/
|
|
8897
|
-
.font-list-item[data-v-
|
|
8897
|
+
.font-list-item[data-v-d8988a52] {
|
|
8898
8898
|
content-visibility: auto;
|
|
8899
8899
|
contain-intrinsic-size: auto 36px;
|
|
8900
8900
|
}
|
|
8901
8901
|
|
|
8902
|
-
.rich-text-editor[data-v-
|
|
8902
|
+
.rich-text-editor[data-v-2b402f22]:focus-within {
|
|
8903
8903
|
--tw-border-opacity: 1;
|
|
8904
8904
|
border-color: rgb(94 94 94 / var(--tw-border-opacity));
|
|
8905
8905
|
}
|
|
8906
|
-
.style-editor[data-v-
|
|
8906
|
+
.style-editor[data-v-2b402f22] {
|
|
8907
8907
|
display: -webkit-box;
|
|
8908
8908
|
display: -ms-flexbox;
|
|
8909
8909
|
display: flex;
|
|
@@ -8914,7 +8914,7 @@ body {
|
|
|
8914
8914
|
-ms-flex-wrap: wrap;
|
|
8915
8915
|
flex-wrap: wrap;
|
|
8916
8916
|
}
|
|
8917
|
-
.style-editor[data-v-
|
|
8917
|
+
.style-editor[data-v-2b402f22] button:not(.c-button-style) {
|
|
8918
8918
|
display: -webkit-box;
|
|
8919
8919
|
display: -ms-flexbox;
|
|
8920
8920
|
display: flex;
|
|
@@ -8924,16 +8924,16 @@ body {
|
|
|
8924
8924
|
padding-left: 0.5rem;
|
|
8925
8925
|
padding-right: 0.5rem;
|
|
8926
8926
|
}
|
|
8927
|
-
.style-editor-button[data-v-
|
|
8927
|
+
.style-editor-button[data-v-2b402f22] {
|
|
8928
8928
|
cursor: pointer;
|
|
8929
8929
|
padding-left: 0.25rem;
|
|
8930
8930
|
padding-top: 0.25rem;
|
|
8931
8931
|
}
|
|
8932
|
-
.toolbar-editor-button.active[data-v-
|
|
8932
|
+
.toolbar-editor-button.active[data-v-2b402f22] {
|
|
8933
8933
|
font-weight: 700;
|
|
8934
8934
|
background: #e3e3e3;
|
|
8935
8935
|
}
|
|
8936
|
-
.toolbar-editor-button[data-v-
|
|
8936
|
+
.toolbar-editor-button[data-v-2b402f22] {
|
|
8937
8937
|
height: 32px;
|
|
8938
8938
|
width: 32px;
|
|
8939
8939
|
border-radius: 4px;
|
|
@@ -8951,7 +8951,7 @@ body {
|
|
|
8951
8951
|
-ms-flex-pack: center;
|
|
8952
8952
|
justify-content: center;
|
|
8953
8953
|
}
|
|
8954
|
-
[data-v-
|
|
8954
|
+
[data-v-2b402f22] .ProseMirror {
|
|
8955
8955
|
border-top: 1px solid #ccc;
|
|
8956
8956
|
min-height: 150px;
|
|
8957
8957
|
padding: 8px;
|
|
@@ -8964,13 +8964,13 @@ body {
|
|
|
8964
8964
|
max-height: 14rem;
|
|
8965
8965
|
overflow: auto;
|
|
8966
8966
|
}
|
|
8967
|
-
.editor-compact[data-v-
|
|
8967
|
+
.editor-compact[data-v-2b402f22] .ProseMirror {
|
|
8968
8968
|
min-height: 6rem;
|
|
8969
8969
|
}
|
|
8970
|
-
[data-v-
|
|
8970
|
+
[data-v-2b402f22] .ProseMirror:focus {
|
|
8971
8971
|
outline: none;
|
|
8972
8972
|
}
|
|
8973
|
-
[data-v-
|
|
8973
|
+
[data-v-2b402f22] .ProseMirror * {
|
|
8974
8974
|
text-align: left !important;
|
|
8975
8975
|
font-size: 16px !important;
|
|
8976
8976
|
color: #606060 !important;
|
|
@@ -8979,28 +8979,28 @@ body {
|
|
|
8979
8979
|
background-color: transparent !important;
|
|
8980
8980
|
font-family: 'Lato' !important;
|
|
8981
8981
|
}
|
|
8982
|
-
[data-v-
|
|
8982
|
+
[data-v-2b402f22] .ProseMirror a s,[data-v-2b402f22] .ProseMirror a strike,[data-v-2b402f22] .ProseMirror a [data-strike] {
|
|
8983
8983
|
text-decoration: line-through !important;
|
|
8984
8984
|
}
|
|
8985
|
-
[data-v-
|
|
8985
|
+
[data-v-2b402f22] .ProseMirror a,[data-v-2b402f22] .ProseMirror a * {
|
|
8986
8986
|
color: #0097d7 !important;
|
|
8987
8987
|
text-decoration: underline !important;
|
|
8988
8988
|
}
|
|
8989
|
-
.error-message[data-v-
|
|
8989
|
+
.error-message[data-v-2b402f22] {
|
|
8990
8990
|
color: #d32f2f;
|
|
8991
8991
|
font-size: 0.875rem;
|
|
8992
8992
|
margin-top: 4px;
|
|
8993
8993
|
}
|
|
8994
|
-
.popup-container[data-v-
|
|
8994
|
+
.popup-container[data-v-2b402f22] {
|
|
8995
8995
|
position: absolute;
|
|
8996
8996
|
z-index: 10;
|
|
8997
8997
|
right: 8%;
|
|
8998
8998
|
}
|
|
8999
|
-
.hyperlink-preview[data-v-
|
|
8999
|
+
.hyperlink-preview[data-v-2b402f22] {
|
|
9000
9000
|
position: absolute;
|
|
9001
9001
|
z-index: 10;
|
|
9002
9002
|
}
|
|
9003
|
-
.popup-panel[data-v-
|
|
9003
|
+
.popup-panel[data-v-2b402f22] {
|
|
9004
9004
|
background: #fff;
|
|
9005
9005
|
border: 1px solid #ccc;
|
|
9006
9006
|
border-radius: 8px;
|
|
@@ -9008,17 +9008,17 @@ body {
|
|
|
9008
9008
|
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
9009
9009
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
9010
9010
|
}
|
|
9011
|
-
.popup-panel[data-v-
|
|
9011
|
+
.popup-panel[data-v-2b402f22] input {
|
|
9012
9012
|
border: 1px solid #ccc;
|
|
9013
9013
|
border-radius: 8px;
|
|
9014
9014
|
}
|
|
9015
|
-
.border[data-v-
|
|
9015
|
+
.border[data-v-2b402f22] {
|
|
9016
9016
|
width: 100%;
|
|
9017
9017
|
--tw-bg-opacity: 1;
|
|
9018
9018
|
background-color: rgb(208 208 208 / var(--tw-bg-opacity));
|
|
9019
9019
|
height: 1px;
|
|
9020
9020
|
}
|
|
9021
|
-
[data-v-
|
|
9021
|
+
[data-v-2b402f22] .text-dropdown-title {
|
|
9022
9022
|
height: 2rem;
|
|
9023
9023
|
width: 100%;
|
|
9024
9024
|
font-size: 0.875rem;
|
|
@@ -9027,7 +9027,7 @@ body {
|
|
|
9027
9027
|
color: rgb(43 43 43 / var(--tw-text-opacity));
|
|
9028
9028
|
font-weight: 300;
|
|
9029
9029
|
}
|
|
9030
|
-
[data-v-
|
|
9030
|
+
[data-v-2b402f22] .ProseMirror p.is-editor-empty:first-child::before {
|
|
9031
9031
|
--tw-text-opacity: 1;
|
|
9032
9032
|
color: rgb(208 208 208 / var(--tw-text-opacity));
|
|
9033
9033
|
content: attr(data-placeholder);
|
|
@@ -9036,56 +9036,56 @@ body {
|
|
|
9036
9036
|
pointer-events: none;
|
|
9037
9037
|
}
|
|
9038
9038
|
@media (max-width: 399px) {
|
|
9039
|
-
.style-editor-button-font[data-v-
|
|
9040
|
-
.style-editor-button-textstyle[data-v-
|
|
9039
|
+
.style-editor-button-font[data-v-2b402f22],
|
|
9040
|
+
.style-editor-button-textstyle[data-v-2b402f22] {
|
|
9041
9041
|
max-width: 48%;
|
|
9042
9042
|
padding-bottom: 0.25rem;
|
|
9043
9043
|
}
|
|
9044
|
-
.style-editor-button.stepper[data-v-
|
|
9044
|
+
.style-editor-button.stepper[data-v-2b402f22] {
|
|
9045
9045
|
max-width: 40%;
|
|
9046
9046
|
}
|
|
9047
|
-
.style-editor-button-stepper[data-v-
|
|
9047
|
+
.style-editor-button-stepper[data-v-2b402f22] {
|
|
9048
9048
|
max-width: 100%;
|
|
9049
9049
|
}
|
|
9050
|
-
.border.desktop[data-v-
|
|
9050
|
+
.border.desktop[data-v-2b402f22] {
|
|
9051
9051
|
display: none;
|
|
9052
9052
|
}
|
|
9053
|
-
.border.mobile[data-v-
|
|
9053
|
+
.border.mobile[data-v-2b402f22] {
|
|
9054
9054
|
display: block;
|
|
9055
9055
|
}
|
|
9056
|
-
[data-v-
|
|
9056
|
+
[data-v-2b402f22] .left-align {
|
|
9057
9057
|
-webkit-transform: translateX(-48%);
|
|
9058
9058
|
transform: translateX(-48%);
|
|
9059
9059
|
}
|
|
9060
|
-
.hyperlink-popup[data-v-
|
|
9060
|
+
.hyperlink-popup[data-v-2b402f22] {
|
|
9061
9061
|
z-index: 10000 !important;
|
|
9062
9062
|
}
|
|
9063
9063
|
}
|
|
9064
9064
|
@media (min-width: 400px) {
|
|
9065
|
-
.style-editor-button.stepper[data-v-
|
|
9065
|
+
.style-editor-button.stepper[data-v-2b402f22] {
|
|
9066
9066
|
max-width: 32%;
|
|
9067
9067
|
}
|
|
9068
|
-
.style-editor-button-font[data-v-
|
|
9068
|
+
.style-editor-button-font[data-v-2b402f22] {
|
|
9069
9069
|
max-width: 28%;
|
|
9070
9070
|
}
|
|
9071
|
-
.style-editor-button-stepper[data-v-
|
|
9071
|
+
.style-editor-button-stepper[data-v-2b402f22] {
|
|
9072
9072
|
max-width: 100%;
|
|
9073
9073
|
}
|
|
9074
|
-
.style-editor-button-textstyle[data-v-
|
|
9074
|
+
.style-editor-button-textstyle[data-v-2b402f22] {
|
|
9075
9075
|
max-width: 25%;
|
|
9076
9076
|
}
|
|
9077
|
-
.border.desktop[data-v-
|
|
9077
|
+
.border.desktop[data-v-2b402f22] {
|
|
9078
9078
|
display: block;
|
|
9079
9079
|
}
|
|
9080
|
-
.border.mobile[data-v-
|
|
9080
|
+
.border.mobile[data-v-2b402f22] {
|
|
9081
9081
|
display: none;
|
|
9082
9082
|
}
|
|
9083
|
-
[data-v-
|
|
9083
|
+
[data-v-2b402f22] .left-align {
|
|
9084
9084
|
-webkit-transform: translateX(-25%);
|
|
9085
9085
|
transform: translateX(-25%);
|
|
9086
9086
|
}
|
|
9087
9087
|
}
|
|
9088
|
-
.drop-down-item[data-v-
|
|
9088
|
+
.drop-down-item[data-v-2b402f22]:hover {
|
|
9089
9089
|
background-color: #eee;
|
|
9090
9090
|
}
|
|
9091
9091
|
|
|
@@ -6689,12 +6689,12 @@ input[data-v-4cd691db]::-webkit-inner-spin-button {
|
|
|
6689
6689
|
}
|
|
6690
6690
|
}
|
|
6691
6691
|
|
|
6692
|
-
.form-error[data-v-
|
|
6692
|
+
.form-error[data-v-665b8067] {
|
|
6693
6693
|
font-size: 0.75rem;
|
|
6694
6694
|
line-height: 1rem;
|
|
6695
6695
|
color: #f21b3f;
|
|
6696
6696
|
}
|
|
6697
|
-
select[data-v-
|
|
6697
|
+
select[data-v-665b8067] {
|
|
6698
6698
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
|
|
6699
6699
|
background-repeat: no-repeat;
|
|
6700
6700
|
background-position: right 12px center;
|
|
@@ -7472,18 +7472,18 @@ select[data-v-14e7c7c7] {
|
|
|
7472
7472
|
margin-bottom: 0.5rem
|
|
7473
7473
|
}
|
|
7474
7474
|
|
|
7475
|
-
.form-error[data-v-
|
|
7475
|
+
.form-error[data-v-71591b18] {
|
|
7476
7476
|
font-size: 0.875rem;
|
|
7477
7477
|
line-height: 1.25rem;
|
|
7478
7478
|
color: #f21b3f
|
|
7479
7479
|
}
|
|
7480
7480
|
@media (max-width: 767px) {
|
|
7481
|
-
.product-detail[data-v-
|
|
7481
|
+
.product-detail[data-v-71591b18] {
|
|
7482
7482
|
grid-template-columns: repeat(1, minmax(0, 1fr))
|
|
7483
7483
|
}
|
|
7484
7484
|
}
|
|
7485
7485
|
@media (min-width: 767px) {
|
|
7486
|
-
.product-detail[data-v-
|
|
7486
|
+
.product-detail[data-v-71591b18] {
|
|
7487
7487
|
grid-template-columns: repeat(2, minmax(0, 1fr))
|
|
7488
7488
|
}
|
|
7489
7489
|
}
|
|
@@ -9490,11 +9490,11 @@ body {
|
|
|
9490
9490
|
min-width: 33.333333%
|
|
9491
9491
|
}
|
|
9492
9492
|
|
|
9493
|
-
.font-list[data-v-
|
|
9493
|
+
.font-list[data-v-d8988a52] {
|
|
9494
9494
|
scrollbar-width: none; /* Firefox */
|
|
9495
9495
|
-ms-overflow-style: none; /* IE/Edge */
|
|
9496
9496
|
}
|
|
9497
|
-
.font-list[data-v-
|
|
9497
|
+
.font-list[data-v-d8988a52]::-webkit-scrollbar {
|
|
9498
9498
|
display: none; /* Chrome, Safari, Opera */
|
|
9499
9499
|
}
|
|
9500
9500
|
|
|
@@ -9505,16 +9505,16 @@ body {
|
|
|
9505
9505
|
* estimate keeps the scrollbar and scrollToSelectedFont accurate. Nodes
|
|
9506
9506
|
* stay in the DOM, so find-in-page / a11y / selectors are unaffected.
|
|
9507
9507
|
*/
|
|
9508
|
-
.font-list-item[data-v-
|
|
9508
|
+
.font-list-item[data-v-d8988a52] {
|
|
9509
9509
|
content-visibility: auto;
|
|
9510
9510
|
contain-intrinsic-size: auto 36px;
|
|
9511
9511
|
}
|
|
9512
9512
|
|
|
9513
|
-
.rich-text-editor[data-v-
|
|
9513
|
+
.rich-text-editor[data-v-2b402f22]:focus-within {
|
|
9514
9514
|
--tw-border-opacity: 1;
|
|
9515
9515
|
border-color: rgb(94 94 94 / var(--tw-border-opacity));
|
|
9516
9516
|
}
|
|
9517
|
-
.style-editor[data-v-
|
|
9517
|
+
.style-editor[data-v-2b402f22] {
|
|
9518
9518
|
display: -webkit-box;
|
|
9519
9519
|
display: -ms-flexbox;
|
|
9520
9520
|
display: flex;
|
|
@@ -9525,7 +9525,7 @@ body {
|
|
|
9525
9525
|
-ms-flex-wrap: wrap;
|
|
9526
9526
|
flex-wrap: wrap;
|
|
9527
9527
|
}
|
|
9528
|
-
.style-editor[data-v-
|
|
9528
|
+
.style-editor[data-v-2b402f22] button:not(.c-button-style) {
|
|
9529
9529
|
display: -webkit-box;
|
|
9530
9530
|
display: -ms-flexbox;
|
|
9531
9531
|
display: flex;
|
|
@@ -9535,16 +9535,16 @@ body {
|
|
|
9535
9535
|
padding-left: 0.5rem;
|
|
9536
9536
|
padding-right: 0.5rem;
|
|
9537
9537
|
}
|
|
9538
|
-
.style-editor-button[data-v-
|
|
9538
|
+
.style-editor-button[data-v-2b402f22] {
|
|
9539
9539
|
cursor: pointer;
|
|
9540
9540
|
padding-left: 0.25rem;
|
|
9541
9541
|
padding-top: 0.25rem;
|
|
9542
9542
|
}
|
|
9543
|
-
.toolbar-editor-button.active[data-v-
|
|
9543
|
+
.toolbar-editor-button.active[data-v-2b402f22] {
|
|
9544
9544
|
font-weight: 700;
|
|
9545
9545
|
background: #e3e3e3;
|
|
9546
9546
|
}
|
|
9547
|
-
.toolbar-editor-button[data-v-
|
|
9547
|
+
.toolbar-editor-button[data-v-2b402f22] {
|
|
9548
9548
|
height: 32px;
|
|
9549
9549
|
width: 32px;
|
|
9550
9550
|
border-radius: 4px;
|
|
@@ -9562,7 +9562,7 @@ body {
|
|
|
9562
9562
|
-ms-flex-pack: center;
|
|
9563
9563
|
justify-content: center;
|
|
9564
9564
|
}
|
|
9565
|
-
[data-v-
|
|
9565
|
+
[data-v-2b402f22] .ProseMirror {
|
|
9566
9566
|
border-top: 1px solid #ccc;
|
|
9567
9567
|
min-height: 150px;
|
|
9568
9568
|
padding: 8px;
|
|
@@ -9575,13 +9575,13 @@ body {
|
|
|
9575
9575
|
max-height: 14rem;
|
|
9576
9576
|
overflow: auto;
|
|
9577
9577
|
}
|
|
9578
|
-
.editor-compact[data-v-
|
|
9578
|
+
.editor-compact[data-v-2b402f22] .ProseMirror {
|
|
9579
9579
|
min-height: 6rem;
|
|
9580
9580
|
}
|
|
9581
|
-
[data-v-
|
|
9581
|
+
[data-v-2b402f22] .ProseMirror:focus {
|
|
9582
9582
|
outline: none;
|
|
9583
9583
|
}
|
|
9584
|
-
[data-v-
|
|
9584
|
+
[data-v-2b402f22] .ProseMirror * {
|
|
9585
9585
|
text-align: left !important;
|
|
9586
9586
|
font-size: 16px !important;
|
|
9587
9587
|
color: #606060 !important;
|
|
@@ -9590,28 +9590,28 @@ body {
|
|
|
9590
9590
|
background-color: transparent !important;
|
|
9591
9591
|
font-family: 'Lato' !important;
|
|
9592
9592
|
}
|
|
9593
|
-
[data-v-
|
|
9593
|
+
[data-v-2b402f22] .ProseMirror a s,[data-v-2b402f22] .ProseMirror a strike,[data-v-2b402f22] .ProseMirror a [data-strike] {
|
|
9594
9594
|
text-decoration: line-through !important;
|
|
9595
9595
|
}
|
|
9596
|
-
[data-v-
|
|
9596
|
+
[data-v-2b402f22] .ProseMirror a,[data-v-2b402f22] .ProseMirror a * {
|
|
9597
9597
|
color: #0097d7 !important;
|
|
9598
9598
|
text-decoration: underline !important;
|
|
9599
9599
|
}
|
|
9600
|
-
.error-message[data-v-
|
|
9600
|
+
.error-message[data-v-2b402f22] {
|
|
9601
9601
|
color: #d32f2f;
|
|
9602
9602
|
font-size: 0.875rem;
|
|
9603
9603
|
margin-top: 4px;
|
|
9604
9604
|
}
|
|
9605
|
-
.popup-container[data-v-
|
|
9605
|
+
.popup-container[data-v-2b402f22] {
|
|
9606
9606
|
position: absolute;
|
|
9607
9607
|
z-index: 10;
|
|
9608
9608
|
right: 8%;
|
|
9609
9609
|
}
|
|
9610
|
-
.hyperlink-preview[data-v-
|
|
9610
|
+
.hyperlink-preview[data-v-2b402f22] {
|
|
9611
9611
|
position: absolute;
|
|
9612
9612
|
z-index: 10;
|
|
9613
9613
|
}
|
|
9614
|
-
.popup-panel[data-v-
|
|
9614
|
+
.popup-panel[data-v-2b402f22] {
|
|
9615
9615
|
background: #fff;
|
|
9616
9616
|
border: 1px solid #ccc;
|
|
9617
9617
|
border-radius: 8px;
|
|
@@ -9619,17 +9619,17 @@ body {
|
|
|
9619
9619
|
-webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
9620
9620
|
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
|
|
9621
9621
|
}
|
|
9622
|
-
.popup-panel[data-v-
|
|
9622
|
+
.popup-panel[data-v-2b402f22] input {
|
|
9623
9623
|
border: 1px solid #ccc;
|
|
9624
9624
|
border-radius: 8px;
|
|
9625
9625
|
}
|
|
9626
|
-
.border[data-v-
|
|
9626
|
+
.border[data-v-2b402f22] {
|
|
9627
9627
|
width: 100%;
|
|
9628
9628
|
--tw-bg-opacity: 1;
|
|
9629
9629
|
background-color: rgb(208 208 208 / var(--tw-bg-opacity));
|
|
9630
9630
|
height: 1px;
|
|
9631
9631
|
}
|
|
9632
|
-
[data-v-
|
|
9632
|
+
[data-v-2b402f22] .text-dropdown-title {
|
|
9633
9633
|
height: 2rem;
|
|
9634
9634
|
width: 100%;
|
|
9635
9635
|
font-size: 0.875rem;
|
|
@@ -9638,7 +9638,7 @@ body {
|
|
|
9638
9638
|
color: rgb(43 43 43 / var(--tw-text-opacity));
|
|
9639
9639
|
font-weight: 300;
|
|
9640
9640
|
}
|
|
9641
|
-
[data-v-
|
|
9641
|
+
[data-v-2b402f22] .ProseMirror p.is-editor-empty:first-child::before {
|
|
9642
9642
|
--tw-text-opacity: 1;
|
|
9643
9643
|
color: rgb(208 208 208 / var(--tw-text-opacity));
|
|
9644
9644
|
content: attr(data-placeholder);
|
|
@@ -9647,56 +9647,56 @@ body {
|
|
|
9647
9647
|
pointer-events: none;
|
|
9648
9648
|
}
|
|
9649
9649
|
@media (max-width: 399px) {
|
|
9650
|
-
.style-editor-button-font[data-v-
|
|
9651
|
-
.style-editor-button-textstyle[data-v-
|
|
9650
|
+
.style-editor-button-font[data-v-2b402f22],
|
|
9651
|
+
.style-editor-button-textstyle[data-v-2b402f22] {
|
|
9652
9652
|
max-width: 48%;
|
|
9653
9653
|
padding-bottom: 0.25rem;
|
|
9654
9654
|
}
|
|
9655
|
-
.style-editor-button.stepper[data-v-
|
|
9655
|
+
.style-editor-button.stepper[data-v-2b402f22] {
|
|
9656
9656
|
max-width: 40%;
|
|
9657
9657
|
}
|
|
9658
|
-
.style-editor-button-stepper[data-v-
|
|
9658
|
+
.style-editor-button-stepper[data-v-2b402f22] {
|
|
9659
9659
|
max-width: 100%;
|
|
9660
9660
|
}
|
|
9661
|
-
.border.desktop[data-v-
|
|
9661
|
+
.border.desktop[data-v-2b402f22] {
|
|
9662
9662
|
display: none;
|
|
9663
9663
|
}
|
|
9664
|
-
.border.mobile[data-v-
|
|
9664
|
+
.border.mobile[data-v-2b402f22] {
|
|
9665
9665
|
display: block;
|
|
9666
9666
|
}
|
|
9667
|
-
[data-v-
|
|
9667
|
+
[data-v-2b402f22] .left-align {
|
|
9668
9668
|
-webkit-transform: translateX(-48%);
|
|
9669
9669
|
transform: translateX(-48%);
|
|
9670
9670
|
}
|
|
9671
|
-
.hyperlink-popup[data-v-
|
|
9671
|
+
.hyperlink-popup[data-v-2b402f22] {
|
|
9672
9672
|
z-index: 10000 !important;
|
|
9673
9673
|
}
|
|
9674
9674
|
}
|
|
9675
9675
|
@media (min-width: 400px) {
|
|
9676
|
-
.style-editor-button.stepper[data-v-
|
|
9676
|
+
.style-editor-button.stepper[data-v-2b402f22] {
|
|
9677
9677
|
max-width: 32%;
|
|
9678
9678
|
}
|
|
9679
|
-
.style-editor-button-font[data-v-
|
|
9679
|
+
.style-editor-button-font[data-v-2b402f22] {
|
|
9680
9680
|
max-width: 28%;
|
|
9681
9681
|
}
|
|
9682
|
-
.style-editor-button-stepper[data-v-
|
|
9682
|
+
.style-editor-button-stepper[data-v-2b402f22] {
|
|
9683
9683
|
max-width: 100%;
|
|
9684
9684
|
}
|
|
9685
|
-
.style-editor-button-textstyle[data-v-
|
|
9685
|
+
.style-editor-button-textstyle[data-v-2b402f22] {
|
|
9686
9686
|
max-width: 25%;
|
|
9687
9687
|
}
|
|
9688
|
-
.border.desktop[data-v-
|
|
9688
|
+
.border.desktop[data-v-2b402f22] {
|
|
9689
9689
|
display: block;
|
|
9690
9690
|
}
|
|
9691
|
-
.border.mobile[data-v-
|
|
9691
|
+
.border.mobile[data-v-2b402f22] {
|
|
9692
9692
|
display: none;
|
|
9693
9693
|
}
|
|
9694
|
-
[data-v-
|
|
9694
|
+
[data-v-2b402f22] .left-align {
|
|
9695
9695
|
-webkit-transform: translateX(-25%);
|
|
9696
9696
|
transform: translateX(-25%);
|
|
9697
9697
|
}
|
|
9698
9698
|
}
|
|
9699
|
-
.drop-down-item[data-v-
|
|
9699
|
+
.drop-down-item[data-v-2b402f22]:hover {
|
|
9700
9700
|
background-color: #eee;
|
|
9701
9701
|
}
|
|
9702
9702
|
|