Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

62 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2024 New Vector Ltd.
Copyright 2021 The Matrix.org Foundation C.I.C.
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
.mx_SpaceCreateMenu_wrapper {
/* background blur everything except SpacePanel */
.mx_ContextualMenu_background {
background-color: $dialog-backdrop-color;
opacity: 0.6;
left: 68px;
}
.mx_ContextualMenu {
padding: 24px;
width: 480px;
box-sizing: border-box;
2021-08-12 11:10:47 +02:00
background-color: $background;
2021-04-28 12:10:03 +01:00
position: relative;
> div {
> h2 {
font: var(--cpd-font-heading-sm-semibold);
font-size: $font-18px;
margin-top: 4px;
}
> p {
font-size: $font-15px;
2021-08-12 11:30:35 +02:00
color: $secondary-content;
}
}
.mx_SpaceCreateMenu_back {
width: 24px;
height: 24px;
padding: var(--cpd-space-0-5x);
2021-11-29 13:52:09 +01:00
background-color: $panel-actions;
border-radius: 14px;
margin-bottom: 12px;
svg {
color: $tertiary-content;
}
}
2021-03-24 13:15:31 +00:00
.mx_AccessibleButton_kind_primary {
padding: 8px 22px;
margin-left: auto;
display: block;
width: min-content;
}
.mx_AccessibleButton_disabled {
cursor: not-allowed;
}
}
}