-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2b58595
commit 073854d
Showing
21 changed files
with
370 additions
and
219 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,10 @@ a { | |
color: #a94442; | ||
} | ||
} | ||
|
||
&.disabled { | ||
cursor: not-allowed; | ||
} | ||
} | ||
|
||
code { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,92 @@ | ||
.flip { | ||
transform: rotate(180deg) scaleX(-1); | ||
} | ||
|
||
.w-100 { | ||
width: 100%; | ||
} | ||
.mt-0 { | ||
margin-top: 0; | ||
} | ||
.mt-5 { | ||
margin-top: 5px; | ||
} | ||
.mt-10 { | ||
margin-top: 10px; | ||
} | ||
.mt-20 { | ||
margin-top: 20px; | ||
} | ||
.mr-0 { | ||
margin-right: 0; | ||
} | ||
.mr-5 { | ||
margin-right: 5px; | ||
} | ||
.mr-10 { | ||
margin-right: 10px; | ||
} | ||
.mr-20 { | ||
margin-right: 20px; | ||
} | ||
.mb-0 { | ||
margin-bottom: 0; | ||
} | ||
.mb-5 { | ||
margin-bottom: 5px; | ||
} | ||
.mb-10 { | ||
margin-bottom: 10px; | ||
} | ||
.mb-20 { | ||
margin-bottom: 20px; | ||
} | ||
.ml-0 { | ||
margin-left: 0; | ||
} | ||
.ml-5 { | ||
margin-left: 5px; | ||
} | ||
.ml-10 { | ||
margin-left: 10px; | ||
} | ||
.ml-20 { | ||
margin-left: 20px; | ||
} | ||
|
||
.pt-0 { | ||
padding-top: 0; | ||
} | ||
.pt-10 { | ||
padding-top: 10px; | ||
} | ||
.pt-20 { | ||
padding-top: 20px; | ||
} | ||
.pr-0 { | ||
padding-right: 0; | ||
} | ||
.pr-10 { | ||
padding-right: 10px; | ||
} | ||
.pr-20 { | ||
padding-right: 20px; | ||
} | ||
.pb-0 { | ||
padding-bottom: 0; | ||
} | ||
.pb-10 { | ||
padding-bottom: 10px; | ||
} | ||
.pb-20 { | ||
padding-bottom: 20px; | ||
} | ||
.pl-0 { | ||
padding-left: 0; | ||
} | ||
.pl-10 { | ||
padding-left: 10px; | ||
} | ||
.pl-20 { | ||
padding-left: 20px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Generated by Django 4.2.5 on 2023-10-04 07:15 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('options', '0032_alter_option_additional_input'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='option', | ||
name='help_lang1', | ||
field=models.TextField(blank=True, help_text='The help text for this option in the primary language.', null=True, verbose_name='Help (primary)'), | ||
), | ||
migrations.AddField( | ||
model_name='option', | ||
name='help_lang2', | ||
field=models.TextField(blank=True, help_text='The help text for this option in the secondary language.', null=True, verbose_name='Help (secondary)'), | ||
), | ||
migrations.AddField( | ||
model_name='option', | ||
name='help_lang3', | ||
field=models.TextField(blank=True, help_text='The help text for this option in the tertiary language.', null=True, verbose_name='Help (tertiary)'), | ||
), | ||
migrations.AddField( | ||
model_name='option', | ||
name='help_lang4', | ||
field=models.TextField(blank=True, help_text='The help text for this option in the quaternary language.', null=True, verbose_name='Help (quaternary)'), | ||
), | ||
migrations.AddField( | ||
model_name='option', | ||
name='help_lang5', | ||
field=models.TextField(blank=True, help_text='The help text for this option in the quinary language.', null=True, verbose_name='Help (quinary)'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ class Meta: | |
) | ||
trans_fields = ( | ||
'text', | ||
'help' | ||
) | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,8 @@ class Meta: | |
fields = ( | ||
'id', | ||
'text', | ||
'help', | ||
'text_and_help', | ||
'additional_input' | ||
) | ||
|
||
|
Oops, something went wrong.