Skip to content

Commit bbe05a9

Browse files
author
Kyle Clemens
committed
fix: handle overflow and z-indices correctly
1 parent de93ee9 commit bbe05a9

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

webserver/web/static/css/codesass/codesass.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
position: absolute;
4141
top: 0;
4242
left: 0;
43-
overflow: auto;
43+
overflow: visible;
4444
margin: 0 !important;
4545
outline: none;
4646
text-align: left;
@@ -70,7 +70,7 @@
7070
height: 100%;
7171
text-align: right;
7272
color: #999;
73-
z-index: 2;
73+
z-index: 4;
7474
}
7575
.codesass__lines__line {
7676
display: block;
@@ -86,7 +86,7 @@
8686
width: 40px;
8787
height: 100%;
8888
background: #eee;
89-
z-index: 1;
89+
z-index: 4;
9090
}
9191
.codesass {
9292
background: #fff;

webserver/web/templates/index.html.tera

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<link
1616
rel="stylesheet"
1717
href="/static/css/codesass/codesass.css?v={{ resources_version }}"
18-
integrity="sha384-+97redWAaid5l/waCAY6qGIBeazYoG2D9v7DE3JUCjJsHxddBSh4OLOZV86Iy6vF"/>
18+
integrity="sha384-4bb3B6RVIvP4pnQirdxfsf9N0JO0R66fAqXrmCjU4FtowSWgR19etRc6vaTQZ/R3"/>
1919
<script
2020
defer
2121
src="/static/js/codesass/codesass.min.js?v={{ resources_version }}"

webserver/web/templates/paste/edit.html.tera

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<link
1919
rel="stylesheet"
2020
href="/static/css/codesass/codesass.css?v={{ resources_version }}"
21-
integrity="sha384-+97redWAaid5l/waCAY6qGIBeazYoG2D9v7DE3JUCjJsHxddBSh4OLOZV86Iy6vF"/>
21+
integrity="sha384-4bb3B6RVIvP4pnQirdxfsf9N0JO0R66fAqXrmCjU4FtowSWgR19etRc6vaTQZ/R3"/>
2222
<script
2323
defer
2424
src="/static/js/codesass/codesass.min.js?v={{ resources_version }}"

0 commit comments

Comments
 (0)