[fix bug 842527] 'Article is for' box overlaps the article editor

This commit is contained in:
Michał Frontczak 2013-05-17 01:37:04 +02:00 коммит произвёл Ricky Rosario
Родитель be7f51e2e5
Коммит 0d6fbb56ef
3 изменённых файлов: 21 добавлений и 2 удалений

Просмотреть файл

@ -233,7 +233,7 @@
{% endif %} {% endif %}
<section id="support-for"> <section id="support-for">
{% if header %} {% if header %}
<h1>{{ header }}</h1> <h1>{{ header }} <div id="support-for-exit">x</div></h1>
{% endif %} {% endif %}
<div> <div>
<select id="os" data-oses="{{ oses_json }}" class="enable-if-js" disabled="disabled"> <select id="os" data-oses="{{ oses_json }}" class="enable-if-js" disabled="disabled">

Просмотреть файл

@ -41,7 +41,7 @@
return false; return false;
} }
}); });
initExitSupportFor();
initArticlePreview(); initArticlePreview();
initPreviewDiff(); initPreviewDiff();
initTitleAndSlugCheck(); initTitleAndSlugCheck();
@ -736,5 +736,11 @@
$('#doc-content h1:visible').first().click(); $('#doc-content h1:visible').first().click();
} }
function initExitSupportFor() {
$('#support-for-exit').live('click', function() {
$('#support-for').remove();
});
}
}(jQuery)); }(jQuery));

Просмотреть файл

@ -753,6 +753,19 @@ textarea[name="content"] {
font-size: 20px; font-size: 20px;
} }
} }
#support-for-exit {
font-size: 12px;
font-weight: bold;
position: absolute;
right: 10px;
top: 10px;
z-index: 11;
&:hover {
color: #999;
cursor: pointer;
}
}
} }
#preview-bottom { #preview-bottom {