Skip to content

Commit

Permalink
Uncramp Discourse MT icon when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscant committed Nov 11, 2019
1 parent a0bb42d commit e6dfe99
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dev/webpack.appmt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ module.exports = new Config().extend({
}),
// CC new FaviconsPlugin('images/modtools_logo.png'),
new webpack.DefinePlugin({
APP_VERSION: JSON.stringify('0.2.20, 30 October 2019.'),
APP_VERSION: JSON.stringify('0.2.20, 11 November 2019.'),
// CC SET ABOVE: API: JSON.stringify(BASE_URL+'/api/'),
FACEBOOK_APPID: JSON.stringify('134980666550322'),
FACEBOOK_GRAFFITI_APPID: JSON.stringify('115376591981611'),
Expand Down
21 changes: 16 additions & 5 deletions http/css/modtools.css
Original file line number Diff line number Diff line change
Expand Up @@ -160,14 +160,25 @@
}

.notifchat {
top: -14px;
width: 35px; /* CC */
top: -14px;
}

#js-notifchat .badge, #js-discoursechat .badge {
position: absolute; /* CC */
top: -10px; /* CC */
right: 15px; /* CC */
position: relative;
top: -15px;
left: -35px;
}

@media(max-width:320px) { /* CC */
.notifchat {
width: 35px;
}

#js-notifchat .badge, #js-discoursechat .badge {
position: absolute;
top: -10px;
right: 15px;
}
}

.pageContent.landing {
Expand Down

0 comments on commit e6dfe99

Please sign in to comment.