BUGFIX: share alert styling with mobile
This commit is contained in:
parent
b0815e8ace
commit
ab3d664ce0
|
@ -0,0 +1,45 @@
|
||||||
|
.alert {
|
||||||
|
padding: 8px 35px 8px 14px;
|
||||||
|
background-color: scale-color($danger, $lightness: 75%);
|
||||||
|
color: #c09853;
|
||||||
|
|
||||||
|
.close {
|
||||||
|
position: relative;
|
||||||
|
top: -2px;
|
||||||
|
right: -21px;
|
||||||
|
line-height: 18px;
|
||||||
|
float: right;
|
||||||
|
font-size: 20px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 18px;
|
||||||
|
color: $primary;
|
||||||
|
opacity: 0.2;
|
||||||
|
filter: alpha(opacity = 20);
|
||||||
|
@include hover {
|
||||||
|
color: $primary;
|
||||||
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
|
opacity: 0.4;
|
||||||
|
filter: alpha(opacity = 40);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
button.close {
|
||||||
|
padding: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
background: transparent;
|
||||||
|
border: 0;
|
||||||
|
-webkit-appearance: none;
|
||||||
|
}
|
||||||
|
&.alert-success {
|
||||||
|
background-color: scale-color($success, $lightness: 90%);
|
||||||
|
color: $success;
|
||||||
|
}
|
||||||
|
&.alert-error {
|
||||||
|
background-color: scale-color($danger, $lightness: 75%);
|
||||||
|
color: $danger;
|
||||||
|
}
|
||||||
|
&.alert-info {
|
||||||
|
background-color: scale-color($tertiary, $lightness: 90%);
|
||||||
|
color: $primary;
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/* @import "desktop/*"; TODO: get this working again */
|
/* @import "desktop/*"; TODO: get this working again */
|
||||||
|
|
||||||
|
@import "desktop/alert";
|
||||||
@import "desktop/compose";
|
@import "desktop/compose";
|
||||||
@import "desktop/discourse";
|
@import "desktop/discourse";
|
||||||
@import "desktop/header";
|
@import "desktop/header";
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
.alert {
|
||||||
|
margin-bottom: 15px;
|
||||||
|
}
|
|
@ -475,53 +475,6 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.alert {
|
|
||||||
padding: 8px 35px 8px 14px;
|
|
||||||
margin-bottom: 18px;
|
|
||||||
background-color: scale-color($danger, $lightness: 75%);
|
|
||||||
color: #c09853;
|
|
||||||
|
|
||||||
.close {
|
|
||||||
position: relative;
|
|
||||||
top: -2px;
|
|
||||||
right: -21px;
|
|
||||||
line-height: 18px;
|
|
||||||
float: right;
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 18px;
|
|
||||||
color: $primary;
|
|
||||||
opacity: 0.2;
|
|
||||||
filter: alpha(opacity = 20);
|
|
||||||
@include hover {
|
|
||||||
color: $primary;
|
|
||||||
text-decoration: none;
|
|
||||||
cursor: pointer;
|
|
||||||
opacity: 0.4;
|
|
||||||
filter: alpha(opacity = 40);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
button.close {
|
|
||||||
padding: 0;
|
|
||||||
cursor: pointer;
|
|
||||||
background: transparent;
|
|
||||||
border: 0;
|
|
||||||
-webkit-appearance: none;
|
|
||||||
}
|
|
||||||
&.alert-success {
|
|
||||||
background-color: scale-color($success, $lightness: 90%);
|
|
||||||
color: $success;
|
|
||||||
}
|
|
||||||
&.alert-error {
|
|
||||||
background-color: scale-color($danger, $lightness: 75%);
|
|
||||||
color: $danger;
|
|
||||||
}
|
|
||||||
&.alert-info {
|
|
||||||
background-color: scale-color($tertiary, $lightness: 90%);
|
|
||||||
color: $primary;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.bootbox.modal {
|
.bootbox.modal {
|
||||||
.modal-footer {
|
.modal-footer {
|
||||||
a.btn-primary {
|
a.btn-primary {
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
/* @import "mobile/*"; TODO: get this working again */
|
/* @import "mobile/*"; TODO: get this working again */
|
||||||
|
|
||||||
|
@import "mobile/alert";
|
||||||
@import "mobile/compose";
|
@import "mobile/compose";
|
||||||
@import "mobile/discourse";
|
@import "mobile/discourse";
|
||||||
@import "mobile/faqs";
|
@import "mobile/faqs";
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
.alert {
|
||||||
|
margin: 15px 0 5px 0;
|
||||||
|
}
|
|
@ -72,8 +72,6 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
blockquote {
|
blockquote {
|
||||||
|
|
Loading…
Reference in New Issue