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,
|
.control .button.is-static,
|
||||||
.menu .menu-label {
|
.menu .menu-label {
|
||||||
color: $black-ter;
|
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>
|
<body>
|
||||||
<nav class="navbar is-light is-fixed-top is-static-print" id="cityssm-theme--navbar" role="navigation"
|
<nav class="navbar is-light is-fixed-top is-static-print" id="cityssm-theme--navbar" role="navigation"
|
||||||
aria-label="main navigation"
|
aria-label="main navigation">
|
||||||
style="z-index:1100">
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="navbar-brand">
|
<div class="navbar-brand">
|
||||||
<a class="navbar-item" href="<%= urlPrefix %>/dashboard">
|
<a class="navbar-item" href="<%= urlPrefix %>/dashboard">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue