Skip to content

Commit 8cf8d22

Browse files
committed
Minor fixes for dark theme
1 parent 649d303 commit 8cf8d22

File tree

2 files changed

+45
-5
lines changed

2 files changed

+45
-5
lines changed

themes/dark/skype.styl

Lines changed: 44 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ body
44
background-color $numixBlack !important
55
color white !important
66

7+
:root .swx .themeWhite
8+
background-color $numixBlack !important
9+
710
.shellSplashContent
811
background-color $numixBlack !important
912
color white !important
@@ -122,7 +125,10 @@ body
122125
.Me-displayName
123126
color #fff !important
124127

125-
.tileAvatar:before
128+
.Me--expanded
129+
background-color $numixBlack !important
130+
131+
.tileAvatar:before, .presence.circle.tileAvatar:before
126132
background-color #1d1d1d !important
127133

128134
.tileImage
@@ -135,7 +141,7 @@ body
135141
.timelineComponentContainer .active.message, .timelineComponentContainer .message:before, .searchItem:before, .navItem.icon:hover
136142
background #1d1d1d !important
137143

138-
.unread .counter .circle
144+
.unread .counter .circle, :root .swx .themeWhite .timeline .recent.active.unread .counter span.circle
139145
background-color #d64937 !important
140146
border 1px solid #000 !important
141147

@@ -148,7 +154,7 @@ body
148154
.iconfont, .titleImage:after
149155
color lime
150156

151-
.iconfont:active
157+
.iconfont:active, .icon.active .iconfont, :root .swx .themeWhite .side .navigation .navItem.icon:focus:not(.active)
152158
background #1d1d1d !important
153159

154160
.btn.circle:not(.stroke)
@@ -170,3 +176,38 @@ body
170176

171177
.message, .Me-availability
172178
color #aaa !important
179+
180+
h2.UserSettingsPage-featureLabel
181+
color: #aaa !important
182+
183+
a.UserSettingsPage-category
184+
&:focus
185+
border: none !important
186+
padding: 0 30px !important
187+
&.active
188+
background-color: #1d1d1d !important
189+
h2.UserSettingsPage-label
190+
background-color: inherit !important
191+
192+
h2.UserSettingsPage-label, a.UserSettingsPage-category
193+
background-color: #2d2d2d !important
194+
color: #aaa !important
195+
&:before
196+
color: #ccc !important
197+
198+
p.UserSettingsPage-featureLabel
199+
color #aaa !important
200+
201+
.pref-select-element > select
202+
color #aaa !important
203+
background-color #3d3d3d !important
204+
border 1px solid #1d1d1d !important
205+
206+
div.UserSettingsPage-detail--white:before
207+
border 1px solid $borders !important
208+
209+
h1.ContactsPage-heading, h1.DiscoverAgentsPage--heading, h1.UserSettingsPage-heading, .skypeOutInput
210+
color #aaa !important
211+
212+
.ContactsPage-categoryItem .MenuItem-link--selected
213+
color: #fff !important

views/skype.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ function checkTrayIcon(event) {
5050

5151
function boot() {
5252
skypeView.removeEventListener('dom-ready', boot);
53-
skypeView.openDevTools();
5453

5554
electron.ipcRenderer.send('log', 'booting');
5655

@@ -83,7 +82,7 @@ skypeView.addEventListener('did-fail-load', function(event) {
8382
return;
8483
}
8584

86-
electron.ipcRenderer.send('log', 'Failed to load: ' + JSON.stringify(event));
85+
electron.ipcRenderer.send('log', 'Failed to load: ' + JSON.stringify(event));
8786
});
8887

8988
skypeView.addEventListener('dom-ready', boot);

0 commit comments

Comments
 (0)