UNPKG

872 BSCSSView Raw
1//
2// Copyright IBM Corp. 2016, 2018
3//
4// This source code is licensed under the Apache-2.0 license found in the
5// LICENSE file in the root directory of this source tree.
6//
7
8@mixin list {
9 display: flex;
10 flex-direction: column;
11 margin-top: 0;
12}
13
14@mixin link-style {
15 &:hover {
16 .#{$prefix}--left-nav__main-nav[data-left-nav-list='apps'] & {
17 color: $nav-06;
18
19 .#{$prefix}--left-nav-list__item-link--taxonomy-icon {
20 fill: $nav-06;
21 }
22 }
23
24 .#{$prefix}--left-nav__main-nav[data-left-nav-list='Services'] & {
25 color: $nav-04;
26
27 .#{$prefix}--left-nav-list__item-link--taxonomy-icon {
28 fill: $nav-04;
29 }
30 }
31
32 .#{$prefix}--left-nav__main-nav[data-left-nav-list='Infrastructure'] & {
33 color: $nav-08;
34
35 .#{$prefix}--left-nav-list__item-link--taxonomy-icon {
36 fill: $nav-08;
37 }
38 }
39 }
40}