diff options
| author | Brenton | 2013-07-15 16:00:51 -0700 |
|---|---|---|
| committer | Igor Minar | 2013-07-31 12:06:04 -0700 |
| commit | 2bc04d23fbc302e6dd52ab80a621aa264548d9e3 (patch) | |
| tree | ed559ec73c0aadd5702beae7ea339d678a574e41 /docs/src | |
| parent | 7f6da764e1fb7f1e0b12c74e7379bd3cd5f7907d (diff) | |
| download | angular.js-2bc04d23fbc302e6dd52ab80a621aa264548d9e3.tar.bz2 | |
docs(header): replace logo.png with logo.svg
The current logo looks awful on high-density displays. SVG is a
better choice because it can scale to any resolution without
increasing file size.
Amending #2775 to add support for IE 8 by falling back to existing PNG
with img.onerror
Using relative URLs as directed by @btford and @petebacondarwin.
(commit by Brenton Simpson - @appsforartists)
Closes #2874
Conflicts:
docs/src/templates/css/docs.css
docs/src/templates/index.html
Diffstat (limited to 'docs/src')
| -rw-r--r-- | docs/src/templates/css/docs.css | 13 | ||||
| -rw-r--r-- | docs/src/templates/index.html | 4 |
2 files changed, 13 insertions, 4 deletions
diff --git a/docs/src/templates/css/docs.css b/docs/src/templates/css/docs.css index 7f86de9e..bbfae500 100644 --- a/docs/src/templates/css/docs.css +++ b/docs/src/templates/css/docs.css @@ -1,8 +1,17 @@ -img.AngularJS-small { - width: 95px; +/* Logo */ + +.header .brand { + padding-top: 6px; + padding-bottom: 0px; +} + +.header .brand img { height: 25px; + width: 92px; } +/* end: Logo */ + .clear-navbar { margin-top: 60px; diff --git a/docs/src/templates/index.html b/docs/src/templates/index.html index 0fdebb74..1ff0312f 100644 --- a/docs/src/templates/index.html +++ b/docs/src/templates/index.html @@ -114,8 +114,8 @@ <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> - <a class="brand" href="http://angularjs.org" style="padding-top: 6px; padding-bottom: 0px;"> - <img class="AngularJS-small" src="http://angularjs.org/img/AngularJS-small.png"> + <a class="brand" href="http://angularjs.org"> + <img class="logo" src="img/angularjs-for-header-only.svg"> </a> <ul class="nav"> <li class="divider-vertical"></li> |
