Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 23, 2023
1 parent 3c4f51b commit 437a970
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
1 change: 0 additions & 1 deletion tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ def test_tasks_channels_renew(self, mocked_channel, mocked_channels_refresh):

@mock.patch("tubee.tasks.Channel")
def test_channels_refresh(self, mocked_channel):

mocked_channel.query.get.return_value = False
channels_refresh(self.test_channel_ids)

Expand Down
12 changes: 10 additions & 2 deletions tubee/static/css/tag_listing.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,17 @@
linear-gradient(to right, white, white),
linear-gradient(to right, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0)),
linear-gradient(to left, rgba(0, 0, 0, 0.25), rgba(255, 255, 255, 0));
background-position: left center, right center, left center, right center;
background-position:
left center,
right center,
left center,
right center;
background-repeat: no-repeat;
background-size: 20px 100%, 20px 100%, 10px 100%, 10px 100%;
background-size:
20px 100%,
20px 100%,
10px 100%,
10px 100%;
background-attachment: local, local, scroll, scroll;
scrollbar-width: none; /* Firefox */
}
Expand Down

0 comments on commit 437a970

Please sign in to comment.