Skip to content

Commit

Permalink
Merge pull request #6343 from gucal/issue-6222
Browse files Browse the repository at this point in the history
Fix #6222 - ToggleButton: Checkboxes showing before button
  • Loading branch information
nitrogenous authored Apr 9, 2024
2 parents 8b82f08 + 601fb6b commit 2428b9e
Show file tree
Hide file tree
Showing 47 changed files with 7,076 additions and 501 deletions.
105 changes: 104 additions & 1 deletion public/themes/arya-blue/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,10 @@
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
padding-left: 0;
border-left: 0 none;
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
padding-right: 0;
border-left: 0 none;
}
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
Expand Down Expand Up @@ -4548,6 +4548,109 @@
.p-splitter .p-splitter-gutter-resizing {
background: #383838;
}
.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 {
width: 100%;
padding-left: 1rem;
}
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
flex: 0 0 auto;
width: 2px;
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-scrollpanel .p-scrollpanel-bar {
background: #383838;
border: 0 none;
Expand Down
105 changes: 104 additions & 1 deletion public/themes/arya-green/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,10 @@
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
padding-left: 0;
border-left: 0 none;
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
padding-right: 0;
border-left: 0 none;
}
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
Expand Down Expand Up @@ -4548,6 +4548,109 @@
.p-splitter .p-splitter-gutter-resizing {
background: #383838;
}
.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 {
width: 100%;
padding-left: 1rem;
}
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
flex: 0 0 auto;
width: 2px;
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-scrollpanel .p-scrollpanel-bar {
background: #383838;
border: 0 none;
Expand Down
105 changes: 104 additions & 1 deletion public/themes/arya-orange/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -599,10 +599,10 @@
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:first-child {
padding-left: 0;
border-left: 0 none;
}
.p-datepicker.p-datepicker-multiple-month .p-datepicker-group:last-child {
padding-right: 0;
border-left: 0 none;
}
.p-datepicker:not(.p-disabled) table td span:not(.p-highlight):not(.p-disabled):hover {
background: rgba(255, 255, 255, 0.03);
Expand Down Expand Up @@ -4548,6 +4548,109 @@
.p-splitter .p-splitter-gutter-resizing {
background: #383838;
}
.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 {
width: 100%;
padding-left: 1rem;
}
.p-stepper.p-stepper-vertical .p-stepper-panel .p-stepper-separator {
flex: 0 0 auto;
width: 2px;
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-scrollpanel .p-scrollpanel-bar {
background: #383838;
border: 0 none;
Expand Down
Loading

0 comments on commit 2428b9e

Please sign in to comment.