File: timeline.css

package info (click to toggle)
cockpit 239-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 67,268 kB
  • sloc: javascript: 245,474; ansic: 72,273; python: 23,634; xml: 6,155; sh: 2,919; makefile: 923; sed: 5
file content (70 lines) | stat: -rw-r--r-- 1,528 bytes parent folder | download
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
69
70
/* Timeline pattern used together with listing.scss */

div.timeline-ct {
    border-left: 6px solid var(--pf-global--palette--black-300);
    position: relative;
    margin-left: 25px;
    padding-left: 30px;
    min-height: 1px;
    padding-bottom: 15px;
}

div.timeline-ct .timeline-ct-point {
    position: absolute;
    left: -13.5px;
    font-size: 21px;
    text-align: center;
    width: 20px;
    height: 27px;
    display: block;
    line-height: 21px;
    background-color: white;
    padding: 3px 0px;
    color: var(--pf-global--palette--black-300);
}

div.timeline-ct .timeline-ct-point.active {
    color: var(--ct-color-alert-success-text);
}

div.timeline-ct .timeline-ct-md {
    font-size: 24px;
    width: 24px;
    height: 32px;
    line-height: 24px;
    padding: 4px 0px;
    left: -16px;
}

div.timeline-ct .timeline-ct-lg {
    font-size: 40px;
    width: 40px;
    height: 44px;
    line-height: 40px;
    left: -23.5px;
    padding: 2px 0px;
}

div.timeline-ct .fa-caret-up {
    font-size: 30px;
    line-height: 20px;
    height: 24px;
}

div.timeline-ct div.listing-ct-panel {
    margin-bottom: 0px;
}

div.timeline-ct.timeline-ct-end {
    min-height: 30px;
    padding-left: 36px;
    background-repeat: repeat-y;
    background-position: 0% 100%;
    background-size: 6px 5px;
    background-image: linear-gradient(var(--pf-global--palette--black-300) 33%, var(--pf-global--palette--black-200) 0%);
    border-left: none;
}

div.timeline-ct.timeline-ct-end .timeline-ct-md {
    left: -10px;
}