Author: dsetrakyan Date: Thu Jul 30 00:33:53 2015 New Revision: 1693370 URL: http://svn.apache.org/r1693370 Log: code and download for mobile
Modified: incubator/ignite/site/trunk/css/all.css incubator/ignite/site/trunk/download-mirrors.html incubator/ignite/site/trunk/scss/ignite.scss Modified: incubator/ignite/site/trunk/css/all.css URL: http://svn.apache.org/viewvc/incubator/ignite/site/trunk/css/all.css?rev=1693370&r1=1693369&r2=1693370&view=diff ============================================================================== --- incubator/ignite/site/trunk/css/all.css (original) +++ incubator/ignite/site/trunk/css/all.css Thu Jul 30 00:33:53 2015 @@ -8335,3 +8335,9 @@ section.usecase-page-section .first { font-weight: 500; } } + +@media (max-width: 767px) { + .syntaxhighlighter table td.gutter .line { + display: none !important; + } +} Modified: incubator/ignite/site/trunk/download-mirrors.html URL: http://svn.apache.org/viewvc/incubator/ignite/site/trunk/download-mirrors.html?rev=1693370&r1=1693369&r2=1693370&view=diff ============================================================================== --- incubator/ignite/site/trunk/download-mirrors.html (original) +++ incubator/ignite/site/trunk/download-mirrors.html Thu Jul 30 00:33:53 2015 @@ -28,7 +28,7 @@ <section id="downloads" class="feature-section"> <h2 style="text-align: left;">Apache Ignite Releases</h2> <p id="sources"><b>Sources</b></p> - <table> + <table class="formatted"> <thead> <tr><th>Version</th><th>Docs</th><th>Date</th><th>Source</th></tr> </thead> @@ -154,7 +154,7 @@ <a href="http://www.apache.org/dev/release.html#what">What is a Release?</a></p> <p> </p> <p>In-Memory Data Fabric:</p> - <table> + <table class="formatted"> <thead> <tr><th>Version</th><th>Docs</th><th>Date</th><th>Binary</th></tr> </thead> @@ -253,7 +253,7 @@ </table> <p> </p> <p>In-Memory Hadoop Accelerator:</p> - <table> + <table class="formatted"> <thead> <tr><th>Version</th><th>Docs</th><th>Date</th><th>Binary</th></tr> </thead> @@ -328,7 +328,7 @@ <section id="docker" class="feature-section"> <h2 style="text-align: left;">Docker And Cloud Images</h2> - <table> + <table class="formatted"> <thead> <tr><th>Name</th><th>Docs</th><th>Date</th><th>URL</th></tr> </thead> Modified: incubator/ignite/site/trunk/scss/ignite.scss URL: http://svn.apache.org/viewvc/incubator/ignite/site/trunk/scss/ignite.scss?rev=1693370&r1=1693369&r2=1693370&view=diff ============================================================================== --- incubator/ignite/site/trunk/scss/ignite.scss (original) +++ incubator/ignite/site/trunk/scss/ignite.scss Thu Jul 30 00:33:53 2015 @@ -838,3 +838,9 @@ iframe { } } } + +.syntaxhighlighter table td.gutter .line { + @media (max-width: $mobile) { + display: none !important; + } +}