diff --git a/CHANGELOG.md b/CHANGELOG.md index 56f0a46394..f73b26b43f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ ### HEAD +* Change the outdated browser prompt classname to `browserupgrade` + ([#1608](https://github.com/h5bp/html5-boilerplate/issues/1608)). * Update to Normalize.css 3.0.2. ([#1050](https://github.com/h5bp/html5-boilerplate/issues/1050)). * Update `apple-touch-icon-precomposed.png` and the _"Apple touch diff --git a/dist/css/main.css b/dist/css/main.css index 731d163bb2..3f38a81c5f 100644 --- a/dist/css/main.css +++ b/dist/css/main.css @@ -77,10 +77,10 @@ textarea { } /* ========================================================================== - Browse Happy prompt + Browser Upgrade Prompt ========================================================================== */ -.browsehappy { +.browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; diff --git a/dist/doc/html.md b/dist/doc/html.md index d2b61c9e17..8f962c7d9c 100644 --- a/dist/doc/html.md +++ b/dist/doc/html.md @@ -129,7 +129,7 @@ The central part of the boilerplate template is pretty much empty. This is intentional, in order to make the boilerplate suitable for both web page and web app development. -### BrowseHappy Prompt +### Browser Upgrade Prompt The main content area of the boilerplate includes a prompt to install an up to date browser for users of IE 6/7. If you intended to support IE 6/7, then you diff --git a/dist/index.html b/dist/index.html index 1c99d3513f..57e2b8c119 100644 --- a/dist/index.html +++ b/dist/index.html @@ -15,7 +15,7 @@ diff --git a/src/css/main.css b/src/css/main.css index f1983e65a3..8604952aee 100644 --- a/src/css/main.css +++ b/src/css/main.css @@ -75,10 +75,10 @@ textarea { } /* ========================================================================== - Browse Happy prompt + Browser Upgrade Prompt ========================================================================== */ -.browsehappy { +.browserupgrade { margin: 0.2em 0; background: #ccc; color: #000; diff --git a/src/doc/html.md b/src/doc/html.md index d2b61c9e17..8f962c7d9c 100644 --- a/src/doc/html.md +++ b/src/doc/html.md @@ -129,7 +129,7 @@ The central part of the boilerplate template is pretty much empty. This is intentional, in order to make the boilerplate suitable for both web page and web app development. -### BrowseHappy Prompt +### Browser Upgrade Prompt The main content area of the boilerplate includes a prompt to install an up to date browser for users of IE 6/7. If you intended to support IE 6/7, then you diff --git a/src/index.html b/src/index.html index f5f1e9998a..2b472d5672 100644 --- a/src/index.html +++ b/src/index.html @@ -15,7 +15,7 @@