Skip to content

Commit

Permalink
fix: sidebar was displaying above right click menu
Browse files Browse the repository at this point in the history
  • Loading branch information
TEParsons committed Oct 5, 2023
1 parent 4393ca1 commit 6b79d52
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions typora/torillic.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,21 @@
/** Background **/

content, .typora-export-content {
position: fixed;
left: 0;
right: 0;
bottom: 0;
overflow-y: scroll;
background-image: url("torillic/torillic-bg.jpg");
background-size: cover;
background-position: center;
z-index: -2;
}
.typora-export-content {
top: 0;
}
content:after, .typora-export-content:after {
content:before {
content: "Background: Dmitry Demidov via Pexels [#3843969]";
position: fixed;
bottom: 1cm;
left: 0;
width: 6.5cm;
background-color: rgba(0, 0, 0, 0.5);
color: white;
z-index: -1;
font-size: 8pt;
padding: 2mm 3mm;
border-radius: 0 2mm 2mm 0;
Expand Down Expand Up @@ -97,6 +90,12 @@ content:after, .typora-export-content:after {
}
}

/** Interface **/
.native-window #md-searchpanel {
background: var(--green);
border-bottom: 2pt solid var(--red);
}

/** Export **/
@media print {
content, .typora-export-content {
Expand Down

0 comments on commit 6b79d52

Please sign in to comment.