2016-06-17 19:37:29 +02:00
|
|
|
.preferences {
|
2016-07-21 21:07:53 +02:00
|
|
|
@extend %modal;
|
2016-06-21 05:04:41 +02:00
|
|
|
position: absolute;
|
2016-12-20 05:48:36 +01:00
|
|
|
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;
|
2016-12-20 05:48:36 +01:00
|
|
|
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
|
|
|
}
|
2016-12-20 05:48:36 +01: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 {
|
2016-09-13 22:42:06 +02:00
|
|
|
@include themify() {
|
|
|
|
@extend %icon;
|
|
|
|
}
|
2016-09-13 23:05:42 +02:00
|
|
|
padding-top: #{5 / $base-font-size}rem;
|
2016-12-20 05:48:36 +01:00
|
|
|
margin-right: #{-6 / $base-font-size}rem;
|
2016-06-17 19:37:29 +02:00
|
|
|
}
|
2016-06-20 18:45:15 +02:00
|
|
|
|
2017-02-22 20:29:35 +01:00
|
|
|
.preference__minus-button,
|
|
|
|
.preference__plus-button {
|
2016-12-20 05:48:36 +01:00
|
|
|
@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;
|
2016-10-12 18:08:12 +02:00
|
|
|
@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() {
|
2016-12-20 05:48:36 +01:00
|
|
|
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%;
|
2016-12-20 05:48:36 +01:00
|
|
|
font-size: #{16 / $base-font-size}rem;
|
|
|
|
margin-top: #{13 / $base-font-size}rem;
|
|
|
|
margin-bottom: #{7 / $base-font-size}rem;
|
2016-10-12 18:08:12 +02:00
|
|
|
@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 {
|
2016-09-22 05:39:50 +02:00
|
|
|
@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() {
|
2016-12-20 05:48:36 +01:00
|
|
|
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');
|
2016-09-22 05:39:50 +02:00
|
|
|
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%;
|
2016-12-20 05:48:36 +01:00
|
|
|
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;
|
2016-12-20 05:48:36 +01:00
|
|
|
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 {
|
2016-09-22 05:39:50 +02:00
|
|
|
@include themify() {
|
2016-10-12 18:08:12 +02:00
|
|
|
color: getThemifyVariable('inactive-text-color');
|
2016-09-22 05:39:50 +02:00
|
|
|
&:hover {
|
2016-10-12 18:08:12 +02:00
|
|
|
color: getThemifyVariable('primary-text-color');
|
2016-09-22 05:39:50 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-20 05:48:36 +01:00
|
|
|
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;
|
2016-12-20 05:48:36 +01:00
|
|
|
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;
|
2016-12-20 05:48:36 +01:00
|
|
|
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;
|
2016-12-20 05:48:36 +01:00
|
|
|
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
|
|
|
|
2016-12-20 05:48:36 +01: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 {
|
2016-10-12 18:08:12 +02:00
|
|
|
@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;
|
|
|
|
}
|
2016-12-20 05:48:36 +01:00
|
|
|
|
|
|
|
.preference__option.preference__canvas:not(:last-child) {
|
|
|
|
padding-right: #{20 / $base-font-size}rem;
|
|
|
|
}
|