added textbutton and viewcontrol styles. updated templates
This commit is contained in:
parent
456465a67e
commit
905b218e4c
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
|
|
||||||
{% block "content" %}
|
{% block "content" %}
|
||||||
<a href="/store/">Zur Liste aller Items</a>
|
<a class="button" href="/store/">Zur Liste aller Items</a>
|
||||||
{% if item %}
|
{% if item %}
|
||||||
<div class="singleItem" >
|
<div class="singleItem" >
|
||||||
<div class="productImage">
|
<div class="productImage">
|
||||||
|
|
|
@ -1,7 +1,13 @@
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
|
|
||||||
{% block "content" %}
|
{% block "content" %}
|
||||||
Sortieren nach <a href="/store/">Letzte Änderung</a> | <a href="?order=alphabet">Alphabet</a> | <a href="?order=price">Preis</a><br/>
|
<div class="viewControl">
|
||||||
|
<h3>Sortieren nach</h2>
|
||||||
|
<a class="button" href="/store/">Letzte Änderung</a>
|
||||||
|
<a class="button" href="?order=alphabet">Alphabet</a>
|
||||||
|
<a class="button" href="?order=price">Preis</a><br/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div style="width:800px">
|
<div style="width:800px">
|
||||||
{% include "buyables/product_list.html" with buyables=items %}
|
{% include "buyables/product_list.html" with buyables=items %}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -147,16 +147,16 @@ h3 {
|
||||||
clear: both;
|
clear: both;
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.content {
|
a {
|
||||||
padding: 5px;
|
|
||||||
}
|
|
||||||
.content a {
|
|
||||||
color: #3398cc;
|
color: #3398cc;
|
||||||
}
|
}
|
||||||
.content a:hover {
|
a:hover {
|
||||||
color: white;
|
color: white;
|
||||||
background-color: #3398cc;
|
background-color: #3398cc;
|
||||||
}
|
}
|
||||||
|
.content {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
input {
|
input {
|
||||||
padding: 2px 5px;
|
padding: 2px 5px;
|
||||||
border: 1px solid #E5E5E5;
|
border: 1px solid #E5E5E5;
|
||||||
|
@ -311,6 +311,7 @@ p {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
margin: 3px 0;
|
margin: 3px 0;
|
||||||
|
color: white;
|
||||||
-webkit-border-radius: 20px;
|
-webkit-border-radius: 20px;
|
||||||
-moz-border-radius: 20px;
|
-moz-border-radius: 20px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
|
@ -451,7 +452,6 @@ table.itemListContainer > tbody > tr:first-child ~ tr > td {
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
margin: 10px 10px 15px 0;
|
margin: 10px 10px 15px 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 32px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -490,6 +490,7 @@ table.itemListContainer > tbody > tr:first-child ~ tr > td {
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-width: 32px;
|
min-width: 32px;
|
||||||
|
height: 32px;
|
||||||
background: url("img/payment.png") no-repeat center center transparent;
|
background: url("img/payment.png") no-repeat center center transparent;
|
||||||
}
|
}
|
||||||
.button.buy > span > span {
|
.button.buy > span > span {
|
||||||
|
@ -536,3 +537,20 @@ table.itemListContainer > tbody > tr:first-child ~ tr > td {
|
||||||
-webkit-box-shadow: 0 1px 3px 0 black, 0 1px 3px 0 black inset;
|
-webkit-box-shadow: 0 1px 3px 0 black, 0 1px 3px 0 black inset;
|
||||||
box-shadow: 0 1px 3px 0 black, 0 1px 3px 0 black inset;
|
box-shadow: 0 1px 3px 0 black, 0 1px 3px 0 black inset;
|
||||||
}
|
}
|
||||||
|
.viewControl {
|
||||||
|
border-bottom: 1px solid #007bba;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
padding-bottom: 7px;
|
||||||
|
}
|
||||||
|
.viewControl h2:after,
|
||||||
|
.viewControl h3:after,
|
||||||
|
.viewControl h4:after,
|
||||||
|
.viewControl h5:after {
|
||||||
|
content: ": ";
|
||||||
|
}
|
||||||
|
.viewControl > * {
|
||||||
|
display: inline-block;
|
||||||
|
float: none;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 0 10px 0 0;
|
||||||
|
}
|
||||||
|
|
|
@ -151,17 +151,17 @@ h3 {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: @clrMediumBlue;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: white;
|
||||||
|
background-color: @clrMediumBlue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
|
|
||||||
a {
|
|
||||||
color: @clrMediumBlue;
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: white;
|
|
||||||
background-color: @clrMediumBlue;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input {
|
input {
|
||||||
|
@ -331,6 +331,7 @@ p {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
margin: 3px 0;
|
margin: 3px 0;
|
||||||
|
color: white;
|
||||||
.border-radius(20px);
|
.border-radius(20px);
|
||||||
.transition(~"background .2s, box-shadow .2s");
|
.transition(~"background .2s, box-shadow .2s");
|
||||||
|
|
||||||
|
@ -483,7 +484,6 @@ table.itemListContainer {
|
||||||
padding: 5px 10px;
|
padding: 5px 10px;
|
||||||
margin: 10px 10px 15px 0;
|
margin: 10px 10px 15px 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
height: 32px;
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
float: left;
|
float: left;
|
||||||
|
@ -503,6 +503,7 @@ table.itemListContainer {
|
||||||
display: block;
|
display: block;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
min-width: 32px;
|
min-width: 32px;
|
||||||
|
height: 32px;
|
||||||
background: url("img/payment.png") no-repeat center center transparent;
|
background: url("img/payment.png") no-repeat center center transparent;
|
||||||
|
|
||||||
> span {
|
> span {
|
||||||
|
@ -540,4 +541,23 @@ table.itemListContainer {
|
||||||
&:active {
|
&:active {
|
||||||
.box-shadow(~"0 1px 3px 0 black, 0 1px 3px 0 black inset");
|
.box-shadow(~"0 1px 3px 0 black, 0 1px 3px 0 black inset");
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.viewControl {
|
||||||
|
border-bottom: 1px solid @clrDarkBlue;
|
||||||
|
margin-bottom: 18px;
|
||||||
|
padding-bottom: 7px;
|
||||||
|
|
||||||
|
h2, h3, h4, h5 {
|
||||||
|
&:after {
|
||||||
|
content: ": ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
> * {
|
||||||
|
display: inline-block;
|
||||||
|
float: none;
|
||||||
|
vertical-align: middle;
|
||||||
|
margin: 0 10px 0 0;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue