Overview
Comment: | Made the story title in the story view nicely styled. Put the 'mark story read' button inside the header |
---|---|
Timelines: | family | ancestors | descendants | both | develop | v0.4 |
Files: | files | file ages | folders |
SHA1: |
dea6297b3d667793c24a2766ed8e76ee |
User & Date: | spiffy on 2011-11-30 02:49:54 |
Other Links: | branch diff | manifest | tags |
Context
2011-12-03
| ||
12:55 | Accidentally made a few commits in trunk instead of develop Leaf check-in: f6c84eb8e3 user: spiffy tags: develop | |
2011-11-30
| ||
04:12 | Made the app substantially prettier check-in: 517f4aa073 user: spiffy tags: trunk | |
02:49 | Made the story title in the story view nicely styled. Put the 'mark story read' button inside the header check-in: dea6297b3d user: spiffy tags: develop, v0.4 | |
02:39 | Brought the item borders inline with the new color palette check-in: c292845f56 user: spiffy tags: develop | |
Changes
Modified applications/mobileblur/static/css/base.css from [de7a647041] to [c4d6d0ed8b].
︙ | ︙ | |||
528 529 530 531 532 533 534 | } header > h1 > a { text-decoration: none; color: white; font-weight: bold; } | > > > > | > | 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 | } header > h1 > a { text-decoration: none; color: white; font-weight: bold; } #story > header > a { color: white; } header > a> h2 { /* border-top: 1px solid white;*/ color: white; } #story-list { /* background-color: #f2c84b;*/ } #story-list > .story > a, .feed > a { |
︙ | ︙ |
Modified applications/mobileblur/views/stories/view.html from [4cba406852] to [bcfec0acca].
1 2 | {{extend 'layout.html'}} | < | | | | < | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 | {{extend 'layout.html'}} {{ block header_bonus }} <a href="{{= story["story_permalink"] }}"> <h2>{{= story["story_title"] }}</h2> </a> <a href="{{= URL("mark_read", vars=dict(story_id=story["id"], feed_id=feed_id)) }}" class="button"> Mark story as read </a> {{ end }} <section id="story"> {{= XML(story["story_content"]) }} </section> |