Switch nav design
This commit is contained in:
parent
684cfedf17
commit
2d23c2fe1f
|
@ -12,17 +12,17 @@
|
|||
var React = require('React');
|
||||
|
||||
var HeaderLinks = React.createClass({
|
||||
links: [
|
||||
{section: 'docs', href: '/react-native/docs/getting-started.html#content', text: 'docs'},
|
||||
{section: 'support', href: '/react-native/support.html', text: 'support'},
|
||||
{section: 'react', href: 'http://facebook.github.io/react', text: 'react'},
|
||||
{section: 'github', href: 'http://github.com/facebook/react-native', text: 'github'},
|
||||
linksInternal: [
|
||||
{section: 'docs', href: '/react-native/docs/getting-started.html#content', text: 'Docs'},
|
||||
{section: 'support', href: '/react-native/support.html', text: 'Support'},
|
||||
],
|
||||
linksExternal: [
|
||||
{section: 'github', href: 'http://github.com/facebook/react-native', text: 'GitHub'},
|
||||
{section: 'react', href: 'http://facebook.github.io/react', text: 'React'},
|
||||
],
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<ul className="nav-site">
|
||||
{this.links.map(function(link) {
|
||||
makeLinks: function(links) {
|
||||
return links.map(function(link) {
|
||||
return (
|
||||
<li key={link.section}>
|
||||
<a
|
||||
|
@ -32,8 +32,19 @@ var HeaderLinks = React.createClass({
|
|||
</a>
|
||||
</li>
|
||||
);
|
||||
}, this)}
|
||||
}, this)
|
||||
},
|
||||
|
||||
render: function() {
|
||||
return (
|
||||
<div className="nav-site-wrapper">
|
||||
<ul className="nav-site nav-site-internal">
|
||||
{this.makeLinks(this.linksInternal)}
|
||||
</ul>
|
||||
<ul className="nav-site nav-site-external">
|
||||
{this.makeLinks(this.linksExternal)}
|
||||
</ul>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -249,7 +249,15 @@ h1:hover .hash-link, h2:hover .hash-link, h3:hover .hash-link, h4:hover .hash-li
|
|||
text-decoration: none;
|
||||
}
|
||||
|
||||
.nav-main .nav-site {
|
||||
.nav-main .nav-site-wrapper {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.nav-main .nav-site-internal {
|
||||
margin: 0 0 0 20px;
|
||||
}
|
||||
|
||||
.nav-main .nav-site-external {
|
||||
float: right;
|
||||
margin: 0;
|
||||
}
|
||||
|
@ -259,21 +267,20 @@ h1:hover .hash-link, h2:hover .hash-link, h3:hover .hash-link, h4:hover .hash-li
|
|||
}
|
||||
|
||||
.nav-main .nav-site a {
|
||||
padding: 0 8px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
box-sizing: content-box;
|
||||
padding: 0 10px;
|
||||
line-height: 50px;
|
||||
display: inline-block;
|
||||
height: 50px;
|
||||
color: #aaa;
|
||||
color: #ddd;
|
||||
}
|
||||
|
||||
.nav-main .nav-site a:hover {
|
||||
color: #fafafa;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.nav-main .nav-site a.active {
|
||||
color: #fafafa;
|
||||
color: #fff;
|
||||
border-bottom: 3px solid #05A5D1;
|
||||
background: #333;
|
||||
}
|
||||
|
@ -294,7 +301,8 @@ h1:hover .hash-link, h2:hover .hash-link, h3:hover .hash-link, h4:hover .hash-li
|
|||
}
|
||||
|
||||
.nav-main ul {
|
||||
display: inline;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.nav-main li {
|
||||
|
|
Loading…
Reference in New Issue