Skip to content

Commit 9e02928

Browse files
authored
Merge pull request #700 from rgantzos/main
2 parents fe1fb4f + ebdee7d commit 9e02928

3 files changed

Lines changed: 36 additions & 0 deletions

File tree

features/features.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
[
2+
{
3+
"version": 2,
4+
"id": "wrap-lists",
5+
"versionAdded": "v3.3.0"
6+
},
27
{
38
"version": 2,
49
"id": "live-stats",

features/wrap-lists/data.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"title": "Wrap List Items",
3+
"description": "Displays text in list items normally without cutting them off if they're too long.",
4+
"credits": [
5+
{ "username": "rgantzos", "url": "https://scratch.mit.edu/users/rgantzos/" }
6+
],
7+
"type": ["Editor"],
8+
"tags": ["New", "Featured", "Beta"],
9+
"dynamic": true,
10+
"styles": [{ "file": "style.css", "runOn": "/projects/*" }]
11+
}

features/wrap-lists/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
div[class^="monitor_list-row_"] {
2+
position: static !important;
3+
height: fit-content !important;
4+
}
5+
6+
div[class^="monitor_list-row_"] div[class^="monitor_value-inner_"] {
7+
text-overflow: initial !important;
8+
text-wrap: wrap !important;
9+
overflow-wrap: break-word;
10+
}
11+
12+
div[class^="monitor_list-row_"] div[class^="monitor_list-value_"] {
13+
height: fit-content !important;
14+
}
15+
16+
div.ReactVirtualized__Grid__innerScrollContainer {
17+
overflow-y: visible !important;
18+
height: fit-content !important;
19+
max-height: fit-content !important;
20+
}

0 commit comments

Comments
 (0)