Skip to content

Commit

Permalink
fixed overviewer.css
Browse files Browse the repository at this point in the history
  • Loading branch information
mtoensing committed Feb 20, 2019
1 parent 9abd089 commit f69b98d
Showing 4 changed files with 10 additions and 16 deletions.
Binary file modified .DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -56,10 +56,10 @@ body {
line-height: 160%;
text-align: center;
padding: 0px 6px;

background-image: url('control-bg.png');
background-repeat: repeat-x;

border: 1px solid #A9BBDF;
border-radius: 2px 2px;
box-shadow: rgba(0, 0, 0, 0.347656) 2px 2px 3px;
@@ -81,11 +81,11 @@ body {
.customControl > div.dropDown {
font-size: 12px;
background-color: white;

border: 1px solid #A9BBDF;
border-radius: 2px 2px;
box-shadow: rgba(0, 0, 0, 0.347656) 2px 2px 3px;

display: none;
}

@@ -143,7 +143,7 @@ div#searchDropDown {

div.searchResultItem {
overflow: hidden;
text-overflow: ellipsis;
text-overflow: ellipsis;
}

div.searchResultItem img {
@@ -165,17 +165,9 @@ div.worldcontrol select {
font-size: 1.2em;
}

.leaflet-container .coordbox, .leaflet-container .progress {
box-shadow: none;
font-size: 11px;
.leaflet-control-container .progress.leaflet-control {
background: rgba(255, 255, 255, 0.7);
margin: 0;
padding: 0 5px;
color: #333;
}

.ov-marker {
position:relative;
margin-left:-50%;
margin-top:-50%;
}
2 changes: 1 addition & 1 deletion build_and_run_example.sh
Original file line number Diff line number Diff line change
@@ -2,6 +2,6 @@ docker build -t marctv/overviewer113 .
docker run \
--rm \
-v /Users/mtoe/Documents/mcserver/:/tmp/world/:ro \
-v /Users/mtoe/Documents/config_test/:/tmp/config/:ro \
-v /Users/mtoe/Documents/Docker-Overviewer-1.13.X/config_test/:/tmp/config/:ro \
-v /Users/mtoe/Documents/export/:/tmp/export/:rw \
-it marctv/overviewer113
4 changes: 3 additions & 1 deletion config_test/config.py
Original file line number Diff line number Diff line change
@@ -34,14 +34,15 @@ def chestFilter(poi):
]

renders["day"] = {
'forcerender': True,
'world': 'pudel',
'title': 'Day',
'rendermode': 'normal',
"dimension": "overworld",
'crop': my_crop,
'markers': thingsToMaker
}

'''
renders["day_r"] = {
'world': 'pudel',
'title': 'Day Reversed',
@@ -120,6 +121,7 @@ def chestFilter(poi):
"dimension": "nether",
'crop': (-200, -200, 200, 200),
}
'''

# Import the Observers
from observer import MultiplexingObserver, ProgressBarObserver, JSObserver

0 comments on commit f69b98d

Please sign in to comment.