File: fixed_tabs.css

package info (click to toggle)
doxygen 1.9.8%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 24,040 kB
  • sloc: cpp: 215,370; lex: 42,621; python: 32,388; ansic: 26,705; xml: 15,390; javascript: 8,352; yacc: 581; f90: 455; php: 441; perl: 378; makefile: 199; sh: 26; objc: 14; cs: 5; java: 1
file content (68 lines) | stat: -rw-r--r-- 1,426 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
.tabs, .tabs2, .tabs3 {
    background-image: var(--nav-gradient-image);
    width: 100%;
    z-index: 101;
    font-size: var(--nav-font-size-level1);
    font-family: var(--font-family-nav);
    display: table;
}

.tabs2 {
    font-size: var(--nav-font-size-level2);
}
.tabs3 {
    font-size: var(--nav-font-size-level3);
}

.tablist {
    margin: 0;
    padding: 0;
    display: block;
}

.tablist li {
    float: left;
    display: table-cell;
    background-image: var(--nav-gradient-image);
    line-height: 36px;
    list-style: none;
}

.tablist a {
    display: block;
    padding: 0 20px;
    font-weight: bold;
    background-image:var(--nav-separator-image);
    background-repeat:no-repeat;
    background-position:right;
    color: var(--nav-text-normal-color);
    text-shadow: var(--nav-text-normal-shadow);
    text-decoration: none;
    outline: none;
}

.tablist a:focus {
    outline: auto;
    z-index: 10;
    position: relative;
}

.tabs3 .tablist a {
    padding: 0 10px;
}

.tablist a:hover {
    background-image: var(--nav-gradient-hover-image);
    background-repeat:repeat-x;
    color: var(--nav-text-hover-color);
    text-shadow: var(--nav-text-hover-shadow);
    text-decoration: none;
}

.tablist li.current a {
    background-image: var(--nav-gradient-active-image);
    background-repeat:repeat-x;
    color: var(--nav-text-active-color);
    text-shadow: var(--nav-text-active-shadow);
}