From 18fb772cb1995fc4d8c565a2068cc390791cb4ce Mon Sep 17 00:00:00 2001 From: Your Name Date: Tue, 26 Aug 2025 01:03:50 +0100 Subject: [PATCH] changed create/edit font size --- gui/__main__.py | 25 ++++++++++++++++++++----- 1 file changed, 20 insertions(+), 5 deletions(-) diff --git a/gui/__main__.py b/gui/__main__.py index ccd2ac8..f64f237 100644 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -4815,11 +4815,26 @@ class Settings(Page): spacing: 10px; margin-top: 10px; margin-bottom: 10px; + font-size: 14px; {self.font_style} }} QCheckBox::indicator {{ width: 18px; height: 18px; + border: 2px solid #666666; + border-radius: 3px; + background-color: #2a2a2a; + }} + QCheckBox::indicator:checked {{ + background-color: #4CAF50; + border: 2px solid #4CAF50; + }} + QCheckBox::indicator:unchecked {{ + background-color: #2a2a2a; + border: 2px solid #666666; + }} + QCheckBox::indicator:hover {{ + border: 2px solid #888888; }} """ @@ -5315,12 +5330,12 @@ class Settings(Page): layout.setSpacing(20) layout.setContentsMargins(20, 20, 20, 20) - title = QLabel("REGISTRATION SETTINGS") - title.setStyleSheet(f"color: #808080; font-size: 12px; font-weight: bold; {self.font_style}") + title = QLabel("Create/Edit SETTINGS") + title.setStyleSheet(f"color: #808080; font-size: 14px; font-weight: bold; {self.font_style}") layout.addWidget(title) - registrations_group = QGroupBox("Registration Configuration") - registrations_group.setStyleSheet(f"QGroupBox {{ color: white; padding: 15px; {self.font_style} }}") + registrations_group = QGroupBox("Create/Edit Configuration") + registrations_group.setStyleSheet(f"QGroupBox {{ color: white; font-size: 13px; padding: 15px; {self.font_style} }}") registrations_layout = QVBoxLayout(registrations_group) self.enable_auto_sync = QCheckBox("Enable auto-sync on Edit") @@ -6654,7 +6669,7 @@ class FastRegistrationPage(Page): self.name_handle.setText("Profile Name:") self.name = QLineEdit(self) - self.name.setPlaceholderText("Enter profile name") + self.name.setPlaceholderText("Enter name") self.name.setGeometry(265, 70, 190, 30) self.name.setStyleSheet("color: cyan; border: transparent;")