Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
jenny-s51 committed Oct 10, 2024
1 parent 90b231e commit df523be
Showing 1 changed file with 14 additions and 11 deletions.
25 changes: 14 additions & 11 deletions clients/ui/frontend/src/style/MUI-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
padding-bottom: var(--mui-spacing-16px);
}

.pf-v6-c-form-control> :is(input, select, textarea) {
.pf-v6-c-form-control > :is(input, select, textarea) {
padding-block-start: 0px;
padding-block-end: 0px;
}
Expand Down Expand Up @@ -259,7 +259,7 @@
box-sizing: border-box;
}

.pf-v6-c-form-control> :is(input, select, textarea):focus {
.pf-v6-c-form-control > :is(input, select, textarea):focus {
--pf-v6-c-form-control--OutlineOffset: none;
outline: none;
}
Expand Down Expand Up @@ -292,7 +292,7 @@
border-color: black;
}

.form-fieldset-wrapper:hover span.pf-v6-c-form-control.pf-m-disabled~.form-fieldset {
.form-fieldset-wrapper:hover span.pf-v6-c-form-control.pf-m-disabled ~ .form-fieldset {
border-color: rgba(0, 0, 0, 0.23);
}

Expand Down Expand Up @@ -380,15 +380,14 @@
.tr-fieldset-wrapper .pf-v6-c-form-control,
.toolbar-fieldset-wrapper .pf-v6-c-form-control,
.form-fieldset-wrapper .pf-v6-c-form-control {

&::before,
&::after {
content: revert;
}
}

.pf-v6-c-form__group .pf-v6-c-form-control:focus-within+.pf-v6-c-form__label,
.pf-v6-c-form__group .pf-v6-c-form-control:not(:placeholder-shown)+.pf-v6-c-form__label {
.pf-v6-c-form__group .pf-v6-c-form-control:focus-within + .pf-v6-c-form__label,
.pf-v6-c-form__group .pf-v6-c-form-control:not(:placeholder-shown) + .pf-v6-c-form__label {
color: var(--mui-palette-primary-main);
}

Expand Down Expand Up @@ -428,8 +427,12 @@
--pf-v6-c-menu-toggle--hover--BorderColor: var(--mui-menu-toggle--hover--BorderColor);
--pf-v6-c-menu-toggle--BorderColor: var(--mui-menu-toggle--BorderColor);
--pf-v6-c-menu-toggle--hover--BackgroundColor: var(--pf-t--global--background--color--action--plain--hover);
--pf-v6-c-menu-toggle--m-split-button--m-action--m-primary--expanded--child--BackgroundColor: var(--pf-t--global--color--brand--default);
--pf-v6-c-menu-toggle--m-split-button--m-action--m-primary--child--BorderInlineStartColor: var(--mui-palette-primary-dark);
--pf-v6-c-menu-toggle--m-split-button--m-action--m-primary--expanded--child--BackgroundColor: var(
--pf-t--global--color--brand--default
);
--pf-v6-c-menu-toggle--m-split-button--m-action--m-primary--child--BorderInlineStartColor: var(
--mui-palette-primary-dark
);

text-transform: var(--mui-text-transform);
font-weight: var(--mui-button-font-weight);
Expand Down Expand Up @@ -524,13 +527,13 @@
}

/* When radio is checked */
.pf-v6-c-radio__input:checked+.pf-v6-c-radio__label::before {
.pf-v6-c-radio__input:checked + .pf-v6-c-radio__label::before {
background: var(--mui-palette-common-white);
border-color: var(--mui-palette-primary-main);
}

/* Inner dot for checked state */
.pf-v6-c-radio__input:checked+.pf-v6-c-radio__label::after {
.pf-v6-c-radio__input:checked + .pf-v6-c-radio__label::after {
content: "";
position: absolute;
left: 5px;
Expand Down Expand Up @@ -723,4 +726,4 @@

.pf-v6-c-pagination__page-menu::before {
content: "Rows per page:";
}
}

0 comments on commit df523be

Please sign in to comment.