1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-14 03:15:49 +02:00

Fix edit-design modal, black theme quote border, and dark theme scrollbar color

This commit is contained in:
chylex 2018-02-02 16:56:06 +01:00
parent 0f9a944775
commit 2a9ddd4468
3 changed files with 12 additions and 1 deletions
Resources/Plugins/edit-design

View File

@ -8,7 +8,7 @@ Edit layout & design
chylex
[version]
1.2
1.2.1
[website]
https://tweetduck.chylex.com

View File

@ -393,6 +393,9 @@ enabled(){
this.css.insert(".scroll-styled-v:not(.scroll-alt)::-webkit-scrollbar-thumb:not(:hover), .scroll-styled-h:not(.scroll-alt)::-webkit-scrollbar-thumb:not(:hover) { background-color: #666 !important }");
notificationScrollbarColor = "666";
}
else{
this.css.insert(".scroll-styled-v:not(.scroll-alt)::-webkit-scrollbar-track, .scroll-styled-h:not(.scroll-alt)::-webkit-scrollbar-track { border-left-color: #14171A !important }");
}
break;
@ -594,6 +597,10 @@ ${this.config.revertIcons ? `
#tduck .icon-user-dd:before{content:"\\f01a";font-family:_of!important}
` : ``}
${this.config.themeOverride === "black" ? `
.quoted-tweet { border-color: #292f33 !important }
` : ``}
${notificationScrollbarColor ? `
.scroll-styled-v::-webkit-scrollbar-thumb:not(:hover), .scroll-styled-h::-webkit-scrollbar-thumb:not(:hover) { background-color: #${notificationScrollbarColor} !important }
` : ``}

View File

@ -168,6 +168,10 @@
height: 380px;
}
#edit-design-panel .mdl-inner {
padding-top: 0;
}
#edit-design-panel-inner-cols {
padding: 0 6px;
}