Skip to content
This repository has been archived by the owner on Feb 10, 2019. It is now read-only.

Commit

Permalink
Merge pull request #15 from Loxos/develop
Browse files Browse the repository at this point in the history
fixes #10
  • Loading branch information
shu8 committed Aug 17, 2015
2 parents 50078f3 + 95d7661 commit 714676e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Stand-alone-scripts/metaNewQuestionAlert.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var metaName = 'meta.' + $(location).attr('hostname').split('.')[0],
var apiLink = "https://api.stackexchange.com/2.2/questions?pagesize=5&order=desc&sort=activity&site=" + metaName;

$('.topbar-links').prepend('<span id="mod-extra-icon" class="reputation links-container" style="font-size: 2em; vertical-align: top; padding-top: 3px; color: white;">♦</span>');
$('.js-topbar-dialog-corral').prepend('<div class="topbar-dialog help-dialog js-help-dialog dno" id="newMetaQuestionsDialog" style="top: 34px; left: 380px; display: none;">\
$('.js-topbar-dialog-corral').prepend('<div class="topbar-dialog help-dialog js-help-dialog dno" id="newMetaQuestionsDialog" style="top: 34px; left: 380px; display: none; overflow: auto;">\
<div class="modal-content" id="newMetaQuestionsList"><span id="closeNewQuestionList" style="float:right">x</span>\
<ul>\
<li>\
Expand Down
5 changes: 4 additions & 1 deletion features.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ var functionsToCall = { //ALL the functions must go in here
$("#header").css("margin-top", "34px");
$(".topbar").css("margin-top", "-34px");
}

$("#rep-card-next .percent").after($("#rep-card-next .label").css("z-index",0)).css("position","absolute");
$("#badge-card-next .percent").after($("#badge-card-next .label").css("z-index",0)).css("position","absolute")
},

highlightQuestions: function() { // For highlighting only the tags of favorite questions
Expand Down Expand Up @@ -1000,7 +1003,7 @@ var functionsToCall = { //ALL the functions must go in here
var apiLink = "https://api.stackexchange.com/2.2/questions?pagesize=5&order=desc&sort=activity&site=" + metaName;

$('.topbar-links').prepend('<span id="mod-extra-icon" class="reputation links-container diamondOff">♦</span>');
$('.js-topbar-dialog-corral').prepend('<div class="topbar-dialog help-dialog dno" id="newMetaQuestionsDialog" style="top: 34px; left: 380px; display: none;">\
$('.js-topbar-dialog-corral').prepend('<div class="topbar-dialog help-dialog dno" id="newMetaQuestionsDialog" style="top: 34px; left: 380px; display: none; overflow: auto;">\
<div class="modal-content" id="newMetaQuestionsList" style="max-height:none"><span id="closeNewQuestionList" style="float:right">x</span>\
<ul>\
<li>\
Expand Down

0 comments on commit 714676e

Please sign in to comment.