diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-08-12 15:18:56 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-08-12 15:18:56 -0700 |
commit | da8243085b30ff44b226dd177ab8bca755e1c48b (patch) | |
tree | 82e9137b2fdee97d61869260caea6622de54c020 /youtube | |
parent | de33ee6bb87aeff4bdc01a995c24515894a6a3a8 (diff) | |
download | yt-local-da8243085b30ff44b226dd177ab8bca755e1c48b.tar.lz yt-local-da8243085b30ff44b226dd177ab8bca755e1c48b.tar.xz yt-local-da8243085b30ff44b226dd177ab8bca755e1c48b.zip |
subscription_manager: fix bug where checkbox size decreases when there's too many tags
Diffstat (limited to 'youtube')
-rw-r--r-- | youtube/templates/subscription_manager.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/templates/subscription_manager.html b/youtube/templates/subscription_manager.html index 838f4af..eb52eef 100644 --- a/youtube/templates/subscription_manager.html +++ b/youtube/templates/subscription_manager.html @@ -69,7 +69,7 @@ } .sub-list-checkbox{ height: 1.5em; - width: 1.5em; + min-width: 1.5em; // need min-width otherwise browser doesn't respect the width and squishes the checkbox down when there's too many tags } .muted{ background-color: #888888; |