Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Utility nav and Online extension point fixes #1841

Merged
merged 1 commit into from
Jul 20, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions app/styles/_navbar-alt.less
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Use initial logo dimensions; or set a width and/or height (eg - background-size: auto 36px)
// Max logo dimensions width 230px / height 36px
background-size: initial;
height: @navbar-os-header-height-mobile;
height: @navbar-os-header-height-mobile - 1; // 1px border-bottom on navbar-os-mobile
width: 230px;
}

Expand Down Expand Up @@ -274,10 +274,8 @@
color: lighten(@navbar-os-project-menu-color, 20%);
cursor: pointer;
display: flex;
font-size: 18px;
&:hover, &:active, &:focus {
background-color: @sidebar-os-active-bg;
color: @navbar-os-project-menu-color;
text-decoration: none;
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions app/views/directives/header/default-header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<ng-include ng-if="globalTechPreviewIndicator" src="'views/directives/header/_tech-preview-banner.html'" class="tech-preview-banner"></ng-include>
<nav class="navbar navbar-pf-alt" role="navigation">
<div row>
<div row class="nav">
<div class="navbar-header">
<!-- mobile nav menu -->
<div row class="navbar-flex-btn toggle-menu">
Expand All @@ -18,7 +18,7 @@
</div>
<!-- system status message at mobile -->

<navbar-utility class="collapse navbar-collapse"></navbar-utility>
<navbar-utility class="hidden-xs"></navbar-utility>

<div row
extension-point
Expand Down
4 changes: 2 additions & 2 deletions dist/scripts/templates.js
Original file line number Diff line number Diff line change
Expand Up @@ -7036,7 +7036,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
$templateCache.put('views/directives/header/default-header.html',
"<ng-include ng-if=\"globalTechPreviewIndicator\" src=\"'views/directives/header/_tech-preview-banner.html'\" class=\"tech-preview-banner\"></ng-include>\n" +
"<nav class=\"navbar navbar-pf-alt\" role=\"navigation\">\n" +
"<div row>\n" +
"<div row class=\"nav\">\n" +
"<div class=\"navbar-header\">\n" +
"\n" +
"<div row class=\"navbar-flex-btn toggle-menu\">\n" +
Expand All @@ -7053,7 +7053,7 @@ angular.module('openshiftConsoleTemplates', []).run(['$templateCache', function(
"</a>\n" +
"</div>\n" +
"\n" +
"<navbar-utility class=\"collapse navbar-collapse\"></navbar-utility>\n" +
"<navbar-utility class=\"hidden-xs\"></navbar-utility>\n" +
"<div row extension-point extension-name=\"nav-system-status-mobile\" extension-types=\"dom\" class=\"navbar-flex-btn hide-if-empty\"></div>\n" +
"</div>\n" +
"</nav>"
Expand Down
4 changes: 4 additions & 0 deletions dist/scripts/vendor.js
Original file line number Diff line number Diff line change
Expand Up @@ -36836,6 +36836,10 @@ if (c.color || c.backColor) {
var d = "";
c.color && (d += "color:" + c.color + ";"), c.backColor && (d += "background-color:" + c.backColor + ";"), b += ".node-" + this._elementId + '[data-nodeId="' + c.nodeId + '"]{' + d + "}";
}
if (c.iconColor) {
var d = "color:" + c.iconColor + ";";
b += ".node-" + this._elementId + '[data-nodeId="' + c.nodeId + '"] .node-icon{' + d + "}";
}
}, this)), this._css + b;
}, g.prototype._template = {
tree:a('<ul class="list-group"></ul>'),
Expand Down
6 changes: 3 additions & 3 deletions dist/styles/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.