2018-04-12 07:23:35 +08:00
|
|
|
/*
|
|
|
|
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 {
|
|
|
|
cursor: pointer;
|
2018-10-19 18:10:37 +08:00
|
|
|
}
|
2019-01-22 08:27:43 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton_disabled {
|
|
|
|
cursor: default;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_hasKind {
|
2019-01-25 05:41:00 +08:00
|
|
|
padding: 7px 18px;
|
2019-01-22 08:27:43 +08:00
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
|
|
|
display: inline-block;
|
2019-01-25 05:42:30 +08:00
|
|
|
font-size: 14px;
|
2019-01-22 08:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_primary {
|
|
|
|
color: $button-primary-fg-color;
|
|
|
|
background-color: $button-primary-bg-color;
|
2019-04-15 23:11:26 +08:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2020-03-31 10:03:46 +08:00
|
|
|
.mx_AccessibleButton_kind_primary_outline {
|
|
|
|
color: $button-primary-bg-color;
|
|
|
|
background-color: $button-secondary-bg-color;
|
|
|
|
border: 1px solid $button-primary-bg-color;
|
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:11:26 +08:00
|
|
|
.mx_AccessibleButton_kind_secondary {
|
|
|
|
color: $accent-color;
|
|
|
|
font-weight: 600;
|
2019-01-22 08:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_primary.mx_AccessibleButton_disabled {
|
2019-02-12 23:40:06 +08:00
|
|
|
opacity: 0.4;
|
2019-01-22 08:27:43 +08:00
|
|
|
}
|
2019-01-23 06:18:14 +08:00
|
|
|
|
2019-01-24 09:49:27 +08:00
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_primary_sm {
|
|
|
|
padding: 5px 12px;
|
2019-01-23 06:18:14 +08:00
|
|
|
color: $button-primary-fg-color;
|
|
|
|
background-color: $button-primary-bg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_primary_sm.mx_AccessibleButton_disabled {
|
2019-02-12 23:40:06 +08:00
|
|
|
opacity: 0.4;
|
2019-01-23 06:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_danger {
|
|
|
|
color: $button-danger-fg-color;
|
|
|
|
background-color: $button-danger-bg-color;
|
|
|
|
}
|
|
|
|
|
2020-03-31 10:03:46 +08:00
|
|
|
.mx_AccessibleButton_kind_danger_outline {
|
|
|
|
color: $button-danger-bg-color;
|
|
|
|
background-color: $button-secondary-bg-color;
|
|
|
|
border: 1px solid $button-danger-bg-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_danger.mx_AccessibleButton_disabled,
|
|
|
|
mx_AccessibleButton_kind_danger_outline.mx_AccessibleButton_disabled
|
|
|
|
{
|
2019-01-23 06:18:14 +08:00
|
|
|
color: $button-danger-disabled-fg-color;
|
|
|
|
background-color: $button-danger-disabled-bg-color;
|
|
|
|
}
|
|
|
|
|
2019-01-24 09:49:27 +08:00
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_danger_sm {
|
|
|
|
padding: 5px 12px;
|
2019-01-23 06:18:14 +08:00
|
|
|
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;
|
2019-02-12 23:40:06 +08:00
|
|
|
}
|
2019-07-05 06:45:40 +08:00
|
|
|
|
|
|
|
.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;
|
|
|
|
}
|