diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-06-11 01:47:06 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-06-11 01:47:06 -0700 |
commit | 59fdbda886c1bc1acc12da7061b0710b048ce252 (patch) | |
tree | 3f2b308b07cf10d351c167b2c77a288c19e742a7 /yt_subscription_manager_template.html | |
parent | 103b37030fcd073b5f44b9ddc79da0ce15325a96 (diff) | |
download | yt-local-59fdbda886c1bc1acc12da7061b0710b048ce252.tar.lz yt-local-59fdbda886c1bc1acc12da7061b0710b048ce252.tar.xz yt-local-59fdbda886c1bc1acc12da7061b0710b048ce252.zip |
Add channel muting
Diffstat (limited to 'yt_subscription_manager_template.html')
-rw-r--r-- | yt_subscription_manager_template.html | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/yt_subscription_manager_template.html b/yt_subscription_manager_template.html index 83a52fa..8997861 100644 --- a/yt_subscription_manager_template.html +++ b/yt_subscription_manager_template.html @@ -62,7 +62,7 @@ column-width: 300px; column-gap: 40px; } - .sub-list > li{ + .sub-list-item{ display:flex; margin-bottom: 10px; background-color: #dadada; @@ -78,6 +78,9 @@ height: 1.5em; width: 1.5em; } + .muted{ + background-color: #888888; + } </style> </head> <body> @@ -105,6 +108,8 @@ $header <button type="submit" name="action" value="add_tags">Add tags</button> <button type="submit" name="action" value="remove_tags">Remove tags</button> <button type="submit" name="action" value="unsubscribe_verify">Unsubscribe</button> + <button type="submit" name="action" value="mute">Mute</button> + <button type="submit" name="action" value="unmute">Unmute</button> <input type="reset" value="Clear Selection"> </form> |