2021-04-27 23:29:42 +08:00
|
|
|
/*
|
|
|
|
Copyright 2021 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_BetaCard {
|
2023-03-07 00:25:10 +08:00
|
|
|
padding: $spacing-24;
|
2021-08-25 17:08:10 +08:00
|
|
|
background-color: $system;
|
2021-04-27 23:29:42 +08:00
|
|
|
border-radius: 8px;
|
|
|
|
box-sizing: border-box;
|
2022-06-10 01:07:59 +08:00
|
|
|
color: $secondary-content;
|
2021-04-27 23:29:42 +08:00
|
|
|
|
2021-06-17 23:22:40 +08:00
|
|
|
.mx_BetaCard_columns {
|
|
|
|
display: flex;
|
2022-03-28 18:26:14 +08:00
|
|
|
flex-flow: wrap;
|
2023-03-07 00:25:10 +08:00
|
|
|
gap: $spacing-20;
|
2022-03-28 18:26:14 +08:00
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
.mx_BetaCard_columns_description {
|
|
|
|
flex: 1;
|
2021-06-17 23:22:40 +08:00
|
|
|
|
|
|
|
.mx_BetaCard_title {
|
2023-04-21 22:16:00 +08:00
|
|
|
font-weight: var(--font-semi-bold);
|
2021-06-17 23:22:40 +08:00
|
|
|
font-size: $font-18px;
|
|
|
|
line-height: $font-22px;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2023-03-07 00:25:10 +08:00
|
|
|
margin: $spacing-4 0 14px; // TODO: use a spacing variable
|
2021-04-29 05:47:08 +08:00
|
|
|
|
2022-03-28 18:26:14 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-03-07 00:25:10 +08:00
|
|
|
column-gap: $spacing-12;
|
2021-04-29 05:47:08 +08:00
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
|
2021-06-17 23:22:40 +08:00
|
|
|
.mx_BetaCard_caption {
|
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-20px;
|
|
|
|
}
|
|
|
|
|
2022-03-28 18:26:14 +08:00
|
|
|
.mx_BetaCard_buttons {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap-reverse;
|
2022-06-10 01:07:59 +08:00
|
|
|
gap: $spacing-12;
|
|
|
|
margin: $spacing-20 auto 0;
|
2022-03-28 18:26:14 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton {
|
|
|
|
padding: 7px 40px;
|
|
|
|
width: auto;
|
|
|
|
flex: 1;
|
2022-07-27 21:39:29 +08:00
|
|
|
white-space: nowrap; /* text might overflow */
|
2022-03-28 18:26:14 +08:00
|
|
|
|
|
|
|
&:nth-child(1) {
|
2022-07-27 21:39:29 +08:00
|
|
|
order: 2; /* Place feedback button top and right */
|
2022-03-28 18:26:14 +08:00
|
|
|
}
|
|
|
|
}
|
2021-06-17 23:22:40 +08:00
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
|
2022-06-10 01:07:59 +08:00
|
|
|
.mx_BetaCard_refreshWarning {
|
|
|
|
margin-top: $spacing-8;
|
|
|
|
font-size: $font-10px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_BetaCard_faq {
|
|
|
|
margin-top: $spacing-20;
|
2021-06-17 23:22:40 +08:00
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
2022-02-08 22:02:36 +08:00
|
|
|
|
|
|
|
> h4 {
|
2023-03-07 00:25:10 +08:00
|
|
|
margin: $spacing-12 0 0;
|
2022-02-08 22:02:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
2022-03-28 18:26:14 +08:00
|
|
|
margin: 0;
|
2022-02-08 22:02:36 +08:00
|
|
|
}
|
2021-06-17 23:22:40 +08:00
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
}
|
|
|
|
|
2022-03-28 18:26:14 +08:00
|
|
|
.mx_BetaCard_columns_image_wrapper {
|
|
|
|
margin: auto 0;
|
|
|
|
|
|
|
|
.mx_BetaCard_columns_image {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 300px;
|
|
|
|
object-fit: contain;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
}
|
2021-06-17 23:22:40 +08:00
|
|
|
}
|
2021-06-16 16:01:13 +08:00
|
|
|
|
2021-06-17 23:22:40 +08:00
|
|
|
.mx_BetaCard_relatedSettings {
|
|
|
|
.mx_SettingsFlag {
|
2023-03-07 00:25:10 +08:00
|
|
|
margin: $spacing-16 0 0;
|
2021-06-17 23:22:40 +08:00
|
|
|
font-size: $font-15px;
|
|
|
|
line-height: $font-24px;
|
2021-08-12 17:27:12 +08:00
|
|
|
color: $primary-content;
|
2021-06-17 23:22:40 +08:00
|
|
|
|
|
|
|
.mx_SettingsFlag_microcopy {
|
2023-03-07 00:25:10 +08:00
|
|
|
margin-top: $spacing-4;
|
2021-06-17 23:22:40 +08:00
|
|
|
font-size: $font-12px;
|
|
|
|
line-height: $font-15px;
|
2021-06-16 16:01:13 +08:00
|
|
|
}
|
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_BetaCard_betaPill {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent-alt;
|
2023-03-07 00:25:10 +08:00
|
|
|
padding: $spacing-4 10px; // TODO: use a spacing variable
|
2021-04-27 23:29:42 +08:00
|
|
|
border-radius: 8px;
|
|
|
|
text-transform: uppercase;
|
2023-03-07 00:25:10 +08:00
|
|
|
font-size: $font-12px;
|
2023-04-21 22:16:00 +08:00
|
|
|
font-weight: var(--font-semi-bold);
|
2021-04-27 23:29:42 +08:00
|
|
|
line-height: 15px;
|
2022-05-09 14:55:28 +08:00
|
|
|
color: $button-primary-fg-color;
|
2021-04-28 15:05:25 +08:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: text-bottom;
|
2022-07-27 21:39:29 +08:00
|
|
|
word-break: keep-all; /* avoid multiple lines on CJK language */
|
2021-04-28 15:41:31 +08:00
|
|
|
|
2022-03-03 00:31:47 +08:00
|
|
|
&.mx_AccessibleButton {
|
2021-04-28 15:41:31 +08:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
2021-04-27 23:29:42 +08:00
|
|
|
}
|