summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-11-06 14:01:04 -0500
committerPatrick Uiterwijk <puiterwijk@redhat.com>2014-11-12 23:48:02 +0100
commitdc9f4a30a47cdce1e0070c18398351ea6c307305 (patch)
tree19ddbaa13ca9903098e48a8b9a7157ba3e0497e3 /ui
parent0034ad1215de99fc13e9dc57bc652cfb8eeb58ae (diff)
downloadipsilon-dc9f4a30a47cdce1e0070c18398351ea6c307305.tar.gz
ipsilon-dc9f4a30a47cdce1e0070c18398351ea6c307305.tar.xz
ipsilon-dc9f4a30a47cdce1e0070c18398351ea6c307305.zip
Add visual cues to configuration panels
Make it easier to recognize which plugins are enabled and which are disabled. Also make it easier to recognize when a plugin has just changed state, by flashing its row (help also realize it may have moved up/down) Based on concept work by Petr Vobornik Signed-off-by: Simo Sorce <simo@redhat.com> Reviewed-by: Patrick Uiterwijk <puiterwijk@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/css/admin.css59
1 files changed, 59 insertions, 0 deletions
diff --git a/ui/css/admin.css b/ui/css/admin.css
index 2409613..0f9472a 100644
--- a/ui/css/admin.css
+++ b/ui/css/admin.css
@@ -6068,3 +6068,62 @@ fieldset[disabled] .btn-primary.active {
font-weight: 900;
src: local('Open Sans Extrabold Italic'), url('../fonts/open-sans/OpenSans-ExtraBoldItalic.ttf') format('truetype');
}
+.ipsilon-row {
+ border-top: 1px solid #dddddd;
+ padding: 8px;
+ min-height: 37px;
+}
+.ipsilon-row:last-child {
+ border-bottom: 1px solid #dddddd;
+}
+.hl-enabled {
+ background-color: #ffffff;
+}
+.hl-disabled {
+ background-color: #ededed;
+}
+.hl-disabled strong {
+ color: #555;
+}
+@keyframes bgfadein {
+ from {
+ background-color: #ededed;
+ }
+ to {
+ background-color: #ffffff;
+ }
+}
+@keyframes bgfadeout {
+ from {
+ background-color: #ffffff;
+ }
+ to {
+ background-color: #ededed;
+ }
+}
+.hl-enabled-new {
+ animation-duration: 3s;
+ animation-name: bgfadein;
+ animation-fill-mode: both;
+}
+.hl-disabled-new {
+ animation-duration: 3s;
+ animation-name: bgfadeout;
+ animation-fill-mode: both;
+}
+@keyframes flashout {
+ 0% {
+ background-color: #ffffff;
+ }
+ 50% {
+ background-color: #d9edf7;
+ }
+ 100% {
+ background-color: #ffffff;
+ }
+}
+.hl-enabled-flash {
+ animation-duration: 1.5s;
+ animation-name: flashout;
+ animation-fill-mode: both;
+}