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