mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-17 09:41:24 +01:00
thin scrollbar
This commit is contained in:
parent
460bb29e49
commit
597f9ae038
2 changed files with 17 additions and 8 deletions
21
index.css
21
index.css
|
|
@ -1273,17 +1273,26 @@ div.slider .ui-slider-handle {
|
|||
display: none !important;
|
||||
}
|
||||
|
||||
.burgs-table {
|
||||
max-height: 75vh;
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.table {
|
||||
max-height: 75vh;
|
||||
max-width: 75vw;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
|
||||
.table::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.table::-webkit-scrollbar-thumb {
|
||||
background-color: #aaa;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.table::-webkit-scrollbar-thumb:hover {
|
||||
background: #666;
|
||||
}
|
||||
|
||||
.overflow {
|
||||
|
|
|
|||
|
|
@ -3195,7 +3195,7 @@
|
|||
<div style="left:31.2em" data-tip="Click to sort by burg type" class="sortable alphabetically" data-sortby="type">Type </div>
|
||||
</div>
|
||||
|
||||
<div id="burgsBody" class="burgs-table"></div>
|
||||
<div id="burgsBody" class="table"></div>
|
||||
|
||||
<div id="burgsFilters" data-tip="Apply a filter">
|
||||
<span>State: </span>
|
||||
|
|
@ -3230,7 +3230,7 @@
|
|||
<div style="left:30em" data-tip="Click to sort by river basin" class="sortable alphabetically" data-sortby="basin">Basin </div>
|
||||
</div>
|
||||
|
||||
<div id="riversBody" class="burgs-table"></div>
|
||||
<div id="riversBody" class="table"></div>
|
||||
|
||||
<div id="riversFooter" class="totalLine">
|
||||
<div data-tip="Rivers number" style="margin-left: 4px">Rivers: <span id="riversFooterNumber">0</span></div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue