mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
174d392e5a
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn` It's recommended to configure your editor to run prettier on file save.
30 lines
484 B
SCSS
30 lines
484 B
SCSS
@import "foundation/variables";
|
|
@import "foundation/mixins";
|
|
|
|
.popup-tip {
|
|
position: absolute;
|
|
display: block;
|
|
padding: 5px 10px;
|
|
z-index: z("tooltip");
|
|
&.bad {
|
|
background: $danger-medium;
|
|
color: white;
|
|
box-shadow: shadow("dropdown");
|
|
}
|
|
&.hide,
|
|
&.good {
|
|
display: none;
|
|
}
|
|
.close {
|
|
float: right;
|
|
color: $primary;
|
|
opacity: 0.5;
|
|
font-size: $font-0;
|
|
margin: 0 0 0 4px;
|
|
cursor: pointer;
|
|
}
|
|
.close:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|