mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 04:54:30 +08:00
This list is stored on publish and will also allow to revert to specific version as a draft that you can then publish. <img width="1087" height="496" alt="Screenshot 2026-06-17 at 13 39 41" src="https://github.com/user-attachments/assets/5266c07f-cb85-4e8b-9518-d852f77141d3" />
26 lines
544 B
SCSS
Vendored
26 lines
544 B
SCSS
Vendored
.workflows-versions {
|
|
&__author {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: var(--space-1);
|
|
}
|
|
|
|
&__badge {
|
|
display: inline-block;
|
|
margin-inline-start: var(--space-1);
|
|
padding: 0 var(--space-1);
|
|
border-radius: var(--d-border-radius);
|
|
font-size: var(--font-down-2);
|
|
line-height: var(--line-height-large);
|
|
|
|
&.--current {
|
|
background: var(--primary-low);
|
|
color: var(--primary-medium);
|
|
}
|
|
|
|
&.--live {
|
|
background: var(--success-low);
|
|
color: var(--success);
|
|
}
|
|
}
|
|
}
|