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

basestyle.qss « base « styles « gui « src - github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff5d915bbefcd2c925239e4f9d2c40391cbfe327 (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
QPushButton:default {
    background: palette(highlight);
    color: palette(highlighted-text);
}

/* Note: default button hover is defined in the respective theme style */
QPushButton:!default:hover {
    background: palette(mid);
}

QPushButton:checked {
    background: palette(highlight);
    color: palette(highlighted-text);
}

QSpinBox {
    min-width: 90px;
}

QDialogButtonBox QPushButton {
    min-width: 55px;
}

QCheckBox, QRadioButton {
    spacing: 10px;
}

DatabaseWidget, GroupView {
    background-color: palette(window);
    border: none;
}

EntryPreviewWidget QLineEdit, EntryPreviewWidget QTextEdit {
    background-color: palette(window);
    border: none;
}

DatabaseOpenWidget #loginFrame {
    border: 2px groove palette(mid);
    background: palette(light);
}

QGroupBox {
    margin-top: 1.4em;
    margin-bottom: 1.4em;
    font-weight: bold;
}

QGroupBox::title {
    margin-top: -3.35em;
    margin-left: -.4em;
    subcontrol-origin: padding;
}

QToolTip {
    border: none;
    padding: 3px;
}

DatabaseWidget #SearchBanner, DatabaseWidget #KeeShareBanner {
    font-weight: bold;
    background-color: palette(highlight);
    color: palette(highlighted-text);
    border: 1px solid palette(dark);
    padding: 2px;
}

QPlainTextEdit, QTextEdit {
    background-color: palette(base);
    padding-left: 4px;
}