123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- QDialog {
- border: 1px solid rgb(58, 58, 58);
- background-color: rgb(43, 43, 43);
- }
- #buttonGroup {
- background-color: rgb(32, 32, 32);
- border-top: 1px solid rgb(29, 29, 29);
- border-left: none;
- border-right: none;
- border-bottom: none;
- }
- MessageBox #buttonGroup {
- border-bottom-left-radius: 8px;
- border-bottom-right-radius: 8px;
- }
- #centerWidget {
- border: 1px solid rgb(58, 58, 58);
- border-radius: 10px;
- background-color: rgb(43, 43, 43);
- }
- QLabel {
- background-color: transparent;
- color: white;
- border: none;
- }
- QLabel#titleLabel {
- font: 20px 'Segoe UI', 'Microsoft YaHei';
- padding: 0;
- }
- #contentLabel {
- padding: 0;
- font: 14px 'Segoe UI', 'Microsoft YaHei';
- border: none;
- }
- QLabel#windowTitleLabel {
- font: 12px 'Segoe UI', 'Microsoft YaHei';
- padding: 6px 6px;
- background-color: rgb(32, 32, 32);
- }
- #cancelButton {
- background: rgb(45, 45, 45);
- border: 1px solid rgb(48, 48, 48);
- border-top: 1px solid rgb(53, 53, 53);
- border-radius: 5px;
- color: white;
- font: 14px 'Segoe UI', 'Microsoft YaHei';
- padding: 5px 9px 6px 9px;
- }
- #cancelButton:hover {
- background: rgb(50, 50, 50);
- }
- #cancelButton:pressed {
- color: rgba(255, 255, 255, 0.63);
- background: rgb(39, 39, 39);
- border: 1px solid rgb(48, 48, 48);
- }
- #cancelButton:disabled {
- color: rgba(255, 255, 255, 0.63);
- background: rgb(59, 59, 59);
- border: 1px solid rgb(80, 80, 80);
- }
|