Commit e1ba168c authored by Liam's avatar Liam Committed by Robert Lyon
Browse files

Bug #1756154: Fix link color in Primary School and Ocean themes for "Notifications"

behatnotneeded

Change-Id: I674cb8242cc1c522195647da5be4002440beafb8
(cherry picked from commit 113faa35)
parent 9182e6f3
Loading
Loading
Loading
Loading
+17 −1
Original line number Diff line number Diff line
@@ -39,4 +39,20 @@
            }
        }
    }

    &.notifications {
        .nav-inpage {
            &.nav > li {
                &.active > a,
                &.active > button  {
                    color: $arrow-link-active-color;
                    background-color: $arrow-link-background-color;
                }
                & > a:hover {
                    color: $arrow-link-hover-color;
                    background-color:$arrow-link-background-color;
                }
            }
        }
    }
}
+15 −0
Original line number Diff line number Diff line
@@ -54,4 +54,19 @@
            }
        }
    }

    &.notifications {
        .nav-inpage {
            &.nav > li {
                & > a {
                    color: $arrow-text-color;
                }
                &.active > a,
                &.active > button  {
                    color: $link-color;
                    background-color: $arrow-link-background-color;
                }
            }
        }
    }
}