Skip to content

Commit

Permalink
style: improve explorer styling
Browse files Browse the repository at this point in the history
Various fixes on the schema explorer styling:
* Correct characters overflowing some inputs in Safari
* Fix background color not being set in query fields on dark mode
* Enhance font style for test inputs
* Improve scrollbar styling
* Reorganize UI to have scrollbars on query content only
  • Loading branch information
TPXP committed May 20, 2024
1 parent 03ab3a6 commit cbf3e60
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/explorer-styling-enhancements.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@graphiql/plugin-explorer": patch
---

style: improve scrollbar styling on the query editor
48 changes: 44 additions & 4 deletions packages/graphiql-plugin-explorer/src/index.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.docExplorerWrap {
height: unset !important;
min-width: unset !important;
height: 100% !important;
min-width: auto !important;
width: unset !important;
}

Expand All @@ -17,22 +17,62 @@
font-family: var(--font-family-mono) !important;
font-size: var(--font-size-body) !important;
padding: 0 !important;
flex: 1;
}

.graphiql-explorer-root > div:first-child {
padding-left: var(--px-8);
overflow: hidden !important;
overflow: auto !important;
scrollbar-color: #88888888 transparent;
}

/* Safari scrollbars */
.graphiql-explorer-root>div:first-child::-webkit-scrollbar-track,
.graphiql-explorer-root>div:first-child::-webkit-scrollbar,
.graphiql-explorer-root>div:first-child::-webkit-scrollbar-corner{
background-color: transparent;
}

.graphiql-explorer-root>div:first-child::-webkit-scrollbar-thumb {
border-radius: 99px;
padding: 3px;
box-shadow: inset 0 0 99px 99px #88888888;
border: solid 3px transparent;
}

.graphiql-explorer-root input {
background: hsl(var(--color-base));
padding: 1px 0;
font-family: inherit;
}

.graphiql-explorer-root select {
background-color: hsl(var(--color-base));
background-color: hsl(var(--color-base)) !important;
border: 1px solid hsla(var(--color-neutral), var(--alpha-secondary));
border-radius: var(--border-radius-4);
color: hsl(var(--color-neutral));
margin: 0 var(--px-4);
padding: var(--px-4) var(--px-6);
}

.doc-explorer-contents {
flex:1;
display: flex;
flex-direction: column;
overflow: auto !important;
}

.doc-explorer-title-bar {
flex: 0;
}

.graphiql-explorer-root .graphiql-operation-title-bar {
height: 30px;
line-height: 26px;
}

.graphiql-explorer-root > div:last-child {
min-height: auto !important;
max-height: auto !important;
flex: 0;
}
2 changes: 1 addition & 1 deletion packages/graphiql-plugin-explorer/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ const styles = {
fontSize: '1em',
},
explorerActionsStyle: {
padding: 'var(--px-8) var(--px-4)',
padding: 'var(--px-8) var(--px-4) 0',
},
actionButtonStyle: {
backgroundColor: 'transparent',
Expand Down

0 comments on commit cbf3e60

Please sign in to comment.