mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
* Fixes #5321 - Text alignment in the general tab of the entry and group edit views is fixed * Fixes #5300 - Errant scrollbar in the general tab is fixed * Fixes #4852 - Tabbing into notes field works as expected. To tab out, currently only Shift+Tab works.
71 lines
1.3 KiB
Text
71 lines
1.3 KiB
Text
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;
|
|
}
|