@blockquote-web-components/blockquote-base-embedded-webview 1.13.6 → 1.13.7
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@blockquote-web-components/blockquote-base-embedded-webview",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.7",
|
|
4
4
|
"description": "Webcomponent blockquote-base-embedded-webview following open-wc recommendations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lit",
|
|
@@ -155,5 +155,5 @@
|
|
|
155
155
|
"access": "public"
|
|
156
156
|
},
|
|
157
157
|
"customElements": "custom-elements.json",
|
|
158
|
-
"gitHead": "
|
|
158
|
+
"gitHead": "2580fca4a2ecd8787aa2efa7ef5861b32da29b70"
|
|
159
159
|
}
|
|
@@ -256,7 +256,7 @@ export class BlockquoteBaseEmbeddedWebview extends LitElement {
|
|
|
256
256
|
${this._sources.some((options) => options.option)
|
|
257
257
|
? html`
|
|
258
258
|
<div class="select">
|
|
259
|
-
<select @change="${this._onChangeFile}" aria-label="Cases">
|
|
259
|
+
<select id="select-sources" @change="${this._onChangeFile}" aria-label="Cases">
|
|
260
260
|
${this._sources.map(
|
|
261
261
|
(item, index) => html`
|
|
262
262
|
<option ?selected="${this.selected === index}" value="${index}">
|
|
@@ -40,7 +40,7 @@ export const styles = css`
|
|
|
40
40
|
flex-direction: column;
|
|
41
41
|
align-items: center;
|
|
42
42
|
block-size: inherit;
|
|
43
|
-
padding: calc(var(--__resizer-factor) * 1)
|
|
43
|
+
padding-block: calc(var(--__resizer-factor) * 1) calc(var(--__resizer-factor) * 2);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
46
|
:host([hidden]),
|
|
@@ -57,7 +57,8 @@ export const styles = css`
|
|
|
57
57
|
position: relative;
|
|
58
58
|
max-inline-size: 80rem;
|
|
59
59
|
margin: 0 auto;
|
|
60
|
-
padding: 0.5rem
|
|
60
|
+
padding-block: 0.5rem;
|
|
61
|
+
padding-inline: 1.5rem;
|
|
61
62
|
}
|
|
62
63
|
|
|
63
64
|
[role='heading'] {
|
|
@@ -106,7 +107,8 @@ export const styles = css`
|
|
|
106
107
|
background-color: transparent;
|
|
107
108
|
border: none;
|
|
108
109
|
border-block-end: 0.125rem solid var(--_select-bgcolor);
|
|
109
|
-
padding: 0.25em
|
|
110
|
+
padding-block: 0.25em;
|
|
111
|
+
padding-inline: 0 1em;
|
|
110
112
|
margin: 0;
|
|
111
113
|
inline-size: 100%;
|
|
112
114
|
cursor: pointer;
|
|
@@ -126,7 +128,8 @@ export const styles = css`
|
|
|
126
128
|
}
|
|
127
129
|
|
|
128
130
|
.description {
|
|
129
|
-
margin: 0
|
|
131
|
+
margin-inline: 0;
|
|
132
|
+
margin-block: 0.5rem 1rem;
|
|
130
133
|
font-size: 0.875rem;
|
|
131
134
|
}
|
|
132
135
|
|
|
@@ -146,6 +149,7 @@ export const styles = css`
|
|
|
146
149
|
}
|
|
147
150
|
|
|
148
151
|
blockquote-base-embedded-webview-resize {
|
|
152
|
+
overflow-x: hidden;
|
|
149
153
|
overflow-inline: hidden;
|
|
150
154
|
}
|
|
151
155
|
`;
|