mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08:00
5f846531a5
Prepends variables.scss and mixins.scss globally for all assets. With one notable exception, theme fields, which will be addressed in a separate PR.
27 lines
434 B
SCSS
27 lines
434 B
SCSS
.popup-tip {
|
|
position: absolute;
|
|
display: block;
|
|
padding: 5px 10px;
|
|
z-index: z("tooltip");
|
|
&.bad {
|
|
background: var(--danger-medium);
|
|
color: white;
|
|
box-shadow: shadow("dropdown");
|
|
}
|
|
&.hide,
|
|
&.good {
|
|
display: none;
|
|
}
|
|
.close {
|
|
float: right;
|
|
color: var(--primary);
|
|
opacity: 0.5;
|
|
font-size: $font-0;
|
|
margin: 0 0 0 4px;
|
|
cursor: pointer;
|
|
}
|
|
.close:hover {
|
|
opacity: 1;
|
|
}
|
|
}
|