Rate this page fixes

This commit is contained in:
John Mulhausen 2017-02-27 16:35:00 -08:00
parent 013347f9b4
commit c85f47a6ac
No known key found for this signature in database
GPG Key ID: 0FC599ECCDBFDE02
3 changed files with 25 additions and 18 deletions

View File

@ -962,6 +962,17 @@ div#PDRTJS_8453675_msg,div#PDRTJS_8453675_msg_1 {
color: #fff!important;
}
/* polldaddy */
#rating_info_8453675
{
display: none;
}
.rating-msg
{
font: inherit !important;
color: inherit !important;
}
/*
*
* Controls ***********************************************************************

View File

@ -350,7 +350,7 @@ input[type=text], .nav-secondary-tabs.affix input[type=text] {
/*
*
* Butons ***********************************************************************
* Buttons ***********************************************************************
*
*/
@ -1087,6 +1087,16 @@ input:checked+.slider:before {
width: 250px;
}
/* polldaddy */
#rating_info_8453675
{
display: none !important;
}
.rating-msg
{
font: inherit !important;
color: inherit !important;
}
/*
*

View File

@ -5,29 +5,15 @@ title: View the docs archives
This page lists the various ways you can view the docs as they were when a
prior version of Docker was shipped.
## View the docs archives locally
The docs archive is published as a [Docker Hub repository at docs/docker.github.io](https://hub.docker.com/r/docs/docker.github.io/tags/).
To see any of these versions, run the following command, changing
the tag from `v1.4` to any tag you see in [the repo](https://hub.docker.com/r/docs/docker.github.io/tags/):
```shell
docker run -p 4000:4000 docs/docker.github.io:v1.4
```
The docs for `v1.4` will then be viewable at `http://localhost:4000`.
## View the docs archives online
{% for item in site.data.docsarchive.docker-compose %}
### {{ item[0] }}
## {{ item[0] }}
Docs for {{ item[0] }} are accessible at [/{{ item[0] }}/](/{{ item[0] }}/), or
Docs for {{ item[0] }} are accessible at [**https://docs.docker.com/{{ item[0] }}/**](/{{ item[0] }}/), or
run:
```
docker run -p 4000:4000 docs/docker.github.io:{{ item[0] }}
docker run -ti -p 4000:4000 docs/docker.github.io:{{ item[0] }}
```
{% endfor %}