Properly disable export button if no route is drawn
This commit is contained in:
parent
0e8d3eafb3
commit
d532f1e5e5
2 changed files with 7 additions and 1 deletions
|
|
@ -484,3 +484,9 @@ table.dataTable.display tbody tr.even:hover {
|
||||||
padding-right: 2px;
|
padding-right: 2px;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.nav-link.disabled {
|
||||||
|
/* by default, even if disabled, modals are opened by disabled nav-link
|
||||||
|
so we ignore pointer events in this situation to avoid that*/
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -87,7 +87,7 @@
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
<div class="nav-item dropdown">
|
<div class="nav-item">
|
||||||
<a
|
<a
|
||||||
class="nav-link"
|
class="nav-link"
|
||||||
data-toggle="modal"
|
data-toggle="modal"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue