Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

More pre-merge cleanup #124

Merged
merged 25 commits into from
May 12, 2020
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
1e45392
Make the column slug what it will be in core.
pbiron May 11, 2020
c0b6832
Make the plugin list table view slugs what they will be in core.
pbiron May 11, 2020
47a0d92
Make the code for handling enable/disable links closer to what it wil…
pbiron May 11, 2020
94530b9
Make the code for handling bulk actions closer to what it will be in …
pbiron May 11, 2020
d73e2e4
Make the code for outputting admin notices closer to what it will be …
pbiron May 11, 2020
8c3d8dc
Make the code for preparing themes for JS closer to what it will be i…
pbiron May 11, 2020
bc3fb0c
Make the code for adding site health info closer to what it will be i…
pbiron May 11, 2020
117b0b2
Make the email filter names what they will be in core.
pbiron May 11, 2020
b94d11f
Change the column slug in the JS click handler.
pbiron May 11, 2020
320d621
Fix typo in in CSS selector.
pbiron May 11, 2020
ddc6ee4
Merge branch 'master' into fix/more-pre-merge-cleanp.
pbiron May 11, 2020
0db3ab3
Use the new column and list table view slugs in the JS.
pbiron May 11, 2020
ce3b746
Make the property names for localized strings for the JS what they wi…
pbiron May 11, 2020
2cc3b83
Make the check for whether a specific plugin/theme should be auto-upd…
pbiron May 11, 2020
debdd94
Avoid nested ternary when adding the autoupdate link when preparing t…
pbiron May 11, 2020
35bc109
Bug fix: when Ajax succeeds, update the @href on the link as well as …
pbiron May 11, 2020
077ed51
Prettier format the JS.
pbiron May 11, 2020
3e7e5fe
Use em instead of px for the width of the auto-update column.
pbiron May 12, 2020
a17ffdf
When constructing the nonce_urls for enable/disable links, make the $…
pbiron May 12, 2020
4a5334f
Be consistent in the variable name used when retrieving the site opti…
pbiron May 12, 2020
deb3d4c
Mostly revertd https://github.com/WordPress/wp-autoupdates/pull/124/c…
pbiron May 12, 2020
e19bf29
Simplify the display of Ajax errors.
pbiron May 12, 2020
750d36e
Handle an edge case in Ajax, when WP returns "0" in the response for …
pbiron May 12, 2020
e9c362d
No longer need this CSS rule for the error div.
pbiron May 12, 2020
3fd9db3
Add correct CSS selector so the dashicon animates on the non-multisit…
pbiron May 12, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions css/wp-autoupdates.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
.dashicons-update.spin {
animation: rotation 2s infinite linear;
}

.auto-updates-error {
display: inline-block;
/* in core, this rule will go with similar rules in wp-admin/css/list-tables.css */
.plugins .column-auto-updates {
min-width: 14.2em;
}

#autoupdates_column {
min-width: 200px;
/* in core, this rule will go with similar rules in wp-admin/css/common.css */
.plugins .column-auto-updates .dashicons-update.spin {
animation: rotation 2s infinite linear;
}

/* in core, this rule will go with the equivalent for ".theme-overlay .theme-author a" in wp-admin/css/themes.css */
.theme-overlay .theme-autoupdate a {
text-decoration: none;
}
Loading