@examind/block-editor 0.1.19 → 0.1.21
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 +17 -11
- package/dist/index.js +1457 -1372
- package/dist/index.mjs +877 -792
- package/package.json +2 -2
package/dist/index.css
CHANGED
|
@@ -2106,8 +2106,9 @@ sl-progress-bar {
|
|
|
2106
2106
|
}
|
|
2107
2107
|
.short-answer-question-prompt-title {
|
|
2108
2108
|
font-size: var(--sl-font-size-medium);
|
|
2109
|
-
font-weight: var(--sl-font-weight-
|
|
2109
|
+
font-weight: var(--sl-font-weight-normal);
|
|
2110
2110
|
color: var(--sl-color-neutral-600);
|
|
2111
|
+
text-transform: uppercase;
|
|
2111
2112
|
}
|
|
2112
2113
|
.short-answer-question-prompt-content {
|
|
2113
2114
|
position: relative;
|
|
@@ -2120,16 +2121,7 @@ sl-progress-bar {
|
|
|
2120
2121
|
padding-bottom: var(--sl-spacing-small);
|
|
2121
2122
|
border: 1px solid var(--sl-color-neutral-300);
|
|
2122
2123
|
border-radius: var(--sl-border-radius-medium);
|
|
2123
|
-
border-color: var(--sl-color-
|
|
2124
|
-
background-color: var(--sl-color-success-50);
|
|
2125
|
-
.title {
|
|
2126
|
-
color: var(--sl-color-success-500);
|
|
2127
|
-
display: flex;
|
|
2128
|
-
flex-direction: row;
|
|
2129
|
-
align-items: center;
|
|
2130
|
-
gap: var(--sl-spacing-x-small);
|
|
2131
|
-
font-size: var(--sl-font-size-x-small);
|
|
2132
|
-
}
|
|
2124
|
+
border-color: var(--sl-color-neutral-1000);
|
|
2133
2125
|
p,
|
|
2134
2126
|
h1,
|
|
2135
2127
|
h2,
|
|
@@ -2139,6 +2131,20 @@ sl-progress-bar {
|
|
|
2139
2131
|
margin-bottom: 0;
|
|
2140
2132
|
line-height: var(--sl-line-height-normal);
|
|
2141
2133
|
}
|
|
2134
|
+
.nested-content {
|
|
2135
|
+
min-height: 7em;
|
|
2136
|
+
}
|
|
2137
|
+
}
|
|
2138
|
+
.short-answer-question-prompt-footer {
|
|
2139
|
+
display: flex;
|
|
2140
|
+
flex-direction: row;
|
|
2141
|
+
justify-content: start;
|
|
2142
|
+
align-items: center;
|
|
2143
|
+
font-size: var(--sl-font-size-small);
|
|
2144
|
+
font-weight: var(--sl-font-weight-normal);
|
|
2145
|
+
color: var(--sl-color-neutral-600);
|
|
2146
|
+
text-transform: uppercase;
|
|
2147
|
+
padding-inline: var(--sl-spacing-small);
|
|
2142
2148
|
}
|
|
2143
2149
|
}
|
|
2144
2150
|
|