From 4434547a18b6fb6527a3a9d92cbb7051c00cff11 Mon Sep 17 00:00:00 2001
From: Francis Lachapelle
Date: Fri, 7 Aug 2015 14:25:14 -0400
Subject: [PATCH] (css) Don't highlight disabled list items
---
UI/Templates/SchedulerUI/UIxCalMainView.wox | 2 +-
UI/WebServerResources/scss/components/list/list.scss | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/UI/Templates/SchedulerUI/UIxCalMainView.wox b/UI/Templates/SchedulerUI/UIxCalMainView.wox
index b76b1cb4f..d42818056 100644
--- a/UI/Templates/SchedulerUI/UIxCalMainView.wox
+++ b/UI/Templates/SchedulerUI/UIxCalMainView.wox
@@ -551,7 +551,7 @@
-
+
diff --git a/UI/WebServerResources/scss/components/list/list.scss b/UI/WebServerResources/scss/components/list/list.scss
index b3386ff9b..82a6ec568 100644
--- a/UI/WebServerResources/scss/components/list/list.scss
+++ b/UI/WebServerResources/scss/components/list/list.scss
@@ -66,7 +66,7 @@ div.md-tile-left {
md-list-item {
transition: background-color $swift-ease-in-duration $swift-ease-in-timing-function,
color 0.12s linear;
- &:hover {
+ &:hover:not([disabled]) {
background-color: sg-color($sogoPaper, 300);
color: sg-color($sogoBlue, 800);
cursor: pointer;