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;
|
2019-01-23 06:18:14 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_disabled {
|
2022-06-11 02:41:05 +08:00
|
|
|
cursor: not-allowed;
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary,
|
|
|
|
&.mx_AccessibleButton_kind_primary_outline,
|
|
|
|
&.mx_AccessibleButton_kind_primary_sm,
|
|
|
|
&.mx_AccessibleButton_kind_link,
|
2022-11-22 14:58:37 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_accent,
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_inline,
|
2022-10-17 23:14:49 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_inline,
|
|
|
|
&.mx_AccessibleButton_kind_content_inline,
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
opacity: 0.4;
|
2022-03-24 01:15:15 +08:00
|
|
|
}
|
2021-10-30 06:11:39 +08:00
|
|
|
}
|
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_hasKind {
|
2022-03-24 01:15:15 +08:00
|
|
|
padding: 7px 18px;
|
|
|
|
text-align: center;
|
|
|
|
border-radius: 8px;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2023-06-29 18:30:25 +08:00
|
|
|
font: var(--cpd-font-body-md-regular);
|
2022-07-27 21:39:29 +08:00
|
|
|
border: none; /* override default <button /> styles */
|
|
|
|
word-break: keep-all; /* prevent button text in Chinese/Japanese/Korean (CJK) from being collapsed */
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary_sm,
|
|
|
|
&.mx_AccessibleButton_kind_danger_sm,
|
|
|
|
&.mx_AccessibleButton_kind_link_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
padding: 5px 12px;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $button-primary-fg-color;
|
|
|
|
background-color: $accent;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $button-danger-fg-color;
|
|
|
|
background-color: $alert;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $accent;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_confirm_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
background-color: $accent;
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 03:09:09 +08:00
|
|
|
&::before {
|
|
|
|
mask-image: url("$(res)/img/feather-customised/check.svg");
|
2022-03-24 01:15:15 +08:00
|
|
|
}
|
2022-03-24 03:09:09 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_cancel_sm {
|
2022-03-24 03:09:09 +08:00
|
|
|
background-color: $alert;
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 03:09:09 +08:00
|
|
|
&::before {
|
|
|
|
mask-image: url("$(res)/img/feather-customised/x.svg");
|
2022-03-24 01:15:15 +08:00
|
|
|
}
|
|
|
|
}
|
2022-08-15 23:30:18 +08:00
|
|
|
|
|
|
|
&.mx_AccessibleButton_kind_icon {
|
|
|
|
padding: 0;
|
|
|
|
height: 32px;
|
|
|
|
width: 32px;
|
|
|
|
}
|
2021-10-30 06:11:39 +08:00
|
|
|
}
|
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary,
|
|
|
|
&.mx_AccessibleButton_kind_primary_outline,
|
|
|
|
&.mx_AccessibleButton_kind_secondary {
|
2023-06-29 18:30:25 +08:00
|
|
|
font-weight: var(--cpd-font-weight-semibold);
|
2022-03-24 03:09:09 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary,
|
|
|
|
&.mx_AccessibleButton_kind_primary_outline {
|
2022-03-24 03:09:09 +08:00
|
|
|
border: 1px solid $accent;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $button-primary-fg-color;
|
|
|
|
background-color: $accent;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_primary_outline {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $accent;
|
|
|
|
background-color: $button-secondary-bg-color;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_secondary {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $accent;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-11-21 15:47:09 +08:00
|
|
|
&.mx_AccessibleButton_kind_secondary_content {
|
|
|
|
color: $secondary-content;
|
|
|
|
}
|
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger {
|
2022-03-24 03:09:09 +08:00
|
|
|
color: $button-danger-fg-color;
|
|
|
|
background-color: $alert;
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 03:09:09 +08:00
|
|
|
&.mx_AccessibleButton_disabled {
|
|
|
|
color: $button-danger-disabled-fg-color;
|
|
|
|
background-color: $button-danger-disabled-bg-color;
|
|
|
|
}
|
2022-03-24 04:36:43 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_outline {
|
|
|
|
color: $alert;
|
|
|
|
background-color: transparent;
|
|
|
|
border: 1px solid $alert;
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_disabled {
|
|
|
|
color: $button-danger-disabled-bg-color;
|
|
|
|
border-color: $button-danger-disabled-bg-color;
|
2022-03-24 03:09:09 +08:00
|
|
|
}
|
2022-03-24 04:36:43 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_sm {
|
|
|
|
&.mx_AccessibleButton_disabled {
|
|
|
|
color: $button-danger-disabled-fg-color;
|
|
|
|
background-color: $button-danger-disabled-bg-color;
|
2022-03-24 01:15:15 +08:00
|
|
|
}
|
2022-03-24 04:36:43 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-04-06 01:29:35 +08:00
|
|
|
&.mx_AccessibleButton_kind_link,
|
2022-09-14 20:37:36 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_inline,
|
2022-09-30 15:07:50 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_inline,
|
|
|
|
&.mx_AccessibleButton_kind_content_inline {
|
2022-04-06 01:29:35 +08:00
|
|
|
font-size: inherit;
|
|
|
|
font-weight: normal;
|
|
|
|
line-height: inherit;
|
2022-03-24 04:36:43 +08:00
|
|
|
padding: 0;
|
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-09-14 20:37:36 +08:00
|
|
|
&.mx_AccessibleButton_kind_link,
|
2022-03-24 04:36:43 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_inline {
|
2022-09-14 20:37:36 +08:00
|
|
|
color: $accent;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.mx_AccessibleButton_kind_danger_inline {
|
|
|
|
color: $alert;
|
|
|
|
}
|
|
|
|
|
2022-09-30 15:07:50 +08:00
|
|
|
&.mx_AccessibleButton_kind_content_inline {
|
|
|
|
color: $primary-content;
|
|
|
|
}
|
|
|
|
|
2022-09-14 20:37:36 +08:00
|
|
|
&.mx_AccessibleButton_kind_link_inline,
|
2022-09-30 15:07:50 +08:00
|
|
|
&.mx_AccessibleButton_kind_danger_inline,
|
|
|
|
&.mx_AccessibleButton_kind_content_inline {
|
2022-04-06 01:29:35 +08:00
|
|
|
display: inline;
|
2022-03-24 04:36:43 +08:00
|
|
|
}
|
2022-03-24 01:15:15 +08:00
|
|
|
|
2022-03-24 04:36:43 +08:00
|
|
|
&.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: "";
|
2022-03-24 01:15:15 +08:00
|
|
|
display: block;
|
2022-03-24 04:36:43 +08:00
|
|
|
position: absolute;
|
2023-05-09 18:02:12 +08:00
|
|
|
inset: 0;
|
2022-03-24 04:36:43 +08:00
|
|
|
background-color: #ffffff;
|
|
|
|
mask-repeat: no-repeat;
|
|
|
|
mask-position: center;
|
|
|
|
mask-size: 80%;
|
2022-03-24 01:15:15 +08:00
|
|
|
}
|
2021-10-30 06:11:39 +08:00
|
|
|
}
|
|
|
|
}
|