changed create/edit font size
This commit is contained in:
parent
7d999a9f01
commit
18fb772cb1
1 changed files with 20 additions and 5 deletions
|
@ -4815,11 +4815,26 @@ class Settings(Page):
|
||||||
spacing: 10px;
|
spacing: 10px;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
margin-bottom: 10px;
|
margin-bottom: 10px;
|
||||||
|
font-size: 14px;
|
||||||
{self.font_style}
|
{self.font_style}
|
||||||
}}
|
}}
|
||||||
QCheckBox::indicator {{
|
QCheckBox::indicator {{
|
||||||
width: 18px;
|
width: 18px;
|
||||||
height: 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.setSpacing(20)
|
||||||
layout.setContentsMargins(20, 20, 20, 20)
|
layout.setContentsMargins(20, 20, 20, 20)
|
||||||
|
|
||||||
title = QLabel("REGISTRATION SETTINGS")
|
title = QLabel("Create/Edit SETTINGS")
|
||||||
title.setStyleSheet(f"color: #808080; font-size: 12px; font-weight: bold; {self.font_style}")
|
title.setStyleSheet(f"color: #808080; font-size: 14px; font-weight: bold; {self.font_style}")
|
||||||
layout.addWidget(title)
|
layout.addWidget(title)
|
||||||
|
|
||||||
registrations_group = QGroupBox("Registration Configuration")
|
registrations_group = QGroupBox("Create/Edit Configuration")
|
||||||
registrations_group.setStyleSheet(f"QGroupBox {{ color: white; padding: 15px; {self.font_style} }}")
|
registrations_group.setStyleSheet(f"QGroupBox {{ color: white; font-size: 13px; padding: 15px; {self.font_style} }}")
|
||||||
registrations_layout = QVBoxLayout(registrations_group)
|
registrations_layout = QVBoxLayout(registrations_group)
|
||||||
|
|
||||||
self.enable_auto_sync = QCheckBox("Enable auto-sync on Edit")
|
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_handle.setText("Profile Name:")
|
||||||
|
|
||||||
self.name = QLineEdit(self)
|
self.name = QLineEdit(self)
|
||||||
self.name.setPlaceholderText("Enter profile name")
|
self.name.setPlaceholderText("Enter name")
|
||||||
self.name.setGeometry(265, 70, 190, 30)
|
self.name.setGeometry(265, 70, 190, 30)
|
||||||
self.name.setStyleSheet("color: cyan; border: transparent;")
|
self.name.setStyleSheet("color: cyan; border: transparent;")
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue