Welcome to mirror list, hosted at ThFree Co, Russian Federation.

shortcuts.css « options « keepassxc-browser - github.com/keepassxreboot/keepassxc-browser.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d0420011f2f5484d8a6e9b3e1788fa6142d751a6 (plain)
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 {
    background: var(--kpxc-input-background-color) !important;
    color: var(--kpxc-text-color);
    font-size: .875rem;
    padding-top: 20px;
}

input {
    background-color: var(--kpxc-input-background-color);
    border: var(--kpxc-input-border);
    border-color: var(--kpxc-input-border-color);
    color: var(--kpxc-text-color);
}

input:active {
    border-color: var(--kpxc-input-active-border-color);
}

.conf-container {
    margin: 0 auto;
    width: 680px;
    max-height: 315px;
    background-color: var(--kpxc-background-color);
    border: var(--kpxc-container-border);
    border-radius: 4px;
    box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
    color: var(--kpxc-text-color);
}

.conf-container .conf-title {
    margin: 10px 0 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.conf-title #icon {
    width: 3em;
}

.conf-container > hr {
    margin: 10px 0;
}

.conf-content {
    margin: 10px 0 20px 40px;
}

.conf-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.conf-row div:first-child {
    width: 200px;
    margin: 10px;
}

.conf-row button {
    margin-left: 10px;
}

.alert {
    box-shadow: 0 4px 6px 0 hsla(0, 0%, 0%, 0.2);
    margin: 20px auto;
    width: 680px;
}

@media (prefers-color-scheme: dark) {
    .bg-danger {
        color: #000;
    }
}