mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
971 B
52 lines
971 B
// |
|
// Alerts |
|
// -------------------------------------------------- |
|
|
|
.alert { |
|
position: fixed; |
|
right: 15px; |
|
left: 15px; |
|
bottom: $bar-tab-height + 15px; |
|
padding: 15px; |
|
color: #fff; |
|
border-radius: 3px; |
|
z-index: 10; |
|
@include transition(opacity); |
|
@include transition-duration(.2s); |
|
@include transition-timing-function(linear); |
|
|
|
.close { |
|
position: relative; |
|
top: -2px; |
|
float: right; |
|
color: inherit; |
|
cursor: pointer; |
|
@include transition(opacity); |
|
@include transition-duration(.2s); |
|
@include transition-timing-function(linear); |
|
|
|
&:active { |
|
opacity: .6; |
|
} |
|
} |
|
|
|
&.dismiss { |
|
opacity: 0; |
|
} |
|
} |
|
|
|
// Positive alert (Default color is green) |
|
.alert-positive { |
|
background-color: transparentize($positive-color, .03); |
|
} |
|
|
|
// Negative alert (Default color is red) |
|
.alert-negative { |
|
background-color: transparentize($negative-color, .03); |
|
} |
|
|
|
// Inline alert |
|
.alert-inline { |
|
position: static; |
|
margin: 15px; |
|
}
|
|
|