Files
frontend-app-authoring/src/library-authoring/generic/status-widget/StatusWidget.scss
Jillian 2f6e510b09 Display Container Publish status and confirm before publish (#2186)
Updates the Container sidebar to display:

* A confirmation step before publishing the container.
* Text + a full hierarchy to better demonstrate what will be published when the container is published.
2025-08-20 13:22:30 -05:00

27 lines
485 B
SCSS

%draft-status {
background-color: #FDF3E9;
border-color: #F4B57B !important;
color: #00262B;
}
%published-status {
background-color: var(--pgn-color-info-100);
border-color: var(--pgn-color-info-400) !important;
color: var(--pgn-color-primary-500);
}
.status-widget {
border-top: 4px solid;
border-left: none;
border-right: none;
border-bottom: none;
&.draft-status {
@extend %draft-status;
}
&.published-status {
@extend %published-status;
}
}