mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
Merge pull request #6446 from mxmou/teacher-registration-label-font-weight
Use font weight bold consistently for teacher registration form labels
This commit is contained in:
commit
1dc4881080
3 changed files with 19 additions and 3 deletions
|
@ -11,7 +11,7 @@ require('./radio-group.scss');
|
||||||
|
|
||||||
const RadioGroup = props => (
|
const RadioGroup = props => (
|
||||||
<FRCRadioGroup
|
<FRCRadioGroup
|
||||||
className={classNames('radio-group', props.className)}
|
rowClassName={classNames('radio-group', props.className)}
|
||||||
{... props}
|
{... props}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
|
|
@ -792,7 +792,7 @@ class OrganizationStep extends React.Component {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<div className="organization-type">
|
<div className="organization-type">
|
||||||
<b><intl.FormattedMessage id="teacherRegistration.orgType" /></b>
|
<b className="row-label"><intl.FormattedMessage id="teacherRegistration.orgType" /></b>
|
||||||
<p className="help-text">
|
<p className="help-text">
|
||||||
<intl.FormattedMessage id="teacherRegistration.checkAll" />
|
<intl.FormattedMessage id="teacherRegistration.checkAll" />
|
||||||
</p>
|
</p>
|
||||||
|
@ -833,7 +833,7 @@ class OrganizationStep extends React.Component {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className="url-input">
|
<div className="url-input">
|
||||||
<b><intl.FormattedMessage id="general.website" /></b>
|
<b className="row-label"><intl.FormattedMessage id="general.website" /></b>
|
||||||
<p className="help-text">
|
<p className="help-text">
|
||||||
<intl.FormattedMessage id="teacherRegistration.notRequired" />
|
<intl.FormattedMessage id="teacherRegistration.notRequired" />
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -26,6 +26,18 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
label {
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checkbox {
|
||||||
|
label {
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.help-text {
|
.help-text {
|
||||||
margin: .25rem 0;
|
margin: .25rem 0;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -66,6 +78,10 @@
|
||||||
&.demographics-step {
|
&.demographics-step {
|
||||||
.radio {
|
.radio {
|
||||||
margin: 1.5rem 1.5rem 0 0;
|
margin: 1.5rem 1.5rem 0 0;
|
||||||
|
|
||||||
|
label {
|
||||||
|
font-weight: 300;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="radio"] {
|
input[type="radio"] {
|
||||||
|
|
Loading…
Reference in a new issue