File: cockpit-components-install-dialog.css

package info (click to toggle)
cockpit 356-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 317,176 kB
  • sloc: javascript: 775,374; python: 41,133; ansic: 33,875; cpp: 11,141; sh: 3,534; makefile: 581; xml: 262
file content (44 lines) | stat: -rw-r--r-- 663 bytes parent folder | download | duplicates (8)
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
/* SPDX-License-Identifier: LGPL-2.1-or-later */
.package-list-ct {
  margin-block: 1em;
  margin-inline: 0;
  padding: 0;
  max-inline-size: 110rem;
  text-align: start;
  box-sizing: border-box;
}

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

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

@keyframes dialogScaleUpCt {
  0% {
    opacity: 0;
    max-block-size: 0;
  }

  25% {
    opacity: 0;
  }

  50% {
    max-block-size: 100vh;
  }

  100% {
    opacity: 1;
  }
}