Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
open-source
MetaGer
Commits
a2757948
Commit
a2757948
authored
Jul 25, 2017
by
Aria Givi
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
funktionierendes dropdown mit css, styles muessen noch angepasst werden.
parent
9c52e8ba
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
0 deletions
+43
-0
resources/views/layouts/staticPages.blade.php
resources/views/layouts/staticPages.blade.php
+43
-0
No files found.
resources/views/layouts/staticPages.blade.php
View file @
a2757948
...
...
@@ -29,6 +29,49 @@
@endif
</head>
<body>
<style>
nav
ul
{
padding
:
0
;
margin
:
0
;
list-style
:
none
;
position
:
relative
;
}
nav
ul
li
{
display
:
inline-block
;
background-color
:
#E64A19
;
}
/* Hide Dropdowns by Default */
nav
ul
ul
{
display
:
none
;
position
:
absolute
;
top
:
60px
;
/* the height of the main nav */
}
/* Display Dropdowns on Hover */
nav
ul
li
:hover
>
ul
{
display
:
inherit
;
}
/* Fisrt Tier Dropdown */
nav
ul
ul
li
{
width
:
170px
;
float
:
none
;
display
:
list-item
;
position
:
relative
;
}
/* Second, Third and more Tiers */
nav
ul
ul
ul
li
{
position
:
relative
;
top
:
-60px
;
left
:
170px
;
}
</style>
<header>
@yield('homeIcon')
<nav
id=
"navbar-static-pages"
class=
"navbar-resultpage"
>
...
...
Aria Givi
@aria
mentioned in commit
d763f59e
·
Jul 31, 2017
mentioned in commit
d763f59e
mentioned in commit d763f59e693cff23645cae40d3a9b29a85e5c165
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment