mirror of https://github.com/docker/docs.git
Merge pull request #555 from kitematic/informative-tag-selection
Added informative text for selecting image tags
This commit is contained in:
commit
fe89879dd5
|
@ -144,6 +144,7 @@ var ImageCard = React.createClass({
|
|||
return (
|
||||
<div className="image-item">
|
||||
<div className="tag-overlay" onClick={self.handleCloseTagOverlay}>
|
||||
<p>Please select an image tag.</p>
|
||||
{tags}
|
||||
</div>
|
||||
<div className="logo" style={logoStyle}>
|
||||
|
|
|
@ -194,13 +194,18 @@
|
|||
font-size: 13px;
|
||||
display: none;
|
||||
padding: 10px;
|
||||
p {
|
||||
color: white;
|
||||
padding-bottom: 7px;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.2);
|
||||
}
|
||||
.tag-list {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: flex-start;
|
||||
align-content: flex-start;
|
||||
flex-flow: row wrap;
|
||||
height: 140px;
|
||||
height: 100px;
|
||||
overflow: auto;
|
||||
.tag {
|
||||
display: inline-block;
|
||||
|
|
Loading…
Reference in New Issue