Minor fixes.
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 31 Mar 2014 13:05:24 +0000 (15:05 +0200)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Mon, 31 Mar 2014 13:05:24 +0000 (15:05 +0200)
prawokultury/static/css/annoy.css [deleted file]
prawokultury/static/css/base.css
prawokultury/static/js/annoy.js [deleted file]
prawokultury/templates/404.html [changed mode: 0755->0644]
prawokultury/templates/500.html [changed mode: 0755->0644]
prawokultury/templates/annoy.html [deleted file]
prawokultury/templates/base.html [changed mode: 0755->0644]

diff --git a/prawokultury/static/css/annoy.css b/prawokultury/static/css/annoy.css
deleted file mode 100755 (executable)
index 17f689d..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#annoy-on {
-    font-size: 13px;
-    line-height: 1.15em;
-
-    padding: .1em 1em;
-    background: orange;
-    z-index: 200;
-    font-family: Arial, sans-serif;
-    display: block;
-    padding: 0 1em;
-    width: 1em;
-    text-align:center;
-    border-radius: 0 0 0 1em;
-    position: absolute;
-    top: 0;
-    right: 0;
-    color: black;
-    box-shadow: .5em 0 1em black;
-}
-
-#annoy {
-    font-size: 13px;
-    line-height: 1.15em;
-    padding: 1em 5em 1em 0;
-    display: none;
-    background: orange;
-    font-family: Arial, sans-serif;
-    position: relative;
-    z-index: 200;
-    box-shadow: 0 0 1em black;
-}
-#annoy p {
-    margin: 0 0 0 10em;;
-}
-#annoy a {
-    color: #4E56C8;
-}
-
-#annoy a#annoy-off {
-    padding: .5em 1em .5em;
-    width: 1em;
-    text-align:center;
-    font-family: Arial, sans-serif;
-    display: block;
-
-    border-radius: 0 0 0 1em;
-    position: absolute;
-    top: 0;
-    right: 0;
-    color: black;
-}
-#annoy a#annoy-off:hover {
-    cursor: pointer;
-}
index b5481a8..9f3b9d9 100644 (file)
@@ -1,4 +1,4 @@
-@import url(http://fonts.googleapis.com/css?family=Lato:400,700,400italic);
+@import url(//fonts.googleapis.com/css?family=Lato:400,700,400italic);
 body {
   font-family: 'Lato', sans-serif;
   font-size: .625em;
diff --git a/prawokultury/static/js/annoy.js b/prawokultury/static/js/annoy.js
deleted file mode 100755 (executable)
index 78c34e4..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-(function($) {
-    $(function() {
-
-
-var have_localstorage;
-try {
-    localStorage.setItem("test", "test");
-    localStorage.removeItem("test");
-    have_localstorage = true;
-} catch(e) {
-    have_localstorage = false;
-}
-
-
-
-$("#annoy-on").click(function(e) {
-    e.preventDefault();
-    $("#annoy").slideDown('fast');
-    $(this).hide();
-    if (have_localstorage) localStorage.removeItem("annoyed2013");
-});
-
-$("#annoy-off").click(function() {
-    $("#annoy").slideUp('fast');
-    $("#annoy-on").show();
-    if (have_localstorage) localStorage["annoyed2013"] = true;
-});
-
-
-if (have_localstorage) {
-    if (!localStorage["annoyed2013"]) {
-        $("#annoy-on").hide();
-        $("#annoy").show();
-    }
-}
-
-
-
-    });
-})(jQuery);
old mode 100755 (executable)
new mode 100644 (file)
old mode 100755 (executable)
new mode 100644 (file)
diff --git a/prawokultury/templates/annoy.html b/prawokultury/templates/annoy.html
deleted file mode 100755 (executable)
index 9b9e8fd..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-{% load static %}
-<a id='annoy-on' href="http://nowoczesnapolska.org.pl/pomoz-nam/wesprzyj-nas/">1%</a>
-<div id='annoy'>
-    <a href="http://nowoczesnapolska.org.pl/pomoz-nam/wesprzyj-nas/">
-        <img src='http://static.wolnelektury.pl/img/procent.png' alt="Logo akcji 1%" style="float:left;margin: 0 2em" /></a>
-    <p>Droga użytkowniczko, drogi użytkowniku!</p>
-    <p>Czy wiesz, że Prawo Kultury to jeden z&nbsp;projektów
-    <strong>fundacji Nowoczesna Polska</strong> –
-    organizacji pożytku publicznego działającej na rzecz wolności korzystania
-    z&nbsp;dóbr kultury? Wesprzyj nasze działania, przeznaczając na nie 1% swojego podatku.
-    Możesz to zrobić, wpisując w&nbsp;zeznaniu podatkowym numer
-    <strong>KRS 0000070056</strong>.</p>
-
-    <p><a href="http://nowoczesnapolska.org.pl/pomoz-nam/wesprzyj-nas/">Dowiedz się więcej</a></p>
-    
-    <a id='annoy-off'>x</a>
-    <div style="clear:both;"></div>
-</div>
old mode 100755 (executable)
new mode 100644 (file)