Overview
Comment: | Made feed and story list divs clickable instead of just their text |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
7ff27f901d4929cba906a393246d0577 |
User & Date: | spiffy on 2011-12-02 03:31:07 |
Other Links: | manifest | tags |
Context
2011-12-03
| ||
12:54 | Minor changes to the layout Leaf check-in: bddb3e05ed user: spiffy tags: trunk, v0.5 | |
2011-12-02
| ||
03:31 | Made feed and story list divs clickable instead of just their text check-in: 7ff27f901d user: spiffy tags: trunk | |
2011-11-30
| ||
04:12 | Made the app substantially prettier check-in: 517f4aa073 user: spiffy tags: trunk | |
Changes
Modified applications/mobileblur/static/css/base.css from [c4d6d0ed8b] to [535095eebd].
︙ | ︙ | |||
515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 | h2, h3{ page-break-after: avoid; } } body { /* background-color: #f2c84b;*/ color: #493F3E } header { background-color: #95392E; padding: 1%; border-bottom: 1px solid #95392E; color: white; } header > h1 > a { text-decoration: none; color: white; font-weight: bold; } #story > header > a { color: white; } | > > > > | | < | > > > > > > > > | | > > | > | > | 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 | h2, h3{ page-break-after: avoid; } } body { /* background-color: #f2c84b;*/ color: #493F3E } a, a:hover { text-decoration: none; } header { background-color: #95392E; padding: 1%; border-bottom: 1px solid #95392E; color: white; } header > h1 > a { text-decoration: none; color: white; font-weight: bold; } #story > header > a { color: white; } header h2 { /* border-top: 1px solid white;*/ color: white; } #story-list { /* background-color: #f2c84b;*/ } #story-list a, .feed { font-weight: bold; margin-top: 0; } .story-date { font-size: .75em; color: #493F3E; font-weight: normal; } .feed { color: white; text-decoration: none; } .read { color: #D99B48; } .unread, .feed .feed-title { color: #C57E3C; } .ng, .nt, .ps { color: #493F3E; } #story-list .story, .feed { text-decoration: none; padding: .5%; border-top: 1px solid #95392E; margin-top: .33%; } span.ps, span.nt, span.ng { padding: .05em; |
︙ | ︙ | |||
583 584 585 586 587 588 589 | footer { background-color: #95392E; padding: 1%; border-top: 1px solid #95392E; color: white; } | | | 598 599 600 601 602 603 604 605 606 607 608 609 | footer { background-color: #95392E; padding: 1%; border-top: 1px solid #95392E; color: white; } footer a { text-decoration: none; color: white; font-weight: bold; } |
Modified applications/mobileblur/views/default/index.html from [de8ac0789f] to [2d4e4818bd].
1 2 3 | {{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} | > | | | | | | > | 1 2 3 4 5 6 7 8 9 10 11 12 | {{extend 'layout.html'}} {{ for feed in feeds.itervalues(): }} <a href="{{= URL(c="feeds", f="view", args=[feed["id"]]) }}"> <div class="feed"> {{ if threshold == -1 and feed["ng"] > 0: }} <span class='ng'>{{= feed["ng"] }}</span> {{ pass }} {{ if threshold <= 0 and feed["nt"] > 0: }} <span class='nt'>{{= feed["nt"] }}</span> {{ pass }} {{if feed["ps"] > 0: }}<span class='ps'>{{= feed["ps"] }}</span> {{ pass }} <span class="feed-title">{{= feed["feed_title"] }}</span> </div> </a> {{ pass }} |
Modified applications/mobileblur/views/feeds/view.html from [6526673ca3] to [a70d7ea9da].
1 2 3 4 5 6 7 8 | {{extend 'layout.html'}} {{ block header_bonus }} <h2>{{= feed["feed_title"] }}</h2> <a href="{{= URL("mark_read", args=[feed["id"]]) }}" class="button">Mark feed as read</a> {{ end }} <section id="story-list"> | < < < < | | | < < | | > < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | {{extend 'layout.html'}} {{ block header_bonus }} <h2>{{= feed["feed_title"] }}</h2> <a href="{{= URL("mark_read", args=[feed["id"]]) }}" class="button">Mark feed as read</a> {{ end }} <section id="story-list"> {{ for story in stories: if sum([v for k,v in story["intelligence"].iteritems()]) < threshold: continue }} <a href="{{= URL(c="stories", f="view", vars=dict(story=story["id"], feed_id=feed["id"])) }}" }}"> <div class="story"> <p class="story-title {{= "unread" if story["read_status"] == 0 else "read" }}">{{= story["story_title"] }}</p> <p class="story-date">{{= story["story_date"] }}</p> </div> </a> {{ pass }} </section> |