@examind/block-editor 0.1.28 → 0.1.30

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 CHANGED
@@ -2009,7 +2009,7 @@ sl-progress-bar {
2009
2009
  position: relative;
2010
2010
  display: flex;
2011
2011
  flex-direction: row;
2012
- align-items: center;
2012
+ align-items: start;
2013
2013
  gap: 6px;
2014
2014
  .none-of-the-above-item {
2015
2015
  width: 100%;
@@ -2022,6 +2022,7 @@ sl-progress-bar {
2022
2022
  flex-direction: row;
2023
2023
  align-items: center;
2024
2024
  gap: 6px;
2025
+ padding-block: 8px;
2025
2026
  .sl-icon {
2026
2027
  width: 20px;
2027
2028
  height: 20px;
@@ -2209,10 +2210,12 @@ sl-progress-bar {
2209
2210
  }
2210
2211
  .matching-question-prompt-question-item-controls {
2211
2212
  display: flex;
2213
+ align-self: start;
2212
2214
  flex-direction: row;
2213
2215
  align-items: center;
2214
2216
  gap: 8px;
2215
2217
  justify-content: end;
2218
+ padding-block: 8px;
2216
2219
  .sl-icon {
2217
2220
  width: 20px;
2218
2221
  height: 20px;
@@ -2387,10 +2390,12 @@ sl-progress-bar {
2387
2390
  }
2388
2391
  .journal-entry-question-prompt-question-item-controls {
2389
2392
  display: flex;
2393
+ align-self: start;
2390
2394
  flex-direction: row;
2391
2395
  align-items: center;
2392
2396
  gap: 8px;
2393
2397
  justify-content: start;
2398
+ padding-block: 8px;
2394
2399
  .sl-icon {
2395
2400
  width: 20px;
2396
2401
  height: 20px;
@@ -2419,9 +2424,7 @@ sl-progress-bar {
2419
2424
  border-radius: 4px;
2420
2425
  }
2421
2426
  sl-checkbox::part(label) {
2422
- font-size: 10px;
2423
2427
  color: var(--sl-color-neutral-1000);
2424
- line-height: 16px;
2425
2428
  }
2426
2429
  sl-checkbox::part(base) {
2427
2430
  align-items: center;
@@ -2659,6 +2662,51 @@ sl-progress-bar {
2659
2662
  }
2660
2663
  }
2661
2664
 
2665
+ /* src/styles/article-custom-question.css */
2666
+ .be-article {
2667
+ .custom-question-wrapper {
2668
+ position: relative;
2669
+ margin-top: var(--sl-spacing-large);
2670
+ margin-bottom: var(--sl-spacing-large);
2671
+ &[data-settings-node-selected] {
2672
+ outline: 1px solid var(--td-settings-node-selected-border-color) !important;
2673
+ outline-offset: 3px !important;
2674
+ border-radius: var(--sl-border-radius-small) !important;
2675
+ }
2676
+ }
2677
+ .custom-question-wrapper:first-child {
2678
+ margin-top: 0;
2679
+ }
2680
+ .custom-question-wrapper:last-child {
2681
+ margin-bottom: 0;
2682
+ }
2683
+ .custom-question-prompt {
2684
+ position: relative;
2685
+ display: flex;
2686
+ flex-direction: column;
2687
+ gap: 6px;
2688
+ }
2689
+ .custom-question-prompt-title {
2690
+ font-size: 10px;
2691
+ color: var(--sl-color-neutral-1000);
2692
+ line-height: 16px;
2693
+ text-transform: uppercase;
2694
+ }
2695
+ .custom-question-prompt-content {
2696
+ position: relative;
2697
+ display: flex;
2698
+ flex-direction: column;
2699
+ align-items: center;
2700
+ justify-content: center;
2701
+ color: var(--sl-color-neutral-600);
2702
+ padding: var(--sl-spacing-small);
2703
+ border: 1px solid var(--sl-color-neutral-300);
2704
+ border-radius: var(--sl-border-radius-medium);
2705
+ border-color: var(--sl-color-neutral-300);
2706
+ background-color: var(--sl-color-neutral-50);
2707
+ }
2708
+ }
2709
+
2662
2710
  /* src/styles/index.css */
2663
2711
 
2664
2712
  /* src/components/feedback/DotBadge.css */