Skip to content
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

Remove support for Internet Explorer 11 #11761

Merged
merged 5 commits into from
Jul 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion docs/development/frontend.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ of some pages, but the "new" version of others.
Browser Support
---------------

We aim to support all major browsers, including IE11. We also support one-back,
We aim to support all major browsers. We also support one-back,
and follow the ``defaults`` recommendation from ``browserslist``.

You can see the full list of supported browsers by running ``npx browserslist``
Expand Down
41 changes: 8 additions & 33 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"@babel/preset-env": "7.18.0",
"@babel/register": "7.17.7",
"@fortawesome/fontawesome-free": "5.13.0",
"@stimulus/polyfills": "1.1.1",
"babel-loader": "8.2.5",
"clipboard": "1.7.1",
"cookie": "0.4.0",
Expand Down
1 change: 0 additions & 1 deletion warehouse/static/js/warehouse/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import "@babel/polyfill";

// Import stimulus
import "@stimulus/polyfills";
import { Application } from "stimulus";
import { definitionsFromContext } from "stimulus/webpack-helpers";

Expand Down
15 changes: 0 additions & 15 deletions warehouse/static/sass/base/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,6 @@
// TABLES

table {
th,
td {
text-align: left; // Required for ie11 where it is centered by default
}

th[align="right"],
td[align="right"] {
text-align: right; // Override the above when explicitly set
}

th[align="center"],
td[align="center"] {
text-align: center; // Override the above when explicitly set
}

tbody th {
font-weight: normal;
}
Expand Down
2 changes: 1 addition & 1 deletion warehouse/static/sass/blocks/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
opacity: 0;
visibility: hidden;
display: flex;
flex-direction: column; // Required for ie11
align-items: center;
justify-content: center;
flex-grow: 1;
text-align: left;

Expand Down