File: cockpit-components-install-dialog.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 (38 lines) | stat: -rw-r--r-- 604 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
.package-list-ct {
    margin: 1em 0;
    padding: 0;
    max-width: 110rem;
    text-align: left;
    box-sizing: border-box;
}

.package-list-ct li {
    text-align: left;
    box-sizing: border-box;
    width: 22rem;
    padding: 0 1ex;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.scale-up-ct {
    animation: dialogScaleUpCt 1s;
}

@keyframes dialogScaleUpCt {
    0% {
        opacity: 0;
        max-height: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        max-height: 100vh;
    }
    100% {
        opacity: 1;
    }
}