Skip to content

Commit

Permalink
[5.0] Remove IE 11 warning message due to EOL (#39018)
Browse files Browse the repository at this point in the history
* Remove IE message for < IE11 due to EOL

* Update joomla.ini

* Update joomla.ini
  • Loading branch information
bembelimen authored Oct 22, 2022
1 parent 847403f commit 1d31c31
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 15 deletions.
1 change: 1 addition & 0 deletions administrator/language/en-GB/joomla.ini
Original file line number Diff line number Diff line change
Expand Up @@ -692,6 +692,7 @@ JGLOBAL_VOTES="Votes"
JGLOBAL_VOTES_ASC="Votes ascending"
JGLOBAL_VOTES_DESC="Votes descending"
JGLOBAL_WARNCOOKIES="Warning! Cookies must be enabled to access the Administrator Backend."
; @deprecated 5.0 will be removed in 6.0
JGLOBAL_WARNIE="Warning! Internet Explorer should not be used for proper operation of the Administrator Backend."
JGLOBAL_WARNJAVASCRIPT="Warning! JavaScript must be enabled for proper operation of the Administrator Backend."
JGLOBAL_WIDTH="Width"
Expand Down
3 changes: 0 additions & 3 deletions administrator/templates/atum/login.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@
<?php echo Text::_('JGLOBAL_WARNJAVASCRIPT'); ?>
</div>
</noscript>
<div class="ie11 alert alert-warning" role="alert">
<?php echo Text::_('JGLOBAL_WARNIE'); ?>
</div>

<header id="header" class="header d-flex">
<div class="header-title d-flex">
Expand Down
1 change: 1 addition & 0 deletions api/language/en-GB/joomla.ini
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,7 @@ JGLOBAL_VOTES="Votes"
JGLOBAL_VOTES_ASC="Votes ascending"
JGLOBAL_VOTES_DESC="Votes descending"
JGLOBAL_WARNCOOKIES="Warning! Cookies must be enabled to access the Administrator Backend."
; @deprecated 5.0 will be removed in 6.0
JGLOBAL_WARNIE="Warning! Internet Explorer should not be used for proper operation of the Administrator Backend."
JGLOBAL_WARNJAVASCRIPT="Warning! JavaScript must be enabled for proper operation of the Administrator Backend."
JGLOBAL_WIDTH="Width"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -256,18 +256,6 @@ label {
}
}

// Detect IE 10+ and display alert
.ie11 {
display: none;
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
.ie11 {
display: block;
}
}

.login_message {
margin: 1rem 1rem 0;
}

0 comments on commit 1d31c31

Please sign in to comment.