diff --git a/static/css/directives/components/pages/repo-page/body.scss b/static/css/directives/components/pages/repo-page/body.scss index 3b038c788..27eaadbf9 100644 --- a/static/css/directives/components/pages/repo-page/body.scss +++ b/static/css/directives/components/pages/repo-page/body.scss @@ -21,22 +21,21 @@ li.active a { color: #51a3d9; - border: none; border-bottom: 1px solid #51a3d9; &:hover { color: #51a3d9; - border: none; border-bottom: 1px solid #51a3d9; } } li a { color: #333; - + border-bottom: 1px solid #DDD; &:focus, &:hover { - border: none; + border: 1px solid #fff; + border-bottom: 1px solid #ddd; background-color: #fff; } } diff --git a/static/js/directives/components/pages/repo-page/body.tsx b/static/js/directives/components/pages/repo-page/body.tsx index 172a94db5..a6145e85b 100644 --- a/static/js/directives/components/pages/repo-page/body.tsx +++ b/static/js/directives/components/pages/repo-page/body.tsx @@ -14,14 +14,18 @@ class body extends React.Component { } render () { let description: string = this.props.description; - if (description === "") { + if (description === null || description === "") { description = "No Description"; } return(