New-style dates

master
Nick Sergeant 2012-09-07 22:04:38 -04:00
parent c8b2d2d6f9
commit 8e289e8006
5 changed files with 76 additions and 40 deletions

View File

@ -15,7 +15,7 @@
<script type="text/javascript" src="{{ STATIC_URL }}js/pro.js"></script>
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?3" />
<link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pro.css?4" />
{% if has_snipts and not detail %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="{{ request.path }}?rss{% if not public %}&api_key={{ request.user.api_key.key }}{% endif %}" />

View File

@ -2,7 +2,7 @@
<article class="group {% if detail %}detail{% endif %}">
<div class="gutter">
<a href="{{ snipt.get_full_absolute_url }}">
<a href="{{ snipt.get_full_absolute_url }}" {% if detail %}class="detail"{% endif %}>
<time pubdate datetime="{{ snipt.publish_date|date:'c' }}">
<span class="id">
#{{ snipt.id }}

File diff suppressed because one or more lines are too long

View File

@ -260,52 +260,88 @@ article {
div.gutter {
a {
text-decoration: none;
display: block;
height: 20px;
text-align: center;
width: 100%;
time {
background: #FFF;
background: #F9F9F9;
border: 1px solid #EAEAEA;
display: block;
margin-top: -14px;
display: inline-block;
height: 20px;
margin-top: 4px;
position: relative;
z-index: 51;
@include border-radius(3px);
width: 20px;
z-index: 49;
@include border-radius(20px);
span {
display: block;
text-align: center;
display: none;
}
}
&:hover, &.detail {
height: auto;
text-decoration: none;
width: auto;
&.id {
background: #F9F9F9;
border-bottom: 1px solid #EAEAEA;
color: #CCC;
font: normal 11px $Helvetica;
padding: 2px 0;
&:before {
display: none;
}
time {
background: #FFF;
border: 1px solid #EAEAEA;
display: block;
height: auto;
margin-top: -14px;
position: relative;
width: auto;
z-index: 51;
@include border-radius(3px);
span {
display: block;
text-align: center;
&.id {
background: #F9F9F9;
border-bottom: 1px solid #EAEAEA;
color: #CCC;
font: normal 11px $Helvetica;
padding: 2px 0;
}
&.mon-day {
color: #999;
font: normal 17px $Helvetica;
letter-spacing: -1px;
padding-top: 25px;
text-transform: uppercase;
}
&.year {
color: #999;
font: normal 12px $Helvetica;
letter-spacing: -1px;
padding-bottom: 10px;
text-transform: uppercase;
}
}
&.mon-day {
color: #999;
font: normal 17px $Helvetica;
letter-spacing: -1px;
padding-top: 9px;
text-transform: uppercase;
}
&.year {
color: #999;
font: normal 12px $Helvetica;
letter-spacing: -1px;
padding-bottom: 9px;
text-transform: uppercase;
&:after {
background: transparent url('/static/images/date-arrow.gif') top left no-repeat;
content: "";
display: block;
height: 11px;
position: absolute;
right: -6px;
top: 22px;
width: 6px;
}
}
&:after {
background: transparent url('/static/images/date-arrow.gif') top left no-repeat;
content: "";
display: block;
height: 11px;
position: absolute;
right: -6px;
top: 22px;
width: 6px;
}
&.detail {
time {
span.mon-day {
padding-top: 10px;
}
}
}
}

File diff suppressed because one or more lines are too long