Add stream details to notification options

* Also beautify modal
This commit is contained in:
Jonathan Wong 2015-12-12 17:31:52 -08:00
commit 66bb922012
3 changed files with 296 additions and 127 deletions

View file

@ -2520,4 +2520,29 @@ table[id^='history_child'] thead th {
-ms-transition: background 0.3s;
-o-transition: background 0.3s;
transition: background 0.3s;
}
.notification-params {
margin-top: 10px;
background-color: #282828;
}
.notification-params th {
padding-left: 10px;
height: 30px;
}
.notification-params td {
height: 25px;
}
.notification-params td:first-child {
padding-left: 10px;
width: 200px;
}
.notification-params td:not(:first-child) {
padding-right: 10px;
}
.notification-params tr:nth-child(odd) td {
background-color: rgba(255,255,255,0.035);
}
.notification-params tr:nth-child(even) td {
background-color: rgba(255,255,255,0.010);
}