mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-11 10:49:08 +03:00
93872e6fa5
Fixes https://github.com/vector-im/riot-web/issues/10236 The changes to the MatrixClientPeg (assign/start) are to permit the SoftLogout page to access the MatrixClientPeg reliably. This is why assign() is called by Lifecycle as an alternative to start(). Minimal design work has been done here. The majority is deferred to https://github.com/vector-im/riot-web/issues/10262
100 lines
2.5 KiB
SCSS
100 lines
2.5 KiB
SCSS
/*
|
|
Copyright 2017 Vector Creations Ltd
|
|
|
|
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_AccessibleButton:focus {
|
|
outline: 0;
|
|
}
|
|
|
|
.mx_AccessibleButton {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
cursor: default;
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind {
|
|
padding: 7px 18px;
|
|
text-align: center;
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_primary {
|
|
color: $button-primary-fg-color;
|
|
background-color: $button-primary-bg-color;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_secondary {
|
|
color: $accent-color;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_primary.mx_AccessibleButton_disabled {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_primary_sm {
|
|
padding: 5px 12px;
|
|
color: $button-primary-fg-color;
|
|
background-color: $button-primary-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_primary_sm.mx_AccessibleButton_disabled {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_danger {
|
|
color: $button-danger-fg-color;
|
|
background-color: $button-danger-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_danger.mx_AccessibleButton_disabled {
|
|
color: $button-danger-disabled-fg-color;
|
|
background-color: $button-danger-disabled-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_danger_sm {
|
|
padding: 5px 12px;
|
|
color: $button-danger-fg-color;
|
|
background-color: $button-danger-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_danger_sm.mx_AccessibleButton_disabled {
|
|
color: $button-danger-disabled-fg-color;
|
|
background-color: $button-danger-disabled-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_link {
|
|
color: $button-link-fg-color;
|
|
background-color: $button-link-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_link.mx_AccessibleButton_disabled {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_link_sm {
|
|
padding: 5px 12px;
|
|
color: $button-link-fg-color;
|
|
background-color: $button-link-bg-color;
|
|
}
|
|
|
|
.mx_AccessibleButton_kind_link_sm.mx_AccessibleButton_disabled {
|
|
opacity: 0.4;
|
|
}
|