Refactor #5266 - Theme updates
parent
62e6aaeb28
commit
37c423b0c2
|
@ -6189,6 +6189,174 @@
|
|||
background: #383838;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(100, 181, 246, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #64B5F6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1e1e1e;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #383838;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #64B5F6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #383838;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(129, 199, 132, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #81C784;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1e1e1e;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #383838;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #81C784;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #383838;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(255, 213, 79, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #FFD54F;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1e1e1e;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #383838;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #FFD54F;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #383838;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(186, 104, 200, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #BA68C8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1e1e1e;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #383838;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1e1e1e;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #BA68C8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(251, 191, 36, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #fbbf24;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #fbbf24;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #fbbf24;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #fbbf24;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(96, 165, 250, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #60a5fa;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #60a5fa;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #60a5fa;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #60a5fa;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(34, 211, 238, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #22d3ee;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #22d3ee;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #22d3ee;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #22d3ee;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(52, 211, 153, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #34d399;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #34d399;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #34d399;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #34d399;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(129, 140, 248, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #818cf8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #818cf8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #818cf8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #818cf8;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(163, 230, 53, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #a3e635;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #a3e635;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #a3e635;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #a3e635;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(250, 250, 250, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #fafafa;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #fafafa;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(244, 114, 182, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #f472b6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #f472b6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #f472b6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #f472b6;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(167, 139, 250, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #a78bfa;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #a78bfa;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #a78bfa;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #a78bfa;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6257,6 +6257,174 @@
|
|||
background: #3f3f46;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #18181b;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a1a1aa;
|
||||
border: 1px solid #3f3f46;
|
||||
border-width: 2px;
|
||||
background: #18181b;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #ffffff;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(45, 212, 191, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #2dd4bf;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #18181b;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f3f46;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #18181b;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #2dd4bf;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11570,6 +11738,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #18181b;
|
||||
color: #2dd4bf;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #2dd4bf;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #fffbeb;
|
||||
color: #b45309;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #f59e0b;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #f59e0b;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #f59e0b;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #f59e0b;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #EFF6FF;
|
||||
color: #1D4ED8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #3B82F6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #3B82F6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #3B82F6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #3B82F6;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ecfeff;
|
||||
color: #0e7490;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #06b6d4;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #06b6d4;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #06b6d4;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #06b6d4;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ecfdf5;
|
||||
color: #047857;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #10b981;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #10b981;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #10b981;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #10b981;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #EEF2FF;
|
||||
color: #4338CA;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #6366F1;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #6366F1;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #6366F1;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #6366F1;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #f7fee7;
|
||||
color: #4d7c0f;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #84cc16;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #84cc16;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #84cc16;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #84cc16;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6267,6 +6267,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #020617;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #020617;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #020617;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11576,6 +11744,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #020617;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #020617;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #fdf2f8;
|
||||
color: #be185d;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #ec4899;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #ec4899;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #ec4899;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #ec4899;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #F5F3FF;
|
||||
color: #6D28D9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #8B5CF6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #8B5CF6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #8B5CF6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #8B5CF6;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6259,6 +6259,174 @@
|
|||
background: #e2e8f0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #64748b;
|
||||
border: 1px solid #e2e8f0;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #334155;
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #f0fdfa;
|
||||
color: #0f766e;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 1px solid var(--p-focus-ring-color);
|
||||
outline-offset: 2px;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #14b8a6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.875rem 1.125rem 1.125rem 1.125rem;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e2e8f0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #334155;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #14b8a6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11568,6 +11736,14 @@
|
|||
border-radius: 6px;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ffffff;
|
||||
color: #14b8a6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #14b8a6;
|
||||
}
|
||||
|
||||
.p-steps .p-steps-item .p-menuitem-link .p-steps-number {
|
||||
border-width: 2px;
|
||||
transition: background-color 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, outline-color 0.2s;
|
||||
|
|
|
@ -6250,6 +6250,174 @@
|
|||
background: #3f4b5b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e3f3fe;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.15s;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 4px;
|
||||
transition: color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e3f3fe;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #8dd0ff;
|
||||
color: #151515;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e3f3fe;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #8dd0ff;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #2a323d;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f4b5b;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #8dd0ff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6250,6 +6250,174 @@
|
|||
background: #3f4b5b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #f0e6f5;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.15s;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid #3f4b5b;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 4px;
|
||||
transition: color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: color 0.15s, box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #f0e6f5;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #c298d8;
|
||||
color: #151515;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #f0e6f5;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #c298d8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #2a323d;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3f4b5b;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #2a323d;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #c298d8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6250,6 +6250,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.15s;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 4px;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #007bff;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #007bff;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #007bff;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6250,6 +6250,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.15s;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #212529;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 4px;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #883cae;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(136, 60, 174, 0.5);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #883cae;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #883cae;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6164,6 +6164,168 @@
|
|||
background: #edebe9;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 1px #605e5c;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 2px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #323130;
|
||||
border: 1px solid #f3f2f1;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #605e5c;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 1px #605e5c;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #edebe9;
|
||||
color: #323130;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #323130;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: inset 0 0 0 1px #605e5c;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #323130;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #a19f9d;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #323130;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(251, 191, 36, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(251, 191, 36, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #fbbf24;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #fbbf24;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #fbbf24;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #fbbf24;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(96, 165, 250, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #60a5fa;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #60a5fa;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #60a5fa;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #60a5fa;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(34, 211, 238, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #22d3ee;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #22d3ee;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #22d3ee;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #22d3ee;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(52, 211, 153, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(52, 211, 153, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #34d399;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #34d399;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #34d399;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #34d399;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(129, 140, 248, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(129, 140, 248, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #818cf8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #818cf8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #818cf8;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #818cf8;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(244, 114, 182, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(244, 114, 182, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #f472b6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #f472b6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #f472b6;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #f472b6;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(167, 139, 250, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(167, 139, 250, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #a78bfa;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #a78bfa;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #a78bfa;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #a78bfa;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #424b57;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(45, 212, 191, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem rgba(45, 212, 191, 0.2);
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #2dd4bf;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2937;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #424b57;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2937;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #2dd4bf;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10601,4 +10769,13 @@
|
|||
background: #2dd4bf;
|
||||
color: #030712;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
border-style: solid;
|
||||
border-color: #424b57;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background: #2dd4bf;
|
||||
color: #030712;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fef08a;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fef08a;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #fffbeb;
|
||||
color: #b45309;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fef08a;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #f59e0b;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #f59e0b;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #f59e0b;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #f59e0b;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #EFF6FF;
|
||||
color: #1D4ED8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #BFDBFE;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #3B82F6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #3B82F6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #3B82F6;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #3B82F6;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a5f3fc;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a5f3fc;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ecfeff;
|
||||
color: #0e7490;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a5f3fc;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #06b6d4;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #06b6d4;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #06b6d4;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #06b6d4;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a7f3d0;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a7f3d0;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #F0FDFA;
|
||||
color: #047857;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a7f3d0;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #10b981;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #10b981;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #10b981;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #10b981;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C7D2FE;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C7D2FE;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #EEF2FF;
|
||||
color: #4338CA;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C7D2FE;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #6366F1;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #6366F1;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #6366F1;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #6366F1;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fbcfe8;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fbcfe8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #fdf2f8;
|
||||
color: #be185d;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #fbcfe8;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #ec4899;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #ec4899;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #ec4899;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ec4899;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #F5F3FF;
|
||||
color: #6D28D9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #DDD6FE;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #8B5CF6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #8B5CF6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #8B5CF6;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #8B5CF6;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6232,6 +6232,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #99f6e4;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4b5563;
|
||||
border: 1px solid #f3f4f6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6b7280;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #99f6e4;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #f0fdfa;
|
||||
color: #0f766e;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #99f6e4;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #14b8a6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4b5563;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #14b8a6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -10593,4 +10761,9 @@
|
|||
background: #14b8a6;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #14b8a6;
|
||||
color: #ffffff;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #4b4b4b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #191919;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-width: 2px;
|
||||
background: #191919;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #888888;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #FFE082;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #FFE082;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #323232;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #191919;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #FFE082;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #4b4b4b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #191919;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-width: 2px;
|
||||
background: #191919;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #888888;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #81D4FA;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #81D4FA;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #323232;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #191919;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #81D4FA;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #4b4b4b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #191919;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-width: 2px;
|
||||
background: #191919;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #888888;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #C5E1A5;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #C5E1A5;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #323232;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #191919;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #C5E1A5;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #4b4b4b;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #191919;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #dedede;
|
||||
border: 1px solid #191919;
|
||||
border-width: 2px;
|
||||
background: #191919;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #888888;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #F48FB1;
|
||||
color: #212529;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem white;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #F48FB1;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #323232;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #191919;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #323232;
|
||||
color: #dedede;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #F48FB1;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6263,6 +6263,174 @@
|
|||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #CE93D8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: transparent;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: transparent;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #CE93D8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11990,6 +12158,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #CE93D8;
|
||||
color: #121212;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6263,6 +6263,174 @@
|
|||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(159, 168, 218, 0.16);
|
||||
color: #9FA8DA;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #9FA8DA;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: transparent;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: transparent;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #9FA8DA;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11990,6 +12158,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #9FA8DA;
|
||||
color: #121212;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6262,6 +6262,174 @@
|
|||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(103, 58, 183, 0.12);
|
||||
color: #673AB7;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #673AB7;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #673AB7;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11989,6 +12157,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #673AB7;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6262,6 +6262,174 @@
|
|||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(63, 81, 181, 0.12);
|
||||
color: #3F51B5;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #3F51B5;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #3F51B5;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11989,6 +12157,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #3F51B5;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6263,6 +6263,174 @@
|
|||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(206, 147, 216, 0.16);
|
||||
color: #CE93D8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #CE93D8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: transparent;
|
||||
padding: 0.75rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: transparent;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #CE93D8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11990,6 +12158,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #CE93D8;
|
||||
color: #121212;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6263,6 +6263,174 @@
|
|||
background: rgba(255, 255, 255, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(159, 168, 218, 0.16);
|
||||
color: #9FA8DA;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #9FA8DA;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: transparent;
|
||||
padding: 0.75rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: transparent;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #9FA8DA;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11990,6 +12158,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #9FA8DA;
|
||||
color: #121212;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6262,6 +6262,174 @@
|
|||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(103, 58, 183, 0.12);
|
||||
color: #673AB7;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #673AB7;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.75rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #673AB7;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11989,6 +12157,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #673AB7;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6262,6 +6262,174 @@
|
|||
background: rgba(0, 0, 0, 0.12);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border: 1px solid transparent;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
font-weight: 500;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(63, 81, 181, 0.12);
|
||||
color: #3F51B5;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #3F51B5;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.75rem;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #bdbdbd;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #3F51B5;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
@ -11989,6 +12157,25 @@
|
|||
transform: scale(1);
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
background-color: #9e9d9e;
|
||||
color: #ffffff;
|
||||
font-size: 0.857rem;
|
||||
min-width: 1.714rem;
|
||||
height: 1.714rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-number {
|
||||
background-color: #3F51B5;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-action .p-stepper-title {
|
||||
font-weight: 600;
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
margin-inline-start: 1.75rem;
|
||||
}
|
||||
|
||||
.p-steps {
|
||||
padding: 1rem 0;
|
||||
}
|
||||
|
|
|
@ -6217,6 +6217,174 @@
|
|||
background: #c2c7d1;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 4px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #4C566A;
|
||||
border: 1px solid #ffffff;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #81A1C1;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #D8DEE9;
|
||||
color: #2E3440;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #4C566A;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #C0D0E0;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #5E81AC;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #4C566A;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #E5E9F0;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #4C566A;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #5E81AC;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #90c9f5;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 1px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #343a3f;
|
||||
border: 1px solid #dde1e6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #697077;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #90c9f5;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #44A1D9;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #343a3f;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #90c9f5;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #1174c0;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.5rem;
|
||||
color: #343a3f;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #343a3f;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #1174c0;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6164,6 +6164,174 @@
|
|||
background: #d8dae2;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #333333;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #848484;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #e02365;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #c8c8c8;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #d8dae2;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #333333;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #848484;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #007ad9;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #c8c8c8;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #d8dae2;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #333333;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #848484;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #41b883;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #c2e9d8;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #41b883;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #c8c8c8;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #41b883;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6176,6 +6176,174 @@
|
|||
background: #d8dae2;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #333333;
|
||||
border: 1px solid #dee2e6;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #848484;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #007ad9;
|
||||
color: #ffffff;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #8dcdff;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #c8c8c8;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #333333;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #007ad9;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6164,6 +6164,174 @@
|
|||
background: #dadada;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
border-radius: 2px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #a6a6a6;
|
||||
border: 1px solid #c8c8c8;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #a6a6a6;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #AFD3C8;
|
||||
color: #385048;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #666666;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #e4e9ec;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #7B95A3;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 0.571rem 1rem;
|
||||
color: #666666;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #c8c8c8;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #666666;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #7B95A3;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a6d5fa;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #495057;
|
||||
border: 1px solid #e9ecef;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a6d5fa;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #E3F2FD;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #a6d5fa;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #2196F3;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #2196F3;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #b7e0b8;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #495057;
|
||||
border: 1px solid #e9ecef;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #b7e0b8;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #E8F5E9;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #b7e0b8;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #4CAF50;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #4CAF50;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #ffe69c;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #495057;
|
||||
border: 1px solid #e9ecef;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #ffe69c;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #FFF3E0;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #ffe69c;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #FFC107;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #FFC107;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #dee2e6;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #df9eea;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #495057;
|
||||
border: 1px solid #e9ecef;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #6c757d;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #df9eea;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #F3E5F5;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.2rem #df9eea;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #9C27B0;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dee2e6;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #495057;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #9C27B0;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6237,6 +6237,174 @@
|
|||
background: #3e4053;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e0d8fc;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e0d8fc;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(177, 157, 247, 0.16);
|
||||
color: #b19df7;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #e0d8fc;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #b19df7;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #282936;
|
||||
padding: 1.25rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #3e4053;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #282936;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #b19df7;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6237,6 +6237,174 @@
|
|||
background: #dfe7ef;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #c7bbfa;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #043d75;
|
||||
border: 1px solid #f6f9fc;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #708da9;
|
||||
font-weight: 700;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #c7bbfa;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #e2dcfc;
|
||||
color: #5a37f1;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #043d75;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #c7bbfa;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #7254f3;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #043d75;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #dfe7ef;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #043d75;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #7254f3;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6224,6 +6224,174 @@
|
|||
background: #e5e7eb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #6366F1;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: none;
|
||||
border-radius: 0.375rem;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #3f3f46;
|
||||
border: 1px solid #f4f4f5;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #71717A;
|
||||
font-weight: 600;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #6366F1;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #EEF2FF;
|
||||
color: #312E81;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #3f3f46;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #6366F1;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #4F46E5;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1.25rem;
|
||||
color: #3f3f46;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #e5e7eb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: none;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #3f3f46;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #4F46E5;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #304562;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(100, 181, 246, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #93cbf9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #64B5F6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2d40;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #304562;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #64B5F6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #304562;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(129, 199, 132, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #a7d8a9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #81C784;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2d40;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #304562;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #81C784;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #304562;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(255, 213, 79, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #ffe284;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #FFD54F;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2d40;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #304562;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #FFD54F;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6189,6 +6189,174 @@
|
|||
background: #304562;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.2s;
|
||||
border-radius: 3px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 0 none;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(186, 104, 200, 0.16);
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #cf95d9;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #BA68C8;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #1f2d40;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #304562;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.2s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #1f2d40;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #BA68C8;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6270,6 +6270,174 @@
|
|||
background: #263238;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #9eade6;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.3s;
|
||||
border-radius: 6px;
|
||||
background: transparent;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
border: 2px solid #263238;
|
||||
border-width: 2px;
|
||||
background: transparent;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
font-weight: 600;
|
||||
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #9eade6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: rgba(158, 173, 230, 0.16);
|
||||
color: #9eade6;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 1px #9eade6;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #9eade6;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #161d21;
|
||||
padding: 1rem;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #263238;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #161d21;
|
||||
color: rgba(255, 255, 255, 0.87);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #9eade6;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
|
@ -6270,6 +6270,174 @@
|
|||
background: #ebebeb;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
position: relative;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.p-stepper-vertical .p-stepper-nav {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.p-stepper-header {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
align-items: center;
|
||||
}
|
||||
.p-stepper-header:last-of-type {
|
||||
flex: initial;
|
||||
}
|
||||
|
||||
.p-stepper-header .p-stepper-action {
|
||||
border: 0 none;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.p-stepper-header .p-stepper-action:focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #bbc7ee;
|
||||
}
|
||||
|
||||
.p-stepper.p-stepper-readonly .p-stepper-header {
|
||||
cursor: auto;
|
||||
}
|
||||
|
||||
.p-stepper-header.p-highlight .p-stepper-action {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.p-stepper-title {
|
||||
display: block;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.p-stepper-number {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.p-stepper-separator {
|
||||
flex: 1 1 0;
|
||||
}
|
||||
|
||||
.p-stepper .p-stepper-nav {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style-type: none;
|
||||
}
|
||||
.p-stepper .p-stepper-header {
|
||||
padding: 0.5rem;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action {
|
||||
transition: box-shadow 0.3s;
|
||||
border-radius: 6px;
|
||||
background: #ffffff;
|
||||
outline-color: transparent;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-number {
|
||||
color: #6c6c6c;
|
||||
border: 2px solid #ebebeb;
|
||||
border-width: 2px;
|
||||
background: #ffffff;
|
||||
min-width: 2rem;
|
||||
height: 2rem;
|
||||
line-height: 2rem;
|
||||
font-size: 1.143rem;
|
||||
border-radius: 50%;
|
||||
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action .p-stepper-title {
|
||||
margin-left: 0.5rem;
|
||||
color: #898989;
|
||||
font-weight: 600;
|
||||
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper .p-stepper-header .p-stepper-action:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #bbc7ee;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-number {
|
||||
background: #ced6f1;
|
||||
color: #585858;
|
||||
}
|
||||
.p-stepper .p-stepper-header.p-highlight .p-stepper-title {
|
||||
color: #6c6c6c;
|
||||
}
|
||||
.p-stepper .p-stepper-header:not(.p-disabled):focus-visible {
|
||||
outline: 0 none;
|
||||
outline-offset: 0;
|
||||
box-shadow: 0 0 0 0.1rem #bbc7ee;
|
||||
}
|
||||
.p-stepper .p-stepper-header:has(~ .p-highlight) .p-stepper-separator {
|
||||
background-color: #5472d4;
|
||||
}
|
||||
.p-stepper .p-stepper-panels {
|
||||
background: #ffffff;
|
||||
padding: 1rem;
|
||||
color: #6c6c6c;
|
||||
}
|
||||
.p-stepper .p-stepper-separator {
|
||||
background-color: #ebebeb;
|
||||
width: 100%;
|
||||
height: 2px;
|
||||
margin-inline-start: 1rem;
|
||||
transition: box-shadow 0.3s;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-toggleable-content {
|
||||
display: flex;
|
||||
flex: 1 1 auto;
|
||||
background: #ffffff;
|
||||
color: #6c6c6c;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel.p-stepper-panel-active {
|
||||
flex: 1 1 auto;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-header {
|
||||
flex: initial;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-content {
|
||||
padding-left: 1rem;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
|
||||
flex: 0 0 auto;
|
||||
width: 2px;
|
||||
min-height: 28px;
|
||||
height: auto;
|
||||
margin-inline-start: calc(1.75rem + 2px);
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:has(~ .p-stepper-panel-active) .p-stepper-separator {
|
||||
background-color: #5472d4;
|
||||
}
|
||||
.p-stepper.p-stepper-vertical .p-stepper-panel:last-of-type .p-stepper-content {
|
||||
padding-left: 3rem;
|
||||
}
|
||||
|
||||
.p-tabview-nav-container {
|
||||
position: relative;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue