discourse/app/assets/stylesheets/common/input_tip.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
496 B
SCSS
Raw Normal View History

@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: z("tooltip");
2013-09-06 03:37:07 +08:00
&.bad {
background: var(--danger-medium);
2013-09-06 03:37:07 +08:00
color: white;
box-shadow: shadow("dropdown");
2013-09-06 03:37:07 +08:00
}
&.hide,
&.good {
2013-09-06 03:37:07 +08:00
display: none;
}
.close {
2013-09-06 03:37:07 +08:00
float: right;
color: var(--primary);
2013-09-06 03:37:07 +08:00
opacity: 0.5;
2018-01-13 06:27:38 +08:00
font-size: $font-0;
margin: 0 0 0 4px;
cursor: pointer;
2013-09-06 03:37:07 +08:00
}
.close:hover {
opacity: 1;
2013-09-06 03:37:07 +08:00
}
}