Skip to content

Commit 14188ec

Browse files
Merge pull request #2388 from rhamilto/sg00dwin-vertical-nav-tab-issue-2372
Automatic merge from submit-queue. Rework nav to remove :hover selectors to address bugs, inconsistencies Fixes #2373 Building on what @sg00dwin did in https://github.com/sg00dwin/origin-web-console/tree/vertical-nav-tab-issue2373%23issuecomment-339359101, this removes all :hover styling changes in order to forge consistency across hover, click, and tab navigation. @sg00dwin, @spadgett, mind pulling these changes, testing, and seeing if everything is ok?
2 parents 3d54f38 + 750a086 commit 14188ec

File tree

4 files changed

+67
-56
lines changed

4 files changed

+67
-56
lines changed

app/scripts/directives/nav.js

+7-15
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ angular.module('openshiftConsole')
2121
templateUrl: 'views/_sidebar.html',
2222
controller: function($scope) {
2323
var path;
24-
var hoverDelay = 300;
25-
var hideDelay = hoverDelay + 200;
24+
var hoverDelay = 200;
25+
var hideDelay = hoverDelay + 100;
2626

2727
$scope.navItems = Constants.PROJECT_NAVIGATION;
2828
$scope.sidebar = {};
@@ -89,6 +89,10 @@ angular.module('openshiftConsole')
8989
};
9090

9191
$scope.itemClicked = function(primaryItem) {
92+
// Remove `isHover` from any of the items if another primary item was
93+
// activated using the keyboard.
94+
clearHover();
95+
9296
if (primaryItem.href) {
9397
// Make sure any secondary nav closes if a primary item with an
9498
// href was activated using the keyboard.
@@ -97,10 +101,6 @@ angular.module('openshiftConsole')
97101
return;
98102
}
99103

100-
// Remove `isHover` from any of the items if another primary item was
101-
// activated using the keyboard.
102-
clearHover();
103-
104104
// Open the item regardless of whether the mouse is really over it
105105
// for keyboard and screen reader accessibility.
106106
primaryItem.isHover = true;
@@ -110,10 +110,6 @@ angular.module('openshiftConsole')
110110
};
111111

112112
$scope.onMouseEnter = function(primaryItem) {
113-
if (_.isEmpty(primaryItem.secondaryNavSections)) {
114-
return;
115-
}
116-
117113
if (primaryItem.mouseLeaveTimeout) {
118114
$timeout.cancel(primaryItem.mouseLeaveTimeout);
119115
primaryItem.mouseLeaveTimeout = null;
@@ -122,15 +118,11 @@ angular.module('openshiftConsole')
122118
primaryItem.mouseEnterTimeout = $timeout(function() {
123119
primaryItem.isHover = true;
124120
primaryItem.mouseEnterTimeout = null;
125-
$scope.sidebar.secondaryOpen = true;
121+
$scope.sidebar.secondaryOpen = !_.isEmpty(primaryItem.secondaryNavSections);
126122
}, hoverDelay);
127123
};
128124

129125
$scope.onMouseLeave = function(primaryItem) {
130-
if (_.isEmpty(primaryItem.secondaryNavSections)) {
131-
return;
132-
}
133-
134126
if (primaryItem.mouseEnterTimeout) {
135127
$timeout.cancel(primaryItem.mouseEnterTimeout);
136128
primaryItem.mouseEnterTimeout = null;

app/styles/_vertical-nav.less

+40-27
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
display: none;
1212
}
1313
.has-project-bar & {
14-
transition: width .1s ease-in-out;
1514
top: (@navbar-os-header-height-mobile + @project-bar-height-mobile);
1615
@media(min-width: @screen-sm-min) {
1716
display: block;
@@ -29,29 +28,31 @@
2928
top: 0px;
3029
width: 100%;
3130
}
32-
&.active > a,
33-
&:focus > a,
34-
&:hover > a,
35-
> a:focus,
36-
> a:hover {
37-
background-color: @nav-pf-vertical-active-bg-color;
38-
color: @nav-pf-vertical-active-color;
39-
font-weight: 300;
40-
&:after,
31+
// override PatternFly :hover as we don't want :hover changes
32+
&:hover > a {
33+
background-color: transparent;
34+
color: @nav-pf-vertical-color;
4135
.fa,
4236
.pficon {
43-
color: @nav-pf-vertical-active-color;
37+
color: @nav-pf-vertical-icon-color;
4438
}
4539
}
46-
&.active > a {
40+
> a:focus,
41+
&.active > a,
42+
&.is-hover > a {
43+
background-color: @nav-pf-vertical-active-bg-color;
44+
color: @nav-pf-vertical-active-color !important;
45+
&:after {
46+
color: @nav-pf-vertical-active-color !important;
47+
}
4748
.fa,
4849
.pficon {
49-
color: @nav-pf-vertical-active-icon-color !important;
50+
color: @nav-pf-vertical-active-icon-color;
5051
}
5152
}
5253
> a {
5354
font-size: @font-size-base;
54-
font-weight: 300;
55+
font-weight: 300 !important;
5556
text-decoration: none;
5657
@media(max-width: @screen-xs-max) {
5758
height: auto;
@@ -70,23 +71,35 @@
7071
text-decoration: none !important;
7172
}
7273
}
73-
// padding aligns arrow vertically
74-
&.secondary-nav-item-pf > a:after {
75-
padding: 16px 0;
76-
@media(max-width: @screen-xs-max) {
77-
padding: 8px 0;
74+
&.secondary-nav-item-pf {
75+
> a:after {
76+
font-size: 14px; // make right arrow size consistent with project-bar arrows
77+
padding: 16px 0; // padding aligns arrow vertically
78+
@media(max-width: @screen-xs-max) {
79+
padding: 8px 0;
80+
}
81+
}
82+
&.is-hover > a {
83+
width: @nav-pf-vertical-width + 1; // cover .nav-pf-vertical border-right
84+
z-index: @zindex-navbar-fixed + 1; // raise z-index to overlay
85+
&:after {
86+
color: @nav-pf-vertical-active-color;
87+
right: 21px; // move 1px to offset parent width 1px increase onHover due to pf rules
88+
}
7889
}
79-
}
80-
// make right arrow size consistent with project-bar arrows
81-
&.secondary-nav-item-pf > a:after {
82-
font-size: 14px;
8390
}
8491
}
8592
&.collapsed {
86-
.list-group-item.secondary-nav-item-pf:hover,
87-
.list-group-item.secondary-nav-item-pf.active {
88-
> a:after {
89-
right: 12px !important; // prevent arrow moving onHover due to pf rules
93+
.list-group-item.secondary-nav-item-pf {
94+
&.is-hover > a {
95+
width: @nav-pf-vertical-collapsed-width + 2; // cover .nav-pf-vertical.collapsed border-right
96+
}
97+
&.is-hover,
98+
&:hover,
99+
&.active {
100+
> a:after {
101+
right: 12px !important; // prevent arrow moving onHover due to pf rules
102+
}
90103
}
91104
}
92105
.nav-pf-secondary-nav {

dist/scripts/scripts.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -10507,18 +10507,18 @@ resource: e.canI.resource,
1050710507
group: e.canI.group
1050810508
}, e.canI.verb, l.projectName));
1050910509
}, l.itemClicked = function(e) {
10510-
if (e.href) return l.nav.showMobileNav = !1, void (l.sidebar.secondaryOpen = !1);
10511-
m(), e.isHover = !0, e.mobileSecondary = l.isMobile, l.sidebar.showMobileSecondary = l.isMobile, l.sidebar.secondaryOpen = !0;
10510+
if (m(), e.href) return l.nav.showMobileNav = !1, void (l.sidebar.secondaryOpen = !1);
10511+
e.isHover = !0, e.mobileSecondary = l.isMobile, l.sidebar.showMobileSecondary = l.isMobile, l.sidebar.secondaryOpen = !0;
1051210512
}, l.onMouseEnter = function(e) {
10513-
_.isEmpty(e.secondaryNavSections) || (e.mouseLeaveTimeout && (n.cancel(e.mouseLeaveTimeout), e.mouseLeaveTimeout = null), e.mouseEnterTimeout = n(function() {
10514-
e.isHover = !0, e.mouseEnterTimeout = null, l.sidebar.secondaryOpen = !0;
10515-
}, 300));
10513+
e.mouseLeaveTimeout && (n.cancel(e.mouseLeaveTimeout), e.mouseLeaveTimeout = null), e.mouseEnterTimeout = n(function() {
10514+
e.isHover = !0, e.mouseEnterTimeout = null, l.sidebar.secondaryOpen = !_.isEmpty(e.secondaryNavSections);
10515+
}, 200);
1051610516
}, l.onMouseLeave = function(e) {
10517-
_.isEmpty(e.secondaryNavSections) || (e.mouseEnterTimeout && (n.cancel(e.mouseEnterTimeout), e.mouseEnterTimeout = null), e.mouseLeaveTimeout = n(function() {
10517+
e.mouseEnterTimeout && (n.cancel(e.mouseEnterTimeout), e.mouseEnterTimeout = null), e.mouseLeaveTimeout = n(function() {
1051810518
e.isHover = !1, e.mouseLeaveTimeout = null, l.sidebar.secondaryOpen = _.some(l.navItems, function(e) {
1051910519
return e.isHover && !_.isEmpty(e.secondaryNavSections);
1052010520
});
10521-
}, 500));
10521+
}, 300);
1052210522
}, l.closeNav = function() {
1052310523
m(), l.nav.showMobileNav = !1, l.sidebar.secondaryOpen = !1;
1052410524
}, l.collapseMobileSecondary = function(e, t) {

dist/styles/main.css

+13-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)