Create Program refactoring, added a notification for it when it comes up

This commit is contained in:
Daniel Xie
2017-05-05 11:52:48 -05:00
parent 66e4fa26a2
commit acc3b8cf89
7 changed files with 127 additions and 25 deletions
+26
View File
@@ -115,3 +115,29 @@ tr:focus {
cursor: default;
}
/* Notification icon (for create program right now only) */
.create-program-tab {
position:relative;
}
#create-program-notification {
font-size: 10px;
position: absolute; /* Position the badge within the relatively positioned button */
top: 0;
right: 0;
}
.notification-on {
background-color: #fa3e3e;
color: white;
border-radius: 2px;
padding: 1px 3px;
}
.notification-off {
background-color: #333;
color: #333;
border-radius: 0px;
padding: 0px;
}