Project

General

Profile

1
//
2
// Component: Subnav
3
//
4
// ========================================================================
5

    
6

    
7
// Variables
8
// ========================================================================
9

    
10
//
11
// New
12
//
13

    
14
@subnav-item-font-size:                         @global-small-font-size;
15
@subnav-item-text-transform:                    uppercase;
16

    
17

    
18
// Component
19
// ========================================================================
20

    
21
.hook-subnav() {}
22

    
23
.hook-subnav-item() {
24
    font-size: @subnav-item-font-size;
25
    text-transform: @subnav-item-text-transform;
26
    -webkit-transition: 0.1s ease-in-out;
27
    transition: 0.1s ease-in-out;
28
    -webkit-transition-property: color, background-color;
29
    transition-property: color, background-color;
30
}
31

    
32
.hook-subnav-item-hover() {}
33

    
34
.hook-subnav-item-active() {}
35

    
36

    
37
// Divider modifier
38
// ========================================================================
39

    
40
.hook-subnav-divider() {}
41

    
42

    
43
// Pill modifier
44
// ========================================================================
45

    
46
.hook-subnav-pill-item() {}
47

    
48
.hook-subnav-pill-item-hover() {}
49

    
50
.hook-subnav-pill-item-onclick() {}
51

    
52
.hook-subnav-pill-item-active() {}
53

    
54

    
55
// Disabled
56
// ========================================================================
57

    
58
.hook-subnav-item-disabled() {}
59

    
60

    
61
// Miscellaneous
62
// ========================================================================
63

    
64
.hook-subnav-misc() {}
65

    
66

    
67
// Inverse
68
// ========================================================================
69

    
70
.hook-inverse-subnav-item() {}
71
.hook-inverse-subnav-item-hover() {}
72
.hook-inverse-subnav-item-active() {}
73

    
74
.hook-inverse-subnav-divider() {}
75

    
76
.hook-inverse-subnav-pill-item() {}
77
.hook-inverse-subnav-pill-item-hover() {}
78
.hook-inverse-subnav-pill-item-onclick() {}
79
.hook-inverse-subnav-pill-item-active() {}
80

    
81
.hook-inverse-subnav-item-disabled() {}
(49-49/59)