2016-10-12 00:08:24 +00:00
|
|
|
.dialog {
|
2016-09-14 15:11:53 +00:00
|
|
|
visibility: visible;
|
|
|
|
height: auto;
|
|
|
|
|
2016-10-12 00:08:24 +00:00
|
|
|
h3 {
|
|
|
|
color: $auiDialogColor;
|
2016-09-27 02:15:24 +00:00
|
|
|
}
|
2016-10-12 00:08:24 +00:00
|
|
|
|
|
|
|
.aui {
|
|
|
|
|
|
|
|
&-icon {
|
|
|
|
color: $auiDialogColor;
|
|
|
|
|
|
|
|
&-small {
|
|
|
|
width: 14px;
|
|
|
|
height: 14px;
|
2016-09-27 02:15:24 +00:00
|
|
|
}
|
2016-09-14 15:11:53 +00:00
|
|
|
}
|
2016-10-12 00:08:24 +00:00
|
|
|
|
|
|
|
&-iconfont-close-dialog {
|
|
|
|
cursor: pointer;
|
|
|
|
right: 20px;
|
|
|
|
position: absolute;
|
|
|
|
top: -49px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dialog2 {
|
|
|
|
&-header, &-footer {
|
|
|
|
background-color: $auiDialogBg;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-header {
|
|
|
|
height: em(58, 12);
|
|
|
|
border-bottom: 1px solid $auiBorderColor;
|
|
|
|
|
|
|
|
h2 {
|
|
|
|
font-size: em(20, 12);
|
|
|
|
font-weight: $dialogTitleFontWeight;
|
|
|
|
color: $auiDialogColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-main {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-footer {
|
|
|
|
border-top: 1px solid $auiBorderColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-content {
|
|
|
|
font-size: em(14, 12);
|
|
|
|
min-height: 0;
|
|
|
|
background-color: $auiDialogContentBg;
|
|
|
|
color: $auiDialogColor;
|
|
|
|
|
|
|
|
p,span, h3 {
|
|
|
|
font-weight: $labelFontWeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
border-bottom-right-radius: 5px;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
border-top-right-radius: 5px;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-09-14 15:11:53 +00:00
|
|
|
}
|
|
|
|
}
|
2016-10-12 00:08:24 +00:00
|
|
|
|
|
|
|
.input-control:not(:last-child) {
|
|
|
|
border-bottom: 1px solid $auiBorderColor;
|
|
|
|
}
|
|
|
|
}
|