mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00
358 lines
11 KiB
SCSS
358 lines
11 KiB
SCSS
@import "../../globals.wp";
|
|
@import "./alert";
|
|
|
|
// Windows Alerts
|
|
// --------------------------------------------------
|
|
|
|
$alert-wp-backdrop-background: #fff !default;
|
|
|
|
$alert-wp-width: 100% !default;
|
|
$alert-wp-max-width: 520px !default;
|
|
$alert-wp-border-width: 1px !default;
|
|
$alert-wp-border-style: solid !default;
|
|
$alert-wp-border-color: color($colors-wp, primary) !default;
|
|
$alert-wp-border-radius: 0 !default;
|
|
$alert-wp-background: #e6e6e6 !default;
|
|
|
|
$alert-wp-head-padding: 20px 22px 5px 22px !default;
|
|
$alert-wp-head-text-align: left !default;
|
|
|
|
$alert-wp-title-font-size: 20px !default;
|
|
$alert-wp-title-font-weight: 400 !default;
|
|
|
|
$alert-wp-sub-title-font-size: 16px !default;
|
|
|
|
$alert-wp-message-padding: 0 22px 8px 22px !default;
|
|
$alert-wp-message-padding-empty: 0 !default;
|
|
$alert-wp-message-text-color: #000 !default;
|
|
$alert-wp-message-font-size: 13px !default;
|
|
|
|
$alert-wp-content-max-height: 240px !default;
|
|
|
|
$alert-wp-input-margin: 5px 0 5px 0 !default;
|
|
$alert-wp-input-padding: 0 8px !default;
|
|
$alert-wp-input-border-width: 2px !default;
|
|
$alert-wp-input-border-style: $alert-wp-border-style !default;
|
|
$alert-wp-input-border-color: $input-wp-border-color !default;
|
|
$alert-wp-input-border-color-focused: color($colors-wp, primary) !default;
|
|
$alert-wp-input-line-height: 3rem !default;
|
|
$alert-wp-input-text-color: #000 !default;
|
|
|
|
$alert-wp-button-padding: 5px !default;
|
|
$alert-wp-button-width: 49.5% !default;
|
|
$alert-wp-button-border-radius: 0 !default;
|
|
$alert-wp-button-font-weight: 400 !default;
|
|
$alert-wp-button-text-color: #000 !default;
|
|
$alert-wp-button-background: #b8b8b8 !default;
|
|
$alert-wp-button-background-activated: color-shade($alert-wp-button-background) !default;
|
|
$alert-wp-button-margin-right: 1% !default;
|
|
|
|
$alert-wp-button-group-padding: 20px 22px 20px 22px !default;
|
|
$alert-wp-button-group-justify-content: flex-end !default;
|
|
$alert-wp-button-group-flex-wrap: wrap-reverse !default;
|
|
|
|
$alert-wp-button-group-vertical-width: 100% !default;
|
|
$alert-wp-button-group-vertical-margin-top: 5px !default;
|
|
|
|
$alert-wp-radio-background: color($colors-wp, primary) !default;
|
|
$alert-wp-radio-border-color: $input-wp-border-color !default;
|
|
|
|
$alert-wp-radio-label-padding: 13px 26px !default;
|
|
|
|
$alert-wp-radio-top: 0 !default;
|
|
$alert-wp-radio-left: 13px !default;
|
|
$alert-wp-radio-width: 16px !default;
|
|
$alert-wp-radio-height: 16px !default;
|
|
$alert-wp-radio-border-width: 2px !default;
|
|
$alert-wp-radio-border-style: solid !default;
|
|
$alert-wp-radio-border-radius: 50% !default;
|
|
$alert-wp-radio-border-color: $input-wp-border-color !default;
|
|
|
|
$alert-wp-radio-icon-top: 2px !default;
|
|
$alert-wp-radio-icon-left: 2px !default;
|
|
$alert-wp-radio-icon-width: 8px !default;
|
|
$alert-wp-radio-icon-height: 8px !default;
|
|
$alert-wp-radio-icon-border-radius: $alert-wp-radio-border-radius !default;
|
|
|
|
$alert-wp-checkbox-label-padding: 13px 26px !default;
|
|
|
|
$alert-wp-checkbox-top: 0 !default;
|
|
$alert-wp-checkbox-left: 13px !default;
|
|
$alert-wp-checkbox-width: 16px !default;
|
|
$alert-wp-checkbox-height: 16px !default;
|
|
$alert-wp-checkbox-border-width: 2px !default;
|
|
$alert-wp-checkbox-border-style: solid !default;
|
|
$alert-wp-checkbox-border-radius: 0 !default;
|
|
$alert-wp-checkbox-border-color: $input-wp-border-color !default;
|
|
$alert-wp-checkbox-background-off: transparent !default;
|
|
$alert-wp-checkbox-background-on: color($colors-wp, primary) !default;
|
|
|
|
$alert-wp-checkbox-icon-top: -2px !default;
|
|
$alert-wp-checkbox-icon-left: 3px !default;
|
|
$alert-wp-checkbox-icon-width: 6px !default;
|
|
$alert-wp-checkbox-icon-height: 12px !default;
|
|
$alert-wp-checkbox-icon-border-width: 1px !default;
|
|
$alert-wp-checkbox-icon-border-style: solid !default;
|
|
$alert-wp-checkbox-icon-border-color: color-contrast($colors-wp, $alert-wp-checkbox-background-on) !default;
|
|
$alert-wp-checkbox-icon-transform: rotate(45deg) !default;
|
|
|
|
|
|
ion-alert {
|
|
.backdrop {
|
|
background: $alert-wp-backdrop-background;
|
|
}
|
|
}
|
|
|
|
.alert-wrapper {
|
|
width: $alert-wp-width;
|
|
max-width: $alert-wp-max-width;
|
|
|
|
border: $alert-wp-border-width $alert-wp-border-style $alert-wp-border-color;
|
|
border-radius: $alert-wp-border-radius;
|
|
background: $alert-wp-background;
|
|
}
|
|
|
|
// Windows Alert Header
|
|
// --------------------------------------------------
|
|
|
|
.alert-head {
|
|
padding: $alert-wp-head-padding;
|
|
|
|
text-align: $alert-wp-head-text-align;
|
|
}
|
|
|
|
.alert-title {
|
|
font-size: $alert-wp-title-font-size;
|
|
font-weight: $alert-wp-title-font-weight;
|
|
}
|
|
|
|
.alert-sub-title {
|
|
font-size: $alert-wp-sub-title-font-size;
|
|
}
|
|
|
|
|
|
// Windows Alert Message
|
|
// --------------------------------------------------
|
|
|
|
.alert-message,
|
|
.alert-input-group {
|
|
padding: $alert-wp-message-padding;
|
|
|
|
color: $alert-wp-message-text-color;
|
|
}
|
|
|
|
.alert-message {
|
|
max-height: $alert-wp-content-max-height;
|
|
|
|
font-size: $alert-wp-message-font-size;
|
|
|
|
&:empty {
|
|
padding: $alert-wp-message-padding-empty;
|
|
}
|
|
}
|
|
|
|
|
|
// Windows Alert Input
|
|
// --------------------------------------------------
|
|
|
|
.alert-input {
|
|
margin: $alert-wp-input-margin;
|
|
padding: $alert-wp-input-padding;
|
|
|
|
border: $alert-wp-input-border-width $alert-wp-input-border-style $alert-wp-input-border-color;
|
|
line-height: $alert-wp-input-line-height;
|
|
color: $alert-wp-input-text-color;
|
|
|
|
&:focus {
|
|
border-color: $alert-wp-input-border-color-focused;
|
|
}
|
|
}
|
|
|
|
|
|
// Windows Alert Radio/Checkbox Group
|
|
// --------------------------------------------------
|
|
|
|
.alert-radio-group,
|
|
.alert-checkbox-group {
|
|
position: relative;
|
|
overflow: auto;
|
|
|
|
max-height: $alert-wp-content-max-height;
|
|
}
|
|
|
|
.alert-tappable {
|
|
position: relative;
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
// TODO this should be a variable that matches item
|
|
min-height: 4.4rem;
|
|
}
|
|
|
|
|
|
// Windows Alert Radio Label
|
|
// --------------------------------------------------
|
|
|
|
.alert-radio-label {
|
|
overflow: hidden;
|
|
|
|
flex: 1;
|
|
|
|
padding: $alert-wp-radio-label-padding;
|
|
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
// Windows Alert Radio Unchecked Circle
|
|
// ---------------------------------------------------
|
|
|
|
.alert-radio-icon {
|
|
position: relative;
|
|
top: $alert-wp-radio-top;
|
|
left: $alert-wp-radio-left;
|
|
display: block;
|
|
|
|
margin: 0;
|
|
|
|
width: $alert-wp-radio-width;
|
|
height: $alert-wp-radio-height;
|
|
|
|
border-width: $alert-wp-radio-border-width;
|
|
border-style: $alert-wp-radio-border-style;
|
|
border-radius: $alert-wp-radio-border-radius;
|
|
border-color: $alert-wp-radio-border-color;
|
|
}
|
|
|
|
// Windows Alert Radio Checked Dot
|
|
// ---------------------------------------------------
|
|
|
|
.alert-radio-inner {
|
|
position: absolute;
|
|
top: $alert-wp-radio-icon-top;
|
|
left: $alert-wp-radio-icon-left;
|
|
display: none;
|
|
|
|
width: $alert-wp-radio-icon-width;
|
|
height: $alert-wp-radio-icon-height;
|
|
|
|
border-radius: $alert-wp-radio-icon-border-radius;
|
|
background: $alert-wp-radio-background;
|
|
}
|
|
|
|
// Windows Alert Radio Checked
|
|
// ---------------------------------------------------
|
|
|
|
.alert-radio[aria-checked=true] {
|
|
color: $alert-wp-button-text-color;
|
|
|
|
.alert-radio-icon {
|
|
border-color: $alert-wp-radio-border-color;
|
|
}
|
|
}
|
|
|
|
.alert-radio[aria-checked=true] .alert-radio-inner {
|
|
display: block;
|
|
}
|
|
|
|
|
|
// Windows Alert Checkbox Label
|
|
// --------------------------------------------------
|
|
|
|
.alert-checkbox-label {
|
|
overflow: hidden;
|
|
|
|
flex: 1;
|
|
|
|
padding: $alert-wp-checkbox-label-padding;
|
|
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
// Windows Alert Checkbox Outline: Unchecked
|
|
// --------------------------------------------------
|
|
|
|
.alert-checkbox-icon {
|
|
position: relative;
|
|
top: $alert-wp-checkbox-top;
|
|
left: $alert-wp-checkbox-left;
|
|
|
|
width: $alert-wp-checkbox-width;
|
|
height: $alert-wp-checkbox-height;
|
|
|
|
border-width: $alert-wp-checkbox-border-width;
|
|
border-style: $alert-wp-checkbox-border-style;
|
|
border-radius: $alert-wp-checkbox-border-radius;
|
|
border-color: $alert-wp-checkbox-border-color;
|
|
background: $alert-wp-checkbox-background-off;
|
|
}
|
|
|
|
// Windows Alert Checkbox Outline: Checked
|
|
// --------------------------------------------------
|
|
|
|
.alert-checkbox[aria-checked=true] .alert-checkbox-icon {
|
|
border-color: $alert-wp-checkbox-background-on;
|
|
background: $alert-wp-checkbox-background-on;
|
|
}
|
|
|
|
// Windows Alert Checkbox Checkmark: Checked
|
|
// --------------------------------------------------
|
|
|
|
.alert-checkbox[aria-checked=true] .alert-checkbox-inner {
|
|
position: absolute;
|
|
top: $alert-wp-checkbox-icon-top;
|
|
left: $alert-wp-checkbox-icon-left;
|
|
|
|
width: $alert-wp-checkbox-icon-width;
|
|
height: $alert-wp-checkbox-icon-height;
|
|
|
|
border-width: $alert-wp-checkbox-icon-border-width;
|
|
border-top-width: 0;
|
|
border-left-width: 0;
|
|
border-style: $alert-wp-checkbox-icon-border-style;
|
|
border-color: $alert-wp-checkbox-icon-border-color;
|
|
transform: $alert-wp-checkbox-icon-transform;
|
|
}
|
|
|
|
|
|
// Windows Alert Button
|
|
// --------------------------------------------------
|
|
|
|
.alert-button-group {
|
|
flex-wrap: $alert-wp-button-group-flex-wrap;
|
|
justify-content: $alert-wp-button-group-justify-content;
|
|
|
|
padding: $alert-wp-button-group-padding;
|
|
|
|
&.vertical .alert-button {
|
|
margin-top: $alert-wp-button-group-vertical-margin-top;
|
|
|
|
width: $alert-wp-button-group-vertical-width;
|
|
|
|
&:first-child:not(:only-child) {
|
|
margin-top: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.alert-button {
|
|
padding: $alert-wp-button-padding;
|
|
|
|
width: $alert-wp-button-width;
|
|
|
|
border-radius: $alert-wp-button-border-radius;
|
|
font-weight: $alert-wp-button-font-weight;
|
|
color: $alert-wp-button-text-color;
|
|
background: $alert-wp-button-background;
|
|
|
|
&:first-child:not(:only-child) {
|
|
margin-right: $alert-wp-button-margin-right;
|
|
}
|
|
|
|
&.activated {
|
|
background: $alert-wp-button-background-activated;
|
|
}
|
|
}
|