Skip to content

Commit 7ea89eb

Browse files
authored
Merge pull request #734 from SolidOS/fix/subdomain-header-style
Adjust styling to fix the subdomain control issue
2 parents 361ca68 + 8ab402b commit 7ea89eb

5 files changed

Lines changed: 90 additions & 77 deletions

File tree

package-lock.json

Lines changed: 78 additions & 75 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "solid-panes",
3-
"version": "4.4.2-6",
3+
"version": "4.4.2-7",
44
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
55
"main": "dist/index.cjs.js",
66
"types": "dist/index.d.ts",

src/RDFXMLPane.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.rdfxml-pane {
22
padding: 1rem;
3+
width: 100%;
4+
min-width: 0;
35
border-top: solid 2px var(--color-data-pane-border-top, black);
46
border-left: solid 2px var(--color-data-pane-border-top, black);
57
border-bottom: solid 2px var(--color-data-pane-border-side, #777);
@@ -11,6 +13,7 @@
1113
.rdfxml-pane__source {
1214
overflow-x: auto;
1315
max-width: 100%;
16+
min-width: 0;
1417
box-sizing: border-box;
1518
font-family: monospace;
1619
font-size: 120%;
@@ -20,8 +23,9 @@
2023

2124
.rdfxml-pane__line {
2225
display: grid;
23-
grid-template-columns: var(--rdfxml-indent, 0) minmax(max-content, auto);
26+
grid-template-columns: var(--rdfxml-indent, 0) minmax(0, 1fr);
2427
align-items: start;
28+
min-width: 0;
2529
}
2630

2731
.rdfxml-pane__line-indent {

src/components/file-explorer-header/FileExplorerHeaderControls.styles.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
:host {
2+
flex: 0 1 auto;
3+
min-width: 0;
4+
25
div {
36
display: flex;
47
justify-content: flex-end;

src/n3Pane.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
.n3-pane {
22
padding: 1rem;
3+
width: 100%;
4+
min-width: 0;
35
border-top: solid 1px var(--color-data-pane-border-top, black);
46
border-left: solid 1px var(--color-data-pane-border-top, black);
57
border-bottom: solid 1px var(--color-data-pane-border-side, #777);
@@ -11,6 +13,7 @@
1113
.n3-pane__source {
1214
overflow-x: auto;
1315
max-width: 100%;
16+
min-width: 0;
1417
box-sizing: border-box;
1518
font-family: monospace;
1619
font-size: 120%;

0 commit comments

Comments
 (0)