Skip to content

Commit

Permalink
Fixed next autoplay in playlist reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
adokseo committed Apr 25, 2021
1 parent 2b11644 commit 6d82cd4
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 303 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "'Improve YouTube!' (Video & YouTube Tools)🎧",
"short_name": "ImprovedTube",
"description": "Make YouTube tidy & powerful! YouTube Player Size Theme Quality Auto HD Colors Playback Speed Style ad block Playlist Channel H.264",
"version": "3.229",
"version": "3.230",
"default_locale": "en",
"icons": {
"128": "assets/icons/128.png",
Expand Down
32 changes: 21 additions & 11 deletions popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@
# Main
# Dialog
# Themes
# Default
# Dark
# Night
# Dawn
# Sunset
# Desert
# Plain
# Black
--------------------------------------------------------------*/

/*--------------------------------------------------------------
Expand All @@ -15,8 +23,6 @@
body {
font-family: sans-serif;
font-size: 14px;
display: flex;
flex-direction: column;
width: 320px;
height: 532px;
margin: 0;
Expand Down Expand Up @@ -222,7 +228,7 @@ body[data-appearance='search'] .satus-switch--desert .satus-switch__label {
--------------------------------------------------------------*/

.satus-main {
flex: 1;
height: calc(100% - 58px);
}


Expand Down Expand Up @@ -1161,6 +1167,10 @@ html[it-improvedtube-home='list'] .satus-section--info
# THEMES
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# DEFAULT
--------------------------------------------------------------*/

body {
--satus-theme-primary: #ff4158;
}
Expand All @@ -1170,7 +1180,7 @@ body {
# DARK
--------------------------------------------------------------*/

html[theme='dark'] body {
html[theme=dark] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #2c2b2c;
--satus-theme-dialog-text: #b5b5b5;
Expand All @@ -1191,7 +1201,7 @@ html[theme='dark'] body {
# NIGHT
--------------------------------------------------------------*/

html[theme='night'] body {
html[theme=night] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #61a7f5;
--satus-theme-dialog-text: #fafafa;
Expand All @@ -1212,7 +1222,7 @@ html[theme='night'] body {
# DAWN
--------------------------------------------------------------*/

html[theme='dawn'] body {
html[theme=dawn] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #ffba99;
--satus-theme-dialog-text: #fafafa;
Expand All @@ -1230,10 +1240,10 @@ html[theme='dawn'] body {


/*--------------------------------------------------------------
#SUNSET
# SUNSET
--------------------------------------------------------------*/

html[theme='sunset'] body {
html[theme=sunset] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #a96165;
--satus-theme-dialog-text: #fafafa;
Expand All @@ -1254,7 +1264,7 @@ html[theme='sunset'] body {
# DESERT
--------------------------------------------------------------*/

html[theme='desert'] body {
html[theme=desert] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #9dc2ee;
--satus-theme-dialog-text: #fafafa;
Expand All @@ -1275,7 +1285,7 @@ html[theme='desert'] body {
# PLAIN
--------------------------------------------------------------*/

html[theme='plain'] body {
html[theme=plain] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #abceb8;
--satus-theme-dialog-text: #fafafa;
Expand All @@ -1296,7 +1306,7 @@ html[theme='plain'] body {
# BLACK
--------------------------------------------------------------*/

html[theme='black'] body {
html[theme=black] body {
--satus-theme-primary: #ff4158;
--satus-theme-dialog: #222;
--satus-theme-dialog-text: #fafafa;
Expand Down
Loading

0 comments on commit 6d82cd4

Please sign in to comment.