Project

General

Profile

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

    
6

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

    
10
//
11
// New
12
//
13

    
14
@article-meta-link-color:                       @article-meta-color;
15
@article-meta-link-hover-color:                 @global-color;
16

    
17

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

    
21
.hook-article() {}
22

    
23

    
24
// Adjacent sibling
25
// ========================================================================
26

    
27
.hook-article-adjacent() {}
28

    
29

    
30
// Title
31
// ========================================================================
32

    
33
.hook-article-title() {}
34

    
35

    
36
// Meta
37
// ========================================================================
38

    
39
.hook-article-meta() {
40

    
41
    a { color: @article-meta-link-color; }
42

    
43
    a:hover {
44
        color: @article-meta-link-hover-color;
45
        text-decoration: none;
46
    }
47

    
48
}
49

    
50

    
51
// Miscellaneous
52
// ========================================================================
53

    
54
.hook-article-misc() {}
55

    
56

    
57
// Inverse
58
// ========================================================================
59

    
60
.hook-inverse-article-meta() {}
(6-6/59)