mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
Add separate styling for template editor QGroupBoxes (#2337)
* Add separate styling for template editor GroupBoxes * Fix title alignment and padding
This commit is contained in:
parent
8730092190
commit
e32b3a7fe5
3 changed files with 12 additions and 2 deletions
|
@ -247,7 +247,7 @@ class CardLayout(QDialog):
|
||||||
tform.front_button.setText(tr.card_templates_front_template())
|
tform.front_button.setText(tr.card_templates_front_template())
|
||||||
tform.back_button.setText(tr.card_templates_back_template())
|
tform.back_button.setText(tr.card_templates_back_template())
|
||||||
tform.style_button.setText(tr.card_templates_template_styling())
|
tform.style_button.setText(tr.card_templates_template_styling())
|
||||||
tform.groupBox.setTitle(tr.card_templates_template_box())
|
tform.template_box.setTitle(tr.card_templates_template_box())
|
||||||
|
|
||||||
cnt = self.mw.col.models.use_count(self.model)
|
cnt = self.mw.col.models.use_count(self.model)
|
||||||
tform.changes_affect_label.setText(
|
tform.changes_affect_label.setText(
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QGroupBox" name="groupBox">
|
<widget class="QGroupBox" name="template_box">
|
||||||
<property name="title">
|
<property name="title">
|
||||||
<string notr="true">GroupBox</string>
|
<string notr="true">GroupBox</string>
|
||||||
</property>
|
</property>
|
||||||
|
|
|
@ -88,11 +88,21 @@ class CustomStyles:
|
||||||
border-radius: {tm.var(props.BORDER_RADIUS)};
|
border-radius: {tm.var(props.BORDER_RADIUS)};
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}}
|
}}
|
||||||
|
QGroupBox#preview_box,
|
||||||
|
QGroupBox#template_box {{
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
}}
|
||||||
QGroupBox::title {{
|
QGroupBox::title {{
|
||||||
subcontrol-origin: margin;
|
subcontrol-origin: margin;
|
||||||
subcontrol-position: top left;
|
subcontrol-position: top left;
|
||||||
margin: 0 2px;
|
margin: 0 2px;
|
||||||
left: 15px;
|
left: 15px;
|
||||||
|
}}
|
||||||
|
QGroupBox#preview_box::title,
|
||||||
|
QGroupBox#template_box::title {{
|
||||||
|
margin-top: 5px;
|
||||||
|
left: 5px;
|
||||||
}}
|
}}
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue