-
-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Fons van der Plas <[email protected]>
- Loading branch information
Showing
2 changed files
with
78 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,7 @@ main { | |
@media screen and (min-width: calc(700px + 25px + 6px + 350px)) and (max-width: calc(700px + 25px + 6px + 500px)) { | ||
main { | ||
margin-left: 0px; | ||
align-self: flex-start; | ||
} | ||
} | ||
@media screen and (min-width: calc(700px + 25px + 6px + 500px)) and (max-width: calc(700px + 25px + 6px + 500px + 500px)) { | ||
|
@@ -1168,17 +1169,60 @@ dropruler { | |
box-shadow: 0 0 11px 0px #00000010; | ||
font-family: "Alegreya Sans", sans-serif; | ||
} | ||
|
||
pluto-helpbox > header { | ||
display: flex; | ||
padding: 15px; | ||
background-color: #eef1f7; | ||
color: hsl(230, 14%, 11%); | ||
font-family: "Roboto Mono", monospace; | ||
font-weight: 700; | ||
cursor: pointer; | ||
border-top-left-radius: 6px; | ||
border-top-right-radius: 6px; | ||
/* border-top: 4px solid #8a8a8a; */ | ||
} | ||
pluto-helpbox > header::before { | ||
content: "π "; | ||
margin-right: 10px; | ||
} | ||
/* pluto-helpbox.loading>header::before{ | ||
content: "β "; | ||
margin-right: 10px; | ||
} */ | ||
pluto-helpbox.hidden > header::before { | ||
content: "π "; | ||
margin-right: 10px; | ||
} | ||
pluto-helpbox > header > input { | ||
flex-grow: 1; | ||
background-color: inherit; | ||
color: inherit; | ||
font-family: inherit; | ||
font-weight: inherit; | ||
font-size: inherit; | ||
border: none; | ||
} | ||
pluto-helpbox > header > input:focus { | ||
outline: none; | ||
} | ||
pluto-helpbox > header > button { | ||
border: none; | ||
background: none; | ||
cursor: pointer; | ||
|
||
/* for bigger hitbox */ | ||
margin: -15px; | ||
border: 15px solid transparent; | ||
} | ||
pluto-helpbox > header > button > span { | ||
display: block; | ||
content: " " !important; | ||
background-size: 1em 1em; | ||
height: 1em; | ||
width: 1em; | ||
background-image: url("https://cdn.jsdelivr.net/gh/ionic-team/[email protected]/src/svg/chevron-down-outline.svg"); | ||
} | ||
|
||
pluto-helpbox > section { | ||
height: 100%; | ||
overflow: auto; | ||
|
@@ -1202,19 +1246,12 @@ dropruler { | |
} | ||
pluto-helpbox.hidden { | ||
height: initial; | ||
cursor: pointer; | ||
} | ||
pluto-helpbox.hidden > section { | ||
display: none; | ||
} | ||
pluto-helpbox > header::before { | ||
content: "π "; | ||
} | ||
/* pluto-helpbox.loading>header::before{ | ||
content: "β "; | ||
} */ | ||
pluto-helpbox.hidden > header::before { | ||
content: "π "; | ||
} | ||
|
||
} | ||
|
||
/* FOOTER */ | ||
|