lexgui 0.7.13 → 0.7.15
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/build/extensions/codeeditor.js +396 -224
- package/build/lexgui.css +3 -2
- package/build/lexgui.js +440 -300
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +464 -324
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +30 -1
- package/examples/asset-view.html +15 -5
- package/package.json +1 -1
package/build/lexgui.css
CHANGED
|
@@ -4953,7 +4953,7 @@ ul.lexassetscontent {
|
|
|
4953
4953
|
.codebasearea {
|
|
4954
4954
|
display: flex;
|
|
4955
4955
|
position: relative;
|
|
4956
|
-
overflow: inherit;
|
|
4956
|
+
/* overflow: inherit; */
|
|
4957
4957
|
background-color: var(--global-color-secondary);
|
|
4958
4958
|
}
|
|
4959
4959
|
|
|
@@ -5311,7 +5311,7 @@ ul.lexassetscontent {
|
|
|
5311
5311
|
.lexcodeeditor .autocomplete {
|
|
5312
5312
|
background-color: var(--global-medium-background);
|
|
5313
5313
|
width: 256px;
|
|
5314
|
-
max-height:
|
|
5314
|
+
max-height: 132px;
|
|
5315
5315
|
position: absolute;
|
|
5316
5316
|
left: 0;
|
|
5317
5317
|
top: 0;
|
|
@@ -5320,6 +5320,7 @@ ul.lexassetscontent {
|
|
|
5320
5320
|
border-radius: 4px;
|
|
5321
5321
|
border: 1px solid var(--global-color-tertiary);
|
|
5322
5322
|
box-shadow: 0 0px 4px #101010;
|
|
5323
|
+
overflow-x: hidden;
|
|
5323
5324
|
overflow-y: scroll;
|
|
5324
5325
|
}
|
|
5325
5326
|
|