2020-04-16 11:31:40 +02:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2020-04-22 18:31:49 +02:00
|
|
|
.mx_AppearanceUserSettingsTab_fontSlider,
|
2020-04-21 13:03:32 +02:00
|
|
|
.mx_AppearanceUserSettingsTab_themeSection .mx_Field,
|
|
|
|
.mx_AppearanceUserSettingsTab_fontScaling .mx_Field {
|
2020-04-16 11:31:40 +02:00
|
|
|
@mixin mx_Settings_fullWidthField;
|
2020-04-16 13:09:36 +02:00
|
|
|
}
|
2020-04-22 18:31:49 +02:00
|
|
|
|
|
|
|
.mx_AppearanceUserSettingsTab_fontSlider {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
2020-04-23 12:22:51 +02:00
|
|
|
padding: 15px;
|
2020-04-23 12:33:28 +02:00
|
|
|
background: $font-slider-bg-color;
|
2020-04-22 18:31:49 +02:00
|
|
|
border-radius: 10px;
|
2020-04-23 11:58:00 +02:00
|
|
|
font-size: 10px;
|
2020-04-23 12:49:54 +02:00
|
|
|
margin-top: 24px;
|
|
|
|
margin-bottom: 24px;
|
2020-04-22 18:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AppearanceUserSettingsTab_fontSlider_smallText {
|
|
|
|
font-size: 15px;
|
2020-04-23 12:22:51 +02:00
|
|
|
padding-right: 20px;
|
|
|
|
padding-left: 5px;
|
2020-04-22 18:31:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AppearanceUserSettingsTab_fontSlider_largeText {
|
|
|
|
font-size: 18px;
|
2020-04-23 12:22:51 +02:00
|
|
|
padding-left: 20px;
|
|
|
|
padding-right: 5px;
|
2020-04-22 18:31:49 +02:00
|
|
|
}
|
2020-06-08 19:17:02 +02:00
|
|
|
|
2020-06-11 13:27:09 +02:00
|
|
|
.mx_AppearanceUserSettingsTab {
|
|
|
|
> .mx_SettingsTab_SubHeading {
|
|
|
|
margin-bottom: 32px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-08 19:17:02 +02:00
|
|
|
.mx_AppearanceUserSettingsTab_themeSection {
|
|
|
|
$radio-bg-color: $input-darker-bg-color;
|
2020-06-11 13:27:09 +02:00
|
|
|
color: $primary-fg-color;
|
2020-06-08 19:17:02 +02:00
|
|
|
|
|
|
|
> .mx_ThemeSelectors {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2020-06-08 19:37:36 +02:00
|
|
|
flex-wrap: wrap;
|
2020-06-08 19:17:02 +02:00
|
|
|
|
2020-06-15 13:06:40 +02:00
|
|
|
margin-top: 4px;
|
2020-06-11 13:27:09 +02:00
|
|
|
margin-bottom: 30px;
|
2020-06-08 19:17:02 +02:00
|
|
|
|
|
|
|
> .mx_RadioButton {
|
|
|
|
padding: $font-16px;
|
2020-06-11 13:27:09 +02:00
|
|
|
box-sizing: border-box;
|
2020-06-08 19:17:02 +02:00
|
|
|
border-radius: 10px;
|
|
|
|
width: 180px;
|
2020-06-11 13:27:09 +02:00
|
|
|
|
2020-06-15 13:23:14 +02:00
|
|
|
background: $radio-bg-color;
|
|
|
|
opacity: 0.4;
|
2020-06-11 13:27:09 +02:00
|
|
|
|
2020-06-08 19:17:02 +02:00
|
|
|
flex-shrink: 1;
|
|
|
|
flex-grow: 0;
|
2020-06-11 13:27:09 +02:00
|
|
|
|
2020-06-08 19:17:02 +02:00
|
|
|
margin-right: 15px;
|
2020-06-08 19:37:36 +02:00
|
|
|
margin-top: 10px;
|
2020-06-11 13:27:09 +02:00
|
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
color: $muted-fg-color;
|
|
|
|
|
|
|
|
> span {
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-06-08 19:17:02 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 13:27:09 +02:00
|
|
|
> .mx_RadioButton_enabled {
|
2020-06-15 13:23:14 +02:00
|
|
|
opacity: 1;
|
|
|
|
|
|
|
|
// These colors need to be hardcoded because they don't change with the theme
|
2020-06-08 19:17:02 +02:00
|
|
|
&.mx_ThemeSelector_light {
|
|
|
|
background-color: #f3f8fd;
|
|
|
|
color: #2e2f32;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_ThemeSelector_dark {
|
|
|
|
background-color: #181b21;
|
2020-06-11 13:27:09 +02:00
|
|
|
color: #f3f8fd;
|
2020-06-08 19:17:02 +02:00
|
|
|
|
|
|
|
> input > div {
|
|
|
|
border-color: $input-darker-bg-color;
|
|
|
|
> div {
|
|
|
|
border-color: $input-darker-bg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_ThemeSelector_black {
|
|
|
|
background-color: #000000;
|
2020-06-11 13:27:09 +02:00
|
|
|
color: #f3f8fd;
|
2020-06-08 19:17:02 +02:00
|
|
|
|
|
|
|
> input > div {
|
|
|
|
border-color: $input-darker-bg-color;
|
|
|
|
> div {
|
|
|
|
border-color: $input-darker-bg-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_SettingsTab_customFontSizeField {
|
|
|
|
margin-left: calc($font-16px + 10px);
|
|
|
|
}
|