vagrant/website/public/ie-warning.js
oss-core-libraries-dashboard[bot] b0593b6a72
Some checks failed
/ sync-acceptance (push) Has been cancelled
[COMPLIANCE] Update Copyright and License Headers (Batch 7 of 7) (#13759)
Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com>
2025-12-23 11:11:29 +05:30

36 lines
954 B
JavaScript

/**
* Copyright IBM Corp. 2010, 2025
* SPDX-License-Identifier: BUSL-1.1
*/
!(function () {
'use strict'
const el = document.createElement('div');
el.innerHTML =
'<div class="ie-warning">' +
' <p class="ie-warning-description">' +
' Internet Explorer is no longer supported.' +
' <a href="https://support.hashicorp.com/hc/en-us/articles/4416485547795">' +
' Learn more.' +
' </a>' +
' </p>' +
'</div>' +
'<style>' +
' .ie-warning {' +
' background-color: #FCF0F2;' +
' border-bottom: 1px solid #FFD4D6;' +
' color: #BA2226;' +
' text-align: center;' +
' font-family: "Segoe UI", sans-serif;' +
' font-weight: bold;' +
' }' +
' .ie-warning-description {' +
' padding: 16px 0;' +
' margin: 0;' +
' color: #BA2226;' +
' }' +
'</style>';
document.body.insertBefore(el, document.body.childNodes[0]);
})();