Overview
Comment: | Minor changes to the layout |
---|---|
Timelines: | family | ancestors | descendants | both | trunk | v0.5 |
Files: | files | file ages | folders |
SHA1: |
bddb3e05ed96a3d470766cf57640142f |
User & Date: | spiffy on 2011-12-03 12:54:50 |
Other Links: | 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 | |
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 | |
Changes
Modified applications/mobileblur/static/css/base.css from [535095eebd] to [e5c27c75f9].
︙ | ︙ | |||
512 513 514 515 516 517 518 | tr, img { page-break-inside: avoid; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3{ page-break-after: avoid; } } body { | < > > > < | 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 | tr, img { page-break-inside: avoid; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3{ page-break-after: avoid; } } body { color: #493F3E } #content { padding: 0 0.5% 0 0.5%; } a, a:hover { text-decoration: none; } header { background-color: #95392E; border-bottom: 1px solid #95392E; color: white; } header > h1 > a { text-decoration: none; color: white; font-weight: bold; |
︙ | ︙ | |||
546 547 548 549 550 551 552 553 554 555 556 557 558 559 | } #story-list { /* background-color: #f2c84b;*/ } #story-list a, .feed { font-weight: bold; margin-top: 0; } .story-date { font-size: .75em; color: #493F3E; | > | 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 | } #story-list { /* background-color: #f2c84b;*/ } #story-list a, .feed { padding: 0.5% 0 0.5% 0; font-weight: bold; margin-top: 0; } .story-date { font-size: .75em; color: #493F3E; |
︙ | ︙ | |||
573 574 575 576 577 578 579 | } .ng, .nt, .ps { color: #493F3E; } #story-list .story, .feed { text-decoration: none; | | < | 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 | } .ng, .nt, .ps { color: #493F3E; } #story-list .story, .feed { text-decoration: none; padding: .5 0 .5% 0%; border-top: 1px solid #95392E; margin-top: .33%; } span.ps, span.nt, span.ng { padding: .05em; border-radius: 5px; } span.ps { background-color: #ABAA7A; } span.nt { background-color: #D99B48; } span.ng { background-color: red; } footer { background-color: #95392E; border-top: 1px solid #95392E; color: white; } footer a { text-decoration: none; color: white; font-weight: bold; } |
Modified applications/mobileblur/views/layout.html from [2dc8430c3d] to [79485da9a7].
︙ | ︙ | |||
55 56 57 58 59 60 61 | else: width_content='100%' if left_sidebar_enabled: left_sidebar_style = 'style="display: block;"' else: left_sidebar_style = 'style="display: none;"' if right_sidebar_enabled: right_sidebar_style = 'style="display: block;"' else: right_sidebar_style = 'style="display: none;"' style_content = 'style="width: %s"' % width_content }} | < < | | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | else: width_content='100%' if left_sidebar_enabled: left_sidebar_style = 'style="display: block;"' else: left_sidebar_style = 'style="display: none;"' if right_sidebar_enabled: right_sidebar_style = 'style="display: block;"' else: right_sidebar_style = 'style="display: none;"' style_content = 'style="width: %s"' % width_content }} </head> <!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ --> <!--[if lt IE 7 ]> <body class="ie6"> <![endif]--> <!--[if IE 7 ]> <body class="ie7"> <![endif]--> <!--[if IE 8 ]> <body class="ie8"> <![endif]--> <!--[if IE 9 ]> <body class="ie9"> <![endif]--> <!--[if (gt IE 9)|!(IE)]><!--> <body> <!--<![endif]--> <div class="flash">{{=response.flash or ''}}</div> <!-- notification div --> <header> {{block header}} <!-- this is default header --> <h1><a href="{{= URL("mobileblur", "default", "index") }}">MobileBlur</a></h1> {{end}} {{ block header_bonus }}{{end}} </header> <section id="content"{{=XML(style_content)}} > {{include}} </section> <footer> <a href="{{= URL("default", "logout") }}">Log out</a> </footer> |
︙ | ︙ |