Start on UI for Quay

This commit is contained in:
Joseph Schorr 2013-09-26 17:59:20 -04:00
parent 9278871381
commit 27ce5c00b2
10 changed files with 258 additions and 17 deletions

40
static/css/quay.css Normal file
View file

@ -0,0 +1,40 @@
.editable .glyphicon {
opacity: 0.2;
font-size: 85%;
margin-left: 10px;
display: inline-block;
transition: opacity 500ms ease-in-out;
}
.noteditable .glyphicon {
display: none;
}
p.editable .content:empty:after {
display: inline-block;
content: "(Click to add)";
color: #aaa;
}
p.editable:hover {
cursor: pointer;
}
p.editable:hover .glyphicon {
opacity: 1;
}
.tag-dropdown {
display: inline-block;
padding: 6px;
border: 1px solid #ddd;
margin-right: 15px;
margin-bottom: 5px;
}
.modal-body textarea {
width: 100%;
height: 150px;
border: 0px;
}