Changeset - 774e2c625dd5
[Not reviewed]
6 3 0
Joshua Simmons - 7 years ago 2017-08-10 23:23:24
i@joshuasimmons.name
move inline styles to custom.scss, remove unused pinax templates
9 files changed with 21 insertions and 127 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/_account_bar.html
Show inline comments
...
 
@@ -21,6 +21,6 @@
 
    {% endif %}
 
</ul>
 

	
 
<form id="accountLogOutForm" style="display: none;" action="{% url 'account_logout' %}" method="POST">
 
<form id="accountLogOutForm" action="{% url 'account_logout' %}" method="POST">
 
    {% csrf_token %}
 
</form>
pinaxcon/templates/_default_sidebar.html
Show inline comments
...
 
@@ -9,10 +9,10 @@
 
<div class="sponsor-list">
 
    {% for level in levels %}
 
        {% if level.sponsors %}
 
            <h3 style="margin-top: 3em;">{{ level.name }}</h3>
 
            <h3>{{ level.name }}</h3>
 

	
 
            {% for sponsor in level.sponsors %}
 
                <div style="margin: 10px 0;">
 
                <div>
 
                    {% if sponsor.website_logo %}
 
                        <a href="{{ sponsor.external_url }}">
 
                            <img src="{% thumbnail sponsor.website_logo '100x60' %}" alt="{{ sponsor.name }}" />
...
 
@@ -25,3 +25,5 @@
 
        {% endif %}
 
    {% endfor %}
 
</div>
 

	
 

	
pinaxcon/templates/pinax/boxes/_box.html
Show inline comments
 
deleted file
pinaxcon/templates/pinax/boxes/_box_body.html
Show inline comments
 
deleted file
pinaxcon/templates/pinax/pages/file_create.html
Show inline comments
 
deleted file
pinaxcon/templates/pinax/pages/file_list.html
Show inline comments
 
deleted file
pinaxcon/templates/pinax/pages/page_detail.html
Show inline comments
 
deleted file
pinaxcon/templates/pinax/pages/page_edit.html
Show inline comments
 
deleted file
static/scss/custom.scss
Show inline comments
...
 
@@ -52,3 +52,19 @@ body.reviews.voting-status {
 
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
 
    }
 
}
 

	
 
#accountLogOutForm {
 
    display: none;
 
}
 

	
 
.sponsor-list h3 {
 
    margin-top: 3em;
 
}
 

	
 
.sponsor-list > div {
 
    margin: 10px 0;
 
}
 

	
 

	
 

	
 

	
0 comments (0 inline, 0 general)