Skip to content

Commit

Permalink
#26738 include in 23.10.24 LTS
Browse files Browse the repository at this point in the history
  • Loading branch information
erickgonzalez committed Nov 4, 2024
1 parent 30396d0 commit 125c179
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
&.p-button-outlined {
@extend #button-disabled-outlined;
}

&.p-button-text {
@extend #button-disabled-text;
}
}

// Severity for basic button
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,3 +212,8 @@
#button-disabled-outlined {
border: $field-border-size solid $color-palette-gray-300;
}

#button-disabled-text {
border: none;
background-color: transparent;
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ <h2 class="flex align-items-center gap-1 uppercase">
data-testId="tooltip-on-disabled"
tooltipPosition="bottom">
<button
class="p-button-sm p-button-text"
class="p-button-sm p-button-link"
[disabled]="!vm.isExperimentADraft || vm.disabledTooltipLabel"
(click)="changeTrafficProportion()"
data-testId="variant-weight"
Expand Down Expand Up @@ -87,7 +87,7 @@ <h2 class="flex align-items-center gap-1 uppercase">
data-testId="tooltip-on-disabled"
tooltipPosition="bottom">
<button
class="p-button-sm p-button-danger p-button-text"
class="p-button-sm p-button-text p-button-danger"
[disabled]="
variant.name === defaultVariantName ||
!vm.isExperimentADraft ||
Expand Down
1 change: 1 addition & 0 deletions dotCMS/hotfix_tracking.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,3 +171,4 @@ This maintenance release includes the following code fixes:
164. https://github.com/dotCMS/core/issues/26271 : [UI] Text in experiment data results needs be aligned #26271
165. https://github.com/dotCMS/core/issues/26399 : [UI] Change Experiment mod date display from simple date to date/time #26399
166. https://github.com/dotCMS/core/issues/26750 : [UI] Experiments reports - JS error when bayesianResult is null #26750
167. https://github.com/dotCMS/core/issues/26738 : [UI] Change button with new style in Variations #26738

0 comments on commit 125c179

Please sign in to comment.