-
Notifications
You must be signed in to change notification settings - Fork 1.2k
css: Remove overrides #22012
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
css: Remove overrides #22012
Conversation
This removes a bunch of overrides that no longer seem to serve a purpose. Tests will indicate otherwise. Signed-off-by: Freya Gustavsson <[email protected]>
@@ -843,7 +843,7 @@ export const StoragePage = ({ location, plot_state }) => { | |||
const page = get_page_from_location(location); | |||
|
|||
return ( | |||
<Page id="storage" className={"no-masthead-sidebar" + (client.in_anaconda_mode() ? " storage-anaconda" : "")}> | |||
<Page id="storage" className={"pf-m-no-sidebar" + (client.in_anaconda_mode() ? " storage-anaconda" : "")}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This added line is not executed by any test.
value={edited_real_name !== null ? edited_real_name : account.gecos} | ||
onKeyDown={(event) => { | ||
if (event.key == "Enter") { | ||
event.target.blur(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 4 added lines are not executed by any test.
onChange={(_event, value) => set_edited_real_name(value)} | ||
onBlur={() => change_real_name()} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These 2 added lines are not executed by any test.
</Popover> | ||
<span id="account-expiration-text">{expiration.account_text}</span> | ||
<Button | ||
onClick={() => account_expiration_dialog(account, expiration.account_date)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This added line is not executed by any test.
<Flex flex={{ default: "inlineFlex" }}> | ||
<span id="password-expiration-text">{expiration.password_text}</span> | ||
<Button | ||
onClick={() => password_expiration_dialog(account, expiration.password_days)} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This added line is not executed by any test.
This removes a bunch of overrides that no longer seem to serve a
purpose. Tests will indicate otherwise.
Signed-off-by: Freya Gustavsson [email protected]