File: action_popup.css

package info (click to toggle)
plasma-browser-integration 6.3.4-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 2,044 kB
  • sloc: cpp: 2,989; javascript: 2,444; xml: 142; python: 77; sh: 46; makefile: 16
file content (74 lines) | stat: -rw-r--r-- 1,319 bytes parent folder | download | duplicates (4)
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
71
72
73
74
body {
    width: 24em;
    /* prevent scroll bars*/
    overflow: hidden;
    margin: 0;
}

.hidden {
    display: none !important;
}

header {
    background: #1d99f3;
    padding: 2px;
    color: #fff;
    text-align: center;
}

section {
    margin: 0 0.5em;
}

section > header {
    background: #F0F0F0;
    color: #757777;
    margin: 0 -1em -0.5em -1em;
}

.message {
    padding: 10px;
}
.message.with-icon::before {
    content: '';
    height: 48px;
    display: block;
    background: center no-repeat;
}
.message.with-icon.general::before {
    background-image: url('icons/plasma.svg');
}
.message.with-icon.error::before {
    background-image: url('icons/sad-face.svg');
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #232629;
        color: #eff0f1;
    }
    .message.with-icon.general::before, .message.with-icon.error::before {
        filter: invert(1);
    }
}

/* Media controls blacklist */
.mpris-blacklist-info {
    padding: 0.5em 0;
}
.mpris-blacklist-info p {
    padding: 0 0.5em;
}
.mpris-blacklist-info ul {
    display: block;
    padding: 0 0.5em;
}
.mpris-blacklist-info ul > li {
    display: block;
    margin-bottom: 0.5em;
}
.mpris-blacklist-info ul > li input[type=checkbox] {
    position: relative;
    vertical-align: middle;
    bottom: 1px;
}