p5.js-web-editor/client/styles/components/_preferences.scss

154 lines
3.4 KiB
SCSS
Raw Normal View History

2016-06-17 19:37:29 +02:00
.preferences {
@extend %modal;
2016-06-21 05:04:41 +02:00
position: absolute;
top: #{51 / $base-font-size}rem;
right: #{29 / $base-font-size}rem;
width: #{288 / $base-font-size}rem;
2016-06-17 19:37:29 +02:00
display: none;
padding: #{14 / $base-font-size}rem #{20 / $base-font-size}rem #{2 / $base-font-size}rem #{20 / $base-font-size}rem ;
2016-06-17 20:31:33 +02:00
&--selected {
display: flex;
2016-06-20 20:58:15 +02:00
flex-direction: column;
2016-06-17 20:31:33 +02:00
}
@include themify() {
background-color: getThemifyVariable('editor-gutter-color');
}
outline: none;
2016-06-17 19:37:29 +02:00
}
2016-06-17 20:31:33 +02:00
.preferences__exit-button {
@include icon();
2016-09-13 23:05:42 +02:00
padding-top: #{5 / $base-font-size}rem;
margin-right: #{-6 / $base-font-size}rem;
2016-06-17 19:37:29 +02:00
}
2016-06-20 18:45:15 +02:00
.preference__minus-button,
.preference__plus-button {
@include themify() {
@extend %preferences-button;
width: #{32 / $base-font-size}rem;
height: #{32 / $base-font-size}rem;
margin-left: #{6 / $base-font-size}rem;
line-height: #{40 / $base-font-size}rem;
& svg {
width: #{10 / $base-font-size}rem;
}
}
2016-06-20 20:58:15 +02:00
}
.preferences__heading {
display: flex;
2016-06-21 05:04:41 +02:00
flex-direction: row;
justify-content: space-between;
margin-bottom: #{20 / $base-font-size}rem;
@include themify() {
color: getThemifyVariable('heading-text-color');
}
2016-06-20 18:45:15 +02:00
}
2016-06-20 20:58:15 +02:00
.preference {
2016-06-21 05:04:41 +02:00
display: flex;
flex-wrap: wrap;
2016-08-12 20:19:23 +02:00
padding-bottom: #{12 / $base-font-size}rem;
2016-07-12 04:53:27 +02:00
& + & {
2016-09-14 19:03:51 +02:00
@include themify() {
border-top: 1px dashed getThemifyVariable('button-border-color');
2016-09-14 19:03:51 +02:00
}
2016-07-12 04:53:27 +02:00
}
2016-06-20 20:58:15 +02:00
}
2016-06-20 21:23:42 +02:00
.preference__title {
2016-06-21 05:04:41 +02:00
width: 100%;
font-size: #{16 / $base-font-size}rem;
margin-top: #{13 / $base-font-size}rem;
margin-bottom: #{7 / $base-font-size}rem;
@include themify() {
color: getThemifyVariable('heading-text-color');
}
2016-06-20 20:58:15 +02:00
}
2016-08-19 21:51:41 +02:00
.preference__subtitle {
@include themify() {
color: getThemifyVariable('inactive-text-color');
}
2016-08-19 21:51:41 +02:00
width: 100%;
margin-bottom: #{10 / $base-font-size}rem;
margin-top: 0;
}
2016-06-20 20:58:15 +02:00
.preference__value {
2016-09-14 19:03:51 +02:00
@include themify() {
border: #{1 / $base-font-size}rem solid getThemifyVariable('button-border-color');
2016-09-14 19:03:51 +02:00
background-color: getThemifyVariable('button-background-color');
color: getThemifyVariable('input-text-color');
2016-09-14 19:03:51 +02:00
}
2016-06-21 05:04:41 +02:00
text-align: center;
2016-07-12 01:14:45 +02:00
border-radius: 0%;
outline: none;
width: #{44 / $base-font-size}rem;
height: #{40 / $base-font-size}rem;
margin: 0 #{26 / $base-font-size}rem;
2016-07-12 01:14:45 +02:00
padding: 0;
font-size: #{16 / $base-font-size}rem;
font-family: Inconsolata;
2016-06-20 20:58:15 +02:00
}
2016-07-11 04:52:48 +02:00
.preference__label {
@include themify() {
color: getThemifyVariable('inactive-text-color');
&:hover {
color: getThemifyVariable('primary-text-color');
}
}
margin: #{-15 / $base-font-size}rem 0 0 #{-5 / $base-font-size}rem;
2016-08-09 23:29:17 +02:00
font-size: #{9 / $base-font-size}rem;
width: #{44 / $base-font-size}rem;
2016-07-11 04:52:48 +02:00
}
2016-07-11 14:44:27 +02:00
.preference__vertical-list {
display: flex;
flex-direction: column;
width: #{44 / $base-font-size}rem;
padding-left: #{25 / $base-font-size}rem;
2016-07-11 14:44:27 +02:00
}
2016-08-25 23:46:30 +02:00
.preference__radio-button {
@extend %hidden-element;
}
2016-07-11 04:52:48 +02:00
.preference__option {
2016-09-14 17:55:53 +02:00
@include themify() {
@extend %preference-option;
padding-right: #{44 / $base-font-size}rem;
2016-09-14 17:55:53 +02:00
}
2016-07-11 04:52:48 +02:00
}
2016-08-09 23:29:17 +02:00
.preference__option:last-child {
padding-right: 0;
}
2016-09-01 05:07:43 +02:00
.preference__preview-button {
2016-09-14 17:55:53 +02:00
@include themify() {
@extend %preference-option;
}
2016-09-01 05:07:43 +02:00
}
2016-08-09 23:29:17 +02:00
.preference__options {
display: flex;
}
2016-08-29 20:39:23 +02:00
.preference__radio-button:checked + .preference__option {
@include themify() {
2016-09-14 17:55:53 +02:00
//for some reason this won't work for getThemifyVariable
color: map-get($theme-map, 'primary-text-color');
}
2016-08-29 20:39:23 +02:00
}
2016-08-11 20:09:59 +02:00
.preference--hidden {
@extend %hidden-element;
}
.preference__option.preference__canvas:not(:last-child) {
padding-right: #{14 / $base-font-size}rem;
}