2013-10-25 23:17:11 +08:00
|
|
|
@import "foundation/variables";
|
|
|
|
@import "foundation/mixins";
|
2013-09-06 03:37:07 +08:00
|
|
|
|
|
|
|
.popup-tip {
|
|
|
|
position: absolute;
|
|
|
|
display: block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
z-index: 101;
|
|
|
|
&.bad {
|
2014-08-06 21:31:13 +08:00
|
|
|
background: dark-light-diff($danger, $secondary, 20%, -40%);
|
2013-09-06 03:37:07 +08:00
|
|
|
color: white;
|
2014-08-06 21:31:13 +08:00
|
|
|
box-shadow: 1px 1px 5px rgba(0,0,0, .7);
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
|
|
|
&.hide, &.good {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-25 23:17:11 +08:00
|
|
|
.close {
|
2013-09-06 03:37:07 +08:00
|
|
|
float: right;
|
2014-05-06 13:50:51 +08:00
|
|
|
color: $primary;
|
2013-09-06 03:37:07 +08:00
|
|
|
opacity: 0.5;
|
2014-12-16 11:12:56 +08:00
|
|
|
font-size: 1.071em;
|
2014-08-02 03:11:55 +08:00
|
|
|
margin: 0 0 0 4px;
|
2013-10-25 23:17:11 +08:00
|
|
|
cursor: pointer;
|
2013-09-06 03:37:07 +08:00
|
|
|
}
|
2013-10-25 23:17:11 +08:00
|
|
|
.close:hover {
|
2013-09-06 03:37:07 +08:00
|
|
|
opacity: 1.0;
|
|
|
|
}
|
2014-03-08 21:25:03 +08:00
|
|
|
}
|