refs #43 compat with NC14
parent
cf72733a10
commit
be69f65cef
|
@ -2,6 +2,7 @@
|
|||
<info>
|
||||
<id>gpxedit</id>
|
||||
<name>GpxEdit</name>
|
||||
<summary lang="en">Simple GPX file editor</summary>
|
||||
<description>
|
||||
# GpxEdit Nextcloud application
|
||||
# GpxEdit Owncloud application
|
||||
|
@ -80,10 +81,9 @@ If you look for more powerfull GPX editors, take a look at :
|
|||
- [JOSM](https://josm.openstreetmap.de/)
|
||||
|
||||
</description>
|
||||
<licence>AGPL</licence>
|
||||
<summary>Simple GPX file editor</summary>
|
||||
<author>Julien Veyssier</author>
|
||||
<version>0.0.8</version>
|
||||
<licence>agpl</licence>
|
||||
<author>Julien Veyssier</author>
|
||||
<namespace>GpxEdit</namespace>
|
||||
<documentation>
|
||||
<user>https://gitlab.com/eneiluj/gpxedit-oc/wikis/userdoc</user>
|
||||
|
@ -98,9 +98,10 @@ If you look for more powerfull GPX editors, take a look at :
|
|||
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/428415bd2cd22b8e74230730786e9551/ed1.png</screenshot>
|
||||
<screenshot>https://gitlab.com/eneiluj/gpxedit-oc/uploads/c01709a10880a64815ca783fcf574169/ed2.png</screenshot>
|
||||
<dependencies>
|
||||
<php min-version="5.6"/>
|
||||
<owncloud min-version="9.0" max-version="10.9" />
|
||||
<nextcloud min-version="9.0" max-version="13.9"/>
|
||||
<database min-version="9.4">pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database min-version="5.5">mysql</database>
|
||||
<nextcloud min-version="14.0" max-version="14.9"/>
|
||||
</dependencies>
|
||||
<settings>
|
||||
<admin>OCA\GpxEdit\Settings\Admin</admin>
|
||||
|
|
|
@ -10,12 +10,9 @@ body {
|
|||
}
|
||||
|
||||
div#map {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
width:100%;
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
/*width: calc(100% - 300px);*/
|
||||
}
|
||||
|
||||
|
@ -913,12 +910,18 @@ div#ho button {
|
|||
margin-left: -4px !important;
|
||||
margin-top: -4px !important;
|
||||
}
|
||||
.sidebar-tabs > li.active {
|
||||
background-color: #E8E8E8;
|
||||
}
|
||||
.leaflet-control-locate.active .fa {
|
||||
color: #2074B6;
|
||||
}
|
||||
.leaflet-control-locate .fa {
|
||||
color: black;
|
||||
.sidebar-tabs > li.active {
|
||||
background-color: #E8E8E8;
|
||||
}
|
||||
.leaflet-control-locate.active .fa {
|
||||
color: #2074B6;
|
||||
}
|
||||
.leaflet-control-locate .fa {
|
||||
color: black;
|
||||
}
|
||||
.leaflet-bottom {
|
||||
position: fixed;
|
||||
}
|
||||
input[type=checkbox] {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
|
|
@ -35,8 +35,6 @@ style('gpxedit', 'Leaflet.LinearMeasurement');
|
|||
|
||||
<div id="app">
|
||||
<div id="app-content">
|
||||
<div id="app-content-wrapper">
|
||||
<?php print_unescaped($this->inc('gpxcontent')); ?>
|
||||
</div>
|
||||
<?php print_unescaped($this->inc('gpxcontent')); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue