File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,16 @@ div#nav-spacer.nav-open {
12
12
text-decoration : none;
13
13
}
14
14
15
- header nav ul li a .active {
15
+ header nav ul li ul li a : hover , header nav ul li ul li a .active : hover {
16
16
text-decoration : none;
17
+ color : black;
17
18
}
19
+
20
+ header nav ul li a : hover , header nav ul li a .active : hover {
21
+ text-decoration : none;
22
+ color : black;
23
+ }
24
+
18
25
@media screen and (max-width : 875px ),
19
26
(max-device-width : 767px ) {
20
27
header {
Original file line number Diff line number Diff line change 72
72
< ul class ="products ">
73
73
< li class ="mobile "> Products</ li >
74
74
< li > < a href ="https://opentrons.com/robots "> Robots</ a > </ li >
75
+ < li > < a href ="https://opentrons.com/#/modules "> Modules</ a > </ li >
75
76
< li > < a href ="https://opentrons.com/ot-app "> OT App</ a > </ li >
76
77
< li > < a href ="https://opentrons.com/protocol-library/ "> Protocol Library</ a > </ li >
77
78
< li > </ li >
78
- < li > </ li >
79
79
</ ul >
80
80
< ul class ="company ">
81
81
< li class ="mobile "> Company</ li >
106
106
$ ( '#dropdown' ) . slideToggle ( 500 ) ;
107
107
} ) ;
108
108
109
+ $ ( '#dropdown ul' ) . mouseenter ( function ( event ) {
110
+ $ ( '*' ) . removeClass ( 'active' ) ;
111
+ $ ( this ) . addClass ( 'active' ) ;
112
+ } ) ;
113
+
114
+ $ ( '#dropdown ul' ) . mouseleave ( function ( event ) {
115
+ $ ( '*' ) . removeClass ( 'active' ) ;
116
+ } ) ;
117
+
109
118
$ ( '.menu-toggle' ) . mouseenter ( function ( event ) {
110
119
event . preventDefault ( ) ;
111
120
var target = $ ( this ) . attr ( 'data-dropdown' ) ;
@@ -170,6 +179,7 @@ <h1 class="title">Get In Touch</h1>
170
179
< span class ="link-title "> PRODUCTS</ span >
171
180
< ul class ="products-list ">
172
181
< li > < a href ="https://opentrons.com/robots "> Robots</ a > </ li >
182
+ < li > < a href ="https://opentrons.com/#/modules "> Modules</ a > </ li >
173
183
< li > < a href ="https://opentrons.com/ot-app "> OT App</ a > </ li >
174
184
< li > < a href ="https://opentrons.com/protocol-library/ "> Protocol Library</ a > </ li >
175
185
</ ul >
You can’t perform that action at this time.
0 commit comments