upgrade
This commit is contained in:
@@ -0,0 +1,108 @@
|
||||
.extra-menu-from-webservice {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-from-webservice {
|
||||
display: none;
|
||||
position: absolute;
|
||||
width: 250px;
|
||||
top: 90px;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
@media (min-width: 176px) {
|
||||
.nav-from-webservice {
|
||||
top: 110px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 490px) {
|
||||
.nav-from-webservice {
|
||||
top: 131px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 576px) {
|
||||
.nav-from-webservice {
|
||||
top: 131px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
.nav-from-webservice {
|
||||
top: 129px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 992px) {
|
||||
.nav-from-webservice {
|
||||
top: 82px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 1200px) {
|
||||
.nav-from-webservice {
|
||||
top: 89px;
|
||||
}
|
||||
}
|
||||
|
||||
.menu-btn {
|
||||
position: sticky;
|
||||
width: 30px;
|
||||
height: 26px;
|
||||
cursor: pointer;
|
||||
z-index: 12;
|
||||
margin-top: 45px;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.menu-btn > span,
|
||||
.menu-btn > span::before,
|
||||
.menu-btn > span::after {
|
||||
display: block;
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 3px;
|
||||
background-color: #252323;
|
||||
transition-duration: 0.25s;
|
||||
}
|
||||
|
||||
.menu-btn > span::before {
|
||||
content: "";
|
||||
top: -8px;
|
||||
}
|
||||
|
||||
.menu-btn > span::after {
|
||||
content: "";
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
#menu-toggle {
|
||||
opacity: 0;
|
||||
position: fixed;
|
||||
top: 20px;
|
||||
left: 345px;
|
||||
}
|
||||
|
||||
#menu-toggle:checked + .menu-btn > span {
|
||||
transform: rotate(45deg);
|
||||
}
|
||||
|
||||
#menu-toggle:checked + .menu-btn > span::before {
|
||||
top: 0;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
#menu-toggle:checked + .menu-btn > span::after {
|
||||
top: 0;
|
||||
transform: rotate(90deg);
|
||||
}
|
||||
#date_alt_text {
|
||||
z-index: 0; !important;
|
||||
}
|
||||
#frm_tag_list_text {
|
||||
z-index: 0; !important;
|
||||
}
|
||||
.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
|
||||
z-index: 0; !important;
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
$(document).ready(function () {
|
||||
$('#menu-toggle').click(function() {
|
||||
$("#nav-from-webservice").toggle("slow");
|
||||
$("#nav-from-webservice").css("z-index", 15);
|
||||
});
|
||||
// Uncomment following line to set the menu open by default
|
||||
// $('#menu-toggle').click();
|
||||
});
|
||||
Reference in New Issue
Block a user