| Author | Dave Jarvis <email> |
|---|---|
| Date | 2015-01-18 16:30:57 GMT-0800 |
| Commit | 5e1ef3cbf1d7824048e52c0e56fe20e493d43b4a |
| Parent | 8c6e5f4 |
| } | ||
| -build.dependsOn( copyLibraries ) | ||
| -copyLibraries.dependsOn( buildMenu ) | ||
| +buildMenu.dependsOn( copyLibraries ) | ||
| +run.dependsOn( buildMenu ) | ||
| dependencies { |
| .synopsis { | ||
| - padding-left: 10px; | ||
| + padding-top: 0.3em; | ||
| +} | ||
| + | ||
| +.synopsis, .tags { | ||
| + padding-left: 10px; | ||
| } | ||
| .synopsis > a { | ||
| - text-decoration: none; | ||
| font-family: "Montserrat",Helvetica,sans-serif; | ||
| font-size: 1.25em; | ||
| - color: #46A5E5; | ||
| } | ||
| .activation > .time, .statistics > .views { | ||
| padding-top: 0.25em; | ||
| -} | ||
| - | ||
| -.proposal { | ||
| - font-size: 1em; | ||
| - font-weight: normal; | ||
| - padding-top: 0.3em; | ||
| -} | ||
| - | ||
| -.proposal, .tags { | ||
| - padding-left: 10px; | ||
| -} | ||
| - | ||
| -.proposal > a { | ||
| - text-decoration: none; | ||
| - | ||
| - font-family: 'Montserrat', Helvetica, sans-serif; | ||
| - font-size: 1.25em; | ||
| - color: #46A5E5; | ||
| } | ||
| -@charset "utf-8"; | ||
| - | ||
| -a { | ||
| - text-decoration: none; | ||
| - font-weight: bold; | ||
| - color: #087ECB; | ||
| -} | ||
| - | ||
| -a:hover { | ||
| - color: #B93507; | ||
| -} | ||
| - | ||
| -div.header { | ||
| - text-align: center; | ||
| -} | ||
| - | ||
| -hr { | ||
| - background-color: #999; | ||
| - border: 0 none; | ||
| - color: #999; | ||
| - height: 1px; | ||
| -} | ||
| - | ||
| -a.page-prev { | ||
| - margin-right: 1em; | ||
| -} | ||
| - | ||
| -a.page-next::after { | ||
| - content: " →"; | ||
| -} | ||
| - | ||
| -a.page-prev::before { | ||
| - content: "← "; | ||
| -} | ||
| - | ||
| } | ||
| - protected void applyProperties( Transformer transformer ) { | ||
| - transformer.setOutputProperty( OutputKeys.ENCODING, getEncoding() ); | ||
| - } | ||
| - | ||
| /** | ||
| * Returns the default character encoding. | ||
| private void sendContent() throws Exception { | ||
| - getTransformer().transform( getDocument(), getResultStream() ); | ||
| + Transformer transformer = getTransformer(); | ||
| + transformer.setOutputProperty( OutputKeys.ENCODING, getEncoding() ); | ||
| + transformer.transform( getDocument(), getResultStream() ); | ||
| } | ||
| Delta | 10 lines added, 63 lines removed, 53-line decrease |
|---|