almost finished with preferences styling
This commit is contained in:
parent
ca80308bc2
commit
c99c867021
2 changed files with 60 additions and 53 deletions
|
@ -175,7 +175,7 @@ class Preferences extends React.Component {
|
||||||
value="Spaces"
|
value="Spaces"
|
||||||
checked={!this.props.isTabIndent}
|
checked={!this.props.isTabIndent}
|
||||||
/>
|
/>
|
||||||
<label htmlFor="indentation-space" className="preference__option">Spaces</label>
|
<label htmlFor="indentation-space" className="preference__option preference__whitespace-button">Spaces</label>
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
onChange={this.props.indentWithTab}
|
onChange={this.props.indentWithTab}
|
||||||
|
@ -186,7 +186,7 @@ class Preferences extends React.Component {
|
||||||
value="Tabs"
|
value="Tabs"
|
||||||
checked={this.props.isTabIndent}
|
checked={this.props.isTabIndent}
|
||||||
/>
|
/>
|
||||||
<label htmlFor="indentation-tab" className="preference__option">Tabs</label>
|
<label htmlFor="indentation-tab" className="preference__option preference__whitespace-button">Tabs</label>
|
||||||
</div>
|
</div>
|
||||||
<div className="preference">
|
<div className="preference">
|
||||||
<h4 className="preference__title">Autosave</h4>
|
<h4 className="preference__title">Autosave</h4>
|
||||||
|
@ -245,45 +245,6 @@ class Preferences extends React.Component {
|
||||||
</div>
|
</div>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
<TabPanel>
|
<TabPanel>
|
||||||
<div className="preference">
|
|
||||||
<h4 className="preference__title">Accessible text-based canvas</h4>
|
|
||||||
<h6 className="preference__subtitle">Used with screen reader</h6>
|
|
||||||
<div className="preference__options">
|
|
||||||
<input
|
|
||||||
type="radio"
|
|
||||||
onChange={(event) => {
|
|
||||||
this.props.setTextOutput(event.target.checked);
|
|
||||||
}}
|
|
||||||
aria-label="text output on"
|
|
||||||
name="text output"
|
|
||||||
id="text-output-on"
|
|
||||||
className="preference__radio-button"
|
|
||||||
value="On"
|
|
||||||
checked={(this.props.textOutput)}
|
|
||||||
/>
|
|
||||||
<label htmlFor="text-output-on" className="preference__option preference__canvas">On</label>
|
|
||||||
<input
|
|
||||||
type="radio"
|
|
||||||
onChange={(event) => {
|
|
||||||
this.props.setGridOutput(event.target.checked);
|
|
||||||
}}
|
|
||||||
aria-label="table output on"
|
|
||||||
name="table output"
|
|
||||||
id="table-output-on"
|
|
||||||
className="preference__radio-button"
|
|
||||||
value="On"
|
|
||||||
checked={(this.props.gridOutput)}
|
|
||||||
/>
|
|
||||||
<label htmlFor="table-output-on" className="preference__option preference__canvas">Off</label>
|
|
||||||
<button
|
|
||||||
className="preference__preview-button"
|
|
||||||
onClick={() => beep.play()}
|
|
||||||
aria-label="preview sound"
|
|
||||||
>
|
|
||||||
Preview sound
|
|
||||||
</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div className="preference">
|
<div className="preference">
|
||||||
<h4 className="preference__title">Lint warning sound</h4>
|
<h4 className="preference__title">Lint warning sound</h4>
|
||||||
<div className="preference__options">
|
<div className="preference__options">
|
||||||
|
@ -309,6 +270,56 @@ class Preferences extends React.Component {
|
||||||
checked={!this.props.lintWarning}
|
checked={!this.props.lintWarning}
|
||||||
/>
|
/>
|
||||||
<label htmlFor="lint-warning-off" className="preference__option">Off</label>
|
<label htmlFor="lint-warning-off" className="preference__option">Off</label>
|
||||||
|
<button
|
||||||
|
className="preference__preview-button"
|
||||||
|
onClick={() => beep.play()}
|
||||||
|
aria-label="preview sound"
|
||||||
|
>
|
||||||
|
Preview sound
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="preference">
|
||||||
|
<h4 className="preference__title">Accessible text-based canvas</h4>
|
||||||
|
<h6 className="preference__subtitle">Used with screen reader</h6>
|
||||||
|
|
||||||
|
<div className="preference__options">
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
onChange={(event) => {
|
||||||
|
this.props.setTextOutput(event.target.checked);
|
||||||
|
}}
|
||||||
|
aria-label="text output on"
|
||||||
|
name="text output"
|
||||||
|
id="text-output-on"
|
||||||
|
value="On"
|
||||||
|
checked={(this.props.textOutput)}
|
||||||
|
/>
|
||||||
|
<label htmlFor="text-output-on" className="preference__option preference__canvas">Plain-text</label>
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
onChange={(event) => {
|
||||||
|
this.props.setGridOutput(event.target.checked);
|
||||||
|
}}
|
||||||
|
aria-label="table output on"
|
||||||
|
name="table output"
|
||||||
|
id="table-output-on"
|
||||||
|
value="On"
|
||||||
|
checked={(this.props.gridOutput)}
|
||||||
|
/>
|
||||||
|
<label htmlFor="table-output-on" className="preference__option preference__canvas">Table-text</label>
|
||||||
|
<input
|
||||||
|
type="checkbox"
|
||||||
|
onChange={(event) => {
|
||||||
|
this.props.setSoundOutput(event.target.checked);
|
||||||
|
}}
|
||||||
|
aria-label="sound output on"
|
||||||
|
name="sound output"
|
||||||
|
id="sound-output-on"
|
||||||
|
value="On"
|
||||||
|
checked={(this.props.soundOutput)}
|
||||||
|
/>
|
||||||
|
<label htmlFor="sound-output-on" className="preference__option preference__canvas">Sound</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</TabPanel>
|
</TabPanel>
|
||||||
|
@ -330,13 +341,12 @@ Preferences.propTypes = {
|
||||||
setAutosave: PropTypes.func.isRequired,
|
setAutosave: PropTypes.func.isRequired,
|
||||||
textOutput: PropTypes.bool.isRequired,
|
textOutput: PropTypes.bool.isRequired,
|
||||||
gridOutput: PropTypes.bool.isRequired,
|
gridOutput: PropTypes.bool.isRequired,
|
||||||
// soundOutput: PropTypes.bool.isRequired,
|
soundOutput: PropTypes.bool.isRequired,
|
||||||
setTextOutput: PropTypes.func.isRequired,
|
setTextOutput: PropTypes.func.isRequired,
|
||||||
setGridOutput: PropTypes.func.isRequired,
|
setGridOutput: PropTypes.func.isRequired,
|
||||||
// setSoundOutput: PropTypes.func.isRequired,
|
setSoundOutput: PropTypes.func.isRequired,
|
||||||
lintWarning: PropTypes.bool.isRequired,
|
lintWarning: PropTypes.bool.isRequired,
|
||||||
setLintWarning: PropTypes.func.isRequired,
|
setLintWarning: PropTypes.func.isRequired,
|
||||||
// openTab: PropTypes.func.isRequired,
|
|
||||||
theme: PropTypes.string.isRequired,
|
theme: PropTypes.string.isRequired,
|
||||||
serveSecure: PropTypes.bool.isRequired,
|
serveSecure: PropTypes.bool.isRequired,
|
||||||
setServeSecure: PropTypes.func.isRequired,
|
setServeSecure: PropTypes.func.isRequired,
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
.preferences {
|
.preferences {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-width: #{640 / $base-font-size}rem;
|
width: #{640 / $base-font-size}rem;
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
min-height: #{460 / $base-font-size}rem;
|
min-height: #{460 / $base-font-size}rem;
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
|
@ -166,7 +166,6 @@
|
||||||
}
|
}
|
||||||
font-size: #{12 / $base-font-size}rem;
|
font-size: #{12 / $base-font-size}rem;
|
||||||
height: #{20 / $base-font-size}rem;
|
height: #{20 / $base-font-size}rem;
|
||||||
font-family: Montserrat;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0 #{5 /$base-font-size}rem;
|
padding: 0 #{5 /$base-font-size}rem;
|
||||||
|
@ -180,7 +179,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.preference__add__resource {
|
.preference__add__resource {
|
||||||
font-family: Montserrat;
|
|
||||||
font-size: #{14 / $base-font-size}rem;
|
font-size: #{14 / $base-font-size}rem;
|
||||||
line-height: 1.43;
|
line-height: 1.43;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
|
@ -205,8 +203,6 @@
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
margin-top: #{10 / $base-font-size}rem;
|
|
||||||
margin-left: #{5 / $base-font-size}rem;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.preference__option:last-child {
|
.preference__option:last-child {
|
||||||
|
@ -220,12 +216,16 @@
|
||||||
color: getThemifyVariable('button-background-hover-color');
|
color: getThemifyVariable('button-background-hover-color');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
margin-top: #{7 / $base-font-size}rem;
|
|
||||||
margin-left: #{30 / $base-font-size}rem;
|
margin-left: #{30 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.preference__option.preference__whitespace-button {
|
||||||
|
padding-top: #{8 / $base-font-size}rem;
|
||||||
|
}
|
||||||
|
|
||||||
.preference__options {
|
.preference__options {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.preference__radio-button:checked + .preference__option {
|
.preference__radio-button:checked + .preference__option {
|
||||||
|
@ -260,6 +260,3 @@
|
||||||
text-align: left;
|
text-align: left;
|
||||||
font-size: #{12 / $base-font-size}rem;
|
font-size: #{12 / $base-font-size}rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue