mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 08:42:09 +08:00
Fixing: <img width="441" height="180" alt="CleanShot 2025-08-19 at 14 11 22" src="https://github.com/user-attachments/assets/366b1b47-4862-4605-910b-72e9861f28e5" /> The used `height` param was A) too low, and B) set in px so not responsive for different font-size use. By replacing it with a slightly smarter calculation, the one-line toasty should be improved.
119 lines
2 KiB
SCSS
Vendored
119 lines
2 KiB
SCSS
Vendored
.fk-d-default-toast {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
padding: 0.5rem;
|
|
|
|
&__close-container {
|
|
width: calc(40px - 0.5rem);
|
|
height: calc(1em + (2 * 0.65em));
|
|
}
|
|
|
|
&__icon-container {
|
|
flex: 1 0 auto;
|
|
display: flex;
|
|
width: calc(40px - 0.5rem);
|
|
height: calc(1em + (2 * 0.65em));
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
&.alert-success {
|
|
background-color: var(--success-low);
|
|
color: var(--primary);
|
|
}
|
|
|
|
&.alert-error {
|
|
background-color: var(--danger-low);
|
|
color: var(--primary);
|
|
}
|
|
|
|
&.alert-warning {
|
|
background-color: var(--highlight-bg);
|
|
color: var(--primary);
|
|
}
|
|
|
|
&.alert-info {
|
|
background-color: var(--tertiary-low);
|
|
color: var(--primary);
|
|
|
|
&.clickable {
|
|
color: var(--tertiary);
|
|
z-index: z("base");
|
|
}
|
|
}
|
|
|
|
.-success & {
|
|
.d-icon {
|
|
color: var(--success);
|
|
}
|
|
}
|
|
|
|
.-error & {
|
|
.d-icon {
|
|
color: var(--danger);
|
|
}
|
|
}
|
|
|
|
.-warning & {
|
|
.d-icon {
|
|
color: var(--highlight);
|
|
}
|
|
}
|
|
|
|
.-info & {
|
|
.d-icon {
|
|
color: var(--tertiary);
|
|
}
|
|
}
|
|
}
|
|
|
|
&__main-container {
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
min-height: calc(1em + (2 * 0.65em));
|
|
}
|
|
|
|
&__progress-bar {
|
|
width: 100%;
|
|
height: 5px;
|
|
top: 0;
|
|
left: 0;
|
|
position: absolute;
|
|
background-color: var(--success);
|
|
transform-origin: 0 0;
|
|
}
|
|
|
|
.fk-d-default-toast:has(&__progress-bar) {
|
|
padding-top: 15px;
|
|
}
|
|
|
|
&__texts {
|
|
min-height: inherit;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&__actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding-top: 1rem;
|
|
margin-bottom: -0.5rem;
|
|
|
|
.btn {
|
|
margin-right: 0.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
}
|
|
|
|
&__title {
|
|
display: flex;
|
|
font-weight: 700;
|
|
}
|
|
|
|
&__message {
|
|
display: flex;
|
|
color: var(--primary-high);
|
|
}
|
|
}
|