From 3f34f6596ca33f31006834612b8976c0fa93a508 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 19 Aug 2013 12:17:41 -0700 Subject: [PATCH] Fix styling of in-use connections within GroupView. --- guacamole/src/main/webapp/styles/login.css | 10 ---------- guacamole/src/main/webapp/styles/ui.css | 18 ++++++++++++++++++ 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/guacamole/src/main/webapp/styles/login.css b/guacamole/src/main/webapp/styles/login.css index facd52627..29270321a 100644 --- a/guacamole/src/main/webapp/styles/login.css +++ b/guacamole/src/main/webapp/styles/login.css @@ -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; } diff --git a/guacamole/src/main/webapp/styles/ui.css b/guacamole/src/main/webapp/styles/ui.css index 80530fee2..163f4a6f0 100644 --- a/guacamole/src/main/webapp/styles/ui.css +++ b/guacamole/src/main/webapp/styles/ui.css @@ -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 */