@examind/block-editor 0.1.28 → 0.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +45 -2
- package/dist/index.js +789 -671
- package/dist/index.mjs +450 -329
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2419,9 +2419,7 @@ sl-progress-bar {
|
|
|
2419
2419
|
border-radius: 4px;
|
|
2420
2420
|
}
|
|
2421
2421
|
sl-checkbox::part(label) {
|
|
2422
|
-
font-size: 10px;
|
|
2423
2422
|
color: var(--sl-color-neutral-1000);
|
|
2424
|
-
line-height: 16px;
|
|
2425
2423
|
}
|
|
2426
2424
|
sl-checkbox::part(base) {
|
|
2427
2425
|
align-items: center;
|
|
@@ -2659,6 +2657,51 @@ sl-progress-bar {
|
|
|
2659
2657
|
}
|
|
2660
2658
|
}
|
|
2661
2659
|
|
|
2660
|
+
/* src/styles/article-custom-question.css */
|
|
2661
|
+
.be-article {
|
|
2662
|
+
.custom-question-wrapper {
|
|
2663
|
+
position: relative;
|
|
2664
|
+
margin-top: var(--sl-spacing-large);
|
|
2665
|
+
margin-bottom: var(--sl-spacing-large);
|
|
2666
|
+
&[data-settings-node-selected] {
|
|
2667
|
+
outline: 1px solid var(--td-settings-node-selected-border-color) !important;
|
|
2668
|
+
outline-offset: 3px !important;
|
|
2669
|
+
border-radius: var(--sl-border-radius-small) !important;
|
|
2670
|
+
}
|
|
2671
|
+
}
|
|
2672
|
+
.custom-question-wrapper:first-child {
|
|
2673
|
+
margin-top: 0;
|
|
2674
|
+
}
|
|
2675
|
+
.custom-question-wrapper:last-child {
|
|
2676
|
+
margin-bottom: 0;
|
|
2677
|
+
}
|
|
2678
|
+
.custom-question-prompt {
|
|
2679
|
+
position: relative;
|
|
2680
|
+
display: flex;
|
|
2681
|
+
flex-direction: column;
|
|
2682
|
+
gap: 6px;
|
|
2683
|
+
}
|
|
2684
|
+
.custom-question-prompt-title {
|
|
2685
|
+
font-size: 10px;
|
|
2686
|
+
color: var(--sl-color-neutral-1000);
|
|
2687
|
+
line-height: 16px;
|
|
2688
|
+
text-transform: uppercase;
|
|
2689
|
+
}
|
|
2690
|
+
.custom-question-prompt-content {
|
|
2691
|
+
position: relative;
|
|
2692
|
+
display: flex;
|
|
2693
|
+
flex-direction: column;
|
|
2694
|
+
align-items: center;
|
|
2695
|
+
justify-content: center;
|
|
2696
|
+
color: var(--sl-color-neutral-600);
|
|
2697
|
+
padding: var(--sl-spacing-small);
|
|
2698
|
+
border: 1px solid var(--sl-color-neutral-300);
|
|
2699
|
+
border-radius: var(--sl-border-radius-medium);
|
|
2700
|
+
border-color: var(--sl-color-neutral-300);
|
|
2701
|
+
background-color: var(--sl-color-neutral-50);
|
|
2702
|
+
}
|
|
2703
|
+
}
|
|
2704
|
+
|
|
2662
2705
|
/* src/styles/index.css */
|
|
2663
2706
|
|
|
2664
2707
|
/* src/components/feedback/DotBadge.css */
|