Fix styling of in-use connections within GroupView.

This commit is contained in:
Michael Jumper
2013-08-19 12:17:41 -07:00
parent 2103e4388f
commit 3f34f6596c
2 changed files with 18 additions and 10 deletions

View File

@@ -294,16 +294,6 @@ div#recent-connections div.connection {
padding: 0.1em;
}
.connection .usage {
float: right;
font-style: italic;
color: gray;
}
.connection.in-use {
opacity: 0.5;
}
.connection .thumbnail {
margin: 0.5em;
}

View File

@@ -268,6 +268,24 @@ div.section {
margin-left: 0.25em;
}
.list-item .usage {
float: right;
font-style: italic;
color: gray;
}
.list-item.in-use {
opacity: 0.5;
}
.choice .list-item .usage {
display: none;
}
.choice .list-item.in-use {
opacity: 1;
}
/*
* List element styling
*/