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;
|
2020-10-20 22:05:38 +08:00
|
|
|
border-radius: 8px;
|
2021-03-09 07:28:54 +08:00
|
|
|
display: inline-flex;
|
2021-03-09 01:59:02 +08:00
|
|
|
align-items: center;
|
2021-03-09 06:29:08 +08:00
|
|
|
justify-content: center;
|
2020-03-31 22:26:23 +08:00
|
|
|
font-size: $font-14px;
|
2021-11-02 13:44:42 +08:00
|
|
|
border: none; // override default <button /> styles
|
2019-01-22 08:27:43 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_primary {
|
|
|
|
color: $button-primary-fg-color;
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
|
|
|
border: 1px solid $accent; // account for size loss of no border
|
2019-04-15 23:11:26 +08:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2020-03-31 10:03:46 +08:00
|
|
|
.mx_AccessibleButton_kind_primary_outline {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2020-03-31 10:03:46 +08:00
|
|
|
background-color: $button-secondary-bg-color;
|
2021-11-11 21:37:29 +08:00
|
|
|
border: 1px solid $accent;
|
2020-03-31 10:03:46 +08:00
|
|
|
font-weight: 600;
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:11:26 +08:00
|
|
|
.mx_AccessibleButton_kind_secondary {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2019-04-15 23:11:26 +08:00
|
|
|
font-weight: 600;
|
2019-01-22 08:27:43 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 10:23:34 +08:00
|
|
|
.mx_AccessibleButton_kind_primary.mx_AccessibleButton_disabled,
|
|
|
|
.mx_AccessibleButton_kind_primary_outline.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;
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2019-01-23 06:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
2019-01-23 06:18:14 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 10:03:46 +08:00
|
|
|
.mx_AccessibleButton_kind_danger_outline {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $alert;
|
2021-07-08 16:37:40 +08:00
|
|
|
background-color: transparent;
|
2021-11-11 21:37:29 +08:00
|
|
|
border: 1px solid $alert;
|
2020-03-31 10:03:46 +08:00
|
|
|
}
|
|
|
|
|
2021-05-05 23:51:46 +08:00
|
|
|
.mx_AccessibleButton_kind_danger.mx_AccessibleButton_disabled {
|
2019-01-23 06:18:14 +08:00
|
|
|
color: $button-danger-disabled-fg-color;
|
|
|
|
background-color: $button-danger-disabled-bg-color;
|
|
|
|
}
|
|
|
|
|
2021-05-05 23:51:46 +08:00
|
|
|
.mx_AccessibleButton_kind_danger_outline.mx_AccessibleButton_disabled {
|
|
|
|
color: $button-danger-disabled-bg-color;
|
|
|
|
border-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;
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
2019-01-23 06:18:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2019-07-05 06:45:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link.mx_AccessibleButton_disabled {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_link_sm {
|
|
|
|
padding: 5px 12px;
|
2021-11-11 21:37:29 +08:00
|
|
|
color: $accent;
|
2019-07-05 06:45:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_link_sm.mx_AccessibleButton_disabled {
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
2021-10-30 06:11:39 +08:00
|
|
|
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_confirm_sm {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $accent;
|
2021-10-30 06:11:39 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/feather-customised/check.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_hasKind.mx_AccessibleButton_kind_cancel_sm {
|
2021-11-11 21:37:29 +08:00
|
|
|
background-color: $alert;
|
2021-10-30 06:11:39 +08:00
|
|
|
|
|
|
|
&::before {
|
|
|
|
mask-image: url('$(res)/img/feather-customised/x.svg');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.mx_AccessibleButton_kind_confirm_sm,
|
|
|
|
.mx_AccessibleButton_kind_cancel_sm {
|
|
|
|
padding: 0px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
border-radius: 100%;
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
background-color: #ffffff;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 80%;
|
|
|
|
}
|
|
|
|
}
|