fix z-indexes, fix tooltip on static button
parent
c770403e0f
commit
af902f3298
|
|
@ -139,4 +139,25 @@ $black-ter: hsl(0, 0%, 14%);
|
|||
.control .button.is-static,
|
||||
.menu .menu-label {
|
||||
color: $black-ter;
|
||||
}
|
||||
|
||||
/*
|
||||
* z-index to compensate for leaflet
|
||||
*/
|
||||
|
||||
.navbar.is-fixed-top {
|
||||
z-index: 1100;
|
||||
}
|
||||
|
||||
.modal {
|
||||
z-index: 1200;
|
||||
}
|
||||
|
||||
/*
|
||||
* Static button pointer events
|
||||
*/
|
||||
|
||||
span.button.is-static {
|
||||
pointer-events: all;
|
||||
cursor: default;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -18,8 +18,7 @@
|
|||
|
||||
<body>
|
||||
<nav class="navbar is-light is-fixed-top is-static-print" id="cityssm-theme--navbar" role="navigation"
|
||||
aria-label="main navigation"
|
||||
style="z-index:1100">
|
||||
aria-label="main navigation">
|
||||
<div class="container">
|
||||
<div class="navbar-brand">
|
||||
<a class="navbar-item" href="<%= urlPrefix %>/dashboard">
|
||||
|
|
|
|||
Loading…
Reference in New Issue