Skip to content

Commit

Permalink
Bug fixes; Updated header menu; Added Dark Mode ad
Browse files Browse the repository at this point in the history
  • Loading branch information
adokseo committed Sep 20, 2020
1 parent e6e53ab commit 9d1b34b
Show file tree
Hide file tree
Showing 19 changed files with 362 additions and 347 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"short_name" : "ImprovedTube",
"name": "Improve YouTube! (Open-Source for YouTube)",
"version": "3.100",
"version": "3.110",
"icons": {
"16": "assets/icons/16.png",
"32": "assets/icons/32.png",
Expand Down
71 changes: 47 additions & 24 deletions popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,7 @@ button
.satus-dialog--confirm .satus-section
{
display: flex;

background-color: transparent;
}

Expand Down Expand Up @@ -356,52 +357,74 @@ button



.satus-section--footer
.satus-main .satus-button.satus-button--ad
{
position: fixed;
z-index: 99;
bottom: 10px;
bottom: 16px;
left: 16px;

display: flex;

box-sizing: border-box;
box-shadow: 0 0 3px rgba(0,0,0,.1);
width: 268px;
height: 38px;
height: 80px;
padding: 8px 16px;

color: var(--satus-theme-main-text);
border-radius: 8px;
border-radius: 4px;
background: var(--satus-theme-section);
background: #242424;
box-shadow: 0 0 3px rgba(0,0,0,.1);

align-items: center;
justify-content: space-between;
}

html[it-improvedtube-home='list'] .satus-section--footer
.satus-button--ad .satus-button__label
{
position: relative;
left: 0;
top: 0;
margin: 50px 16px 16px;
font-size: 16px;
font-weight: 700;

letter-spacing: 1px;

color: rgba(255,255,255,.9);
text-shadow: 2px 1px 2px rgba(0,0,0,.6);
}

.satus-main .satus-section--footer .satus-button
.satus-button--ad::after
{
font-family: 'Open Sans', sans-serif;
font-weight: 700;
font-size: 13px;
text-decoration: none;
color: var(--satus-theme-main-text);
text-align: center;
height: 32px;
justify-content: center;
border-radius: 4px;
overflow: hidden;
position: absolute;
top: 0;
left: 0;

width: 100%;
height: 100%;

content: '';
animation-name: satus-switch--dark;
animation-duration: 4s;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
pointer-events: none;

background: radial-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2), transparent 60%), radial-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2), transparent 60%), radial-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2), transparent 60%), radial-gradient(rgba(255, 255, 255, .2), rgba(255, 255, 255, .2), transparent 60%) !important;
background-repeat: no-repeat !important;
background-position: -10px 40px, 200px 0, -30px -20px, 130px 30px !important;
background-size: 50px 50px, 50px 50px, 100px 100px, 75px 75px !important;

filter: blur(8px);
}

.satus-main .satus-section--footer .satus-button--found-a-bug {
width: 128px;
position: absolute;
bottom: 48px;
left: 70px;
html[it-improvedtube-home='list'] .satus-main .satus-button.satus-button--ad
{
position: relative;
top: 0;
left: 0;

margin: 50px 16px 16px;
}

.satus-dialog--setup
Expand Down
Loading

0 comments on commit 9d1b34b

Please sign in to comment.