changed dropdown activation to click
This commit is contained in:
parent
7bf072134c
commit
972d5edb54
2 changed files with 48 additions and 10 deletions
|
@ -1,14 +1,50 @@
|
||||||
.nav {
|
#user-nav {
|
||||||
list-style: none;
|
list-style: none;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
position: relative;
|
||||||
z-index: 5;
|
z-index: 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav ul {
|
#user-nav ul {
|
||||||
display: none;
|
display: none;
|
||||||
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav li:hover ul {
|
#user-nav li {
|
||||||
display: inline-block;
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-nav li a {
|
||||||
|
padding: 10px 20px 10px;
|
||||||
|
border-radius: 5px;
|
||||||
|
background-color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-nav input[type="checkbox"]:checked + ul {
|
||||||
|
display: block;
|
||||||
|
background-color: white;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-nav a {
|
||||||
|
display: block;
|
||||||
|
text-decoration: none;
|
||||||
|
color: #d64760;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-nav a:hover {
|
||||||
|
color: black;
|
||||||
|
transition-timing-function: linear
|
||||||
|
transition-duration: 0.25s;
|
||||||
|
}
|
||||||
|
|
||||||
|
#user-nav label {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vanish {
|
||||||
|
/*position: absolute;
|
||||||
|
left: -9999px;*/
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,25 +1,27 @@
|
||||||
<nav id="header">
|
<nav id="header">
|
||||||
<div .row>
|
<div .row>
|
||||||
<div .col-md-9>
|
<div .col-md-9>
|
||||||
<ul #user-nav .nav .nav-pills>
|
<ul #user-nav>
|
||||||
<li>
|
<li>
|
||||||
<a href=@{HomeR}>
|
<a href=@{HomeR}>
|
||||||
Home
|
Home
|
||||||
$maybe su <- msu
|
$maybe su <- msu
|
||||||
<li>
|
<li>
|
||||||
|
<label for="cb1">
|
||||||
<a>
|
<a>
|
||||||
#{slug} <span class="caret"></span>
|
#{slug}<span class="caret"></span>
|
||||||
|
<input type="checkbox" #cb1 .vanish aria-hidden="true">
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href=@{UserR username}>
|
<a href=@{UserR username}>
|
||||||
Your Profile
|
Your Profile
|
||||||
<li >
|
<li>
|
||||||
<a href=@{NewAlbumR}>
|
<a href=@{NewAlbumR}>
|
||||||
Create album
|
Create album
|
||||||
<li >
|
<li>
|
||||||
<a href=@{UploadR}>
|
<a href=@{UploadR}>
|
||||||
Upload images
|
Upload images
|
||||||
<li >
|
<li>
|
||||||
<a href=@{LogoutR}>
|
<a href=@{LogoutR}>
|
||||||
Logout
|
Logout
|
||||||
$nothing
|
$nothing
|
||||||
|
|
Loading…
Reference in a new issue