diff --git a/main/webapp/modules/core/index.vt b/main/webapp/modules/core/index.vt index a5c886ed6..7438a2c69 100644 --- a/main/webapp/modules/core/index.vt +++ b/main/webapp/modules/core/index.vt @@ -45,7 +45,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff --git a/main/webapp/modules/core/scripts/index/open-project-ui.js b/main/webapp/modules/core/scripts/index/open-project-ui.js index 95fe6063c..640b39acf 100644 --- a/main/webapp/modules/core/scripts/index/open-project-ui.js +++ b/main/webapp/modules/core/scripts/index/open-project-ui.js @@ -122,8 +122,8 @@ Refine.OpenProjectUI.prototype._renderProjects = function(data) { '' + '' + '' + - '' + '' + + '' + '
NameLast modifiedName
' ).appendTo(container)[0]; @@ -189,17 +189,16 @@ Refine.OpenProjectUI.prototype._renderProjects = function(data) { $(tr.insertCell(tr.cells.length)).css('width', '1%') ); - var nameLink = $('') - .addClass("list-table-itemname") - .text(project.name) - .attr("href", "/project?project=" + project.id) - .appendTo(tr.insertCell(tr.cells.length)); - - $('
') .html(formatRelativeDate(project.date)) .addClass("last-modified") .attr("title", project.date.toString()) + .appendTo($(tr.insertCell(tr.cells.length)).attr('width', '1%')); + + var nameLink = $('') + .addClass("project-name") + .text(project.name) + .attr("href", "/project?project=" + project.id) .appendTo(tr.insertCell(tr.cells.length)); $(tr).mouseenter(function() { diff --git a/main/webapp/modules/core/styles/index.less b/main/webapp/modules/core/styles/index.less index c60f5b5f5..be6b0f987 100644 --- a/main/webapp/modules/core/styles/index.less +++ b/main/webapp/modules/core/styles/index.less @@ -41,6 +41,13 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. visibility: hidden; } +#slogan { + margin: 0 1em; + font-style: italic; + font-size: 110%; + color: @near_black; + } + #left-panel { } diff --git a/main/webapp/modules/core/styles/index/open-project-ui.less b/main/webapp/modules/core/styles/index/open-project-ui.less index 9b6d7a0b8..4a0e8796f 100644 --- a/main/webapp/modules/core/styles/index/open-project-ui.less +++ b/main/webapp/modules/core/styles/index/open-project-ui.less @@ -53,9 +53,32 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. font-size: 1.3em; } +#projects-container > table { + width: 100%; + } +#projects-container > table > tbody > tr > td, +#projects-container > table > tbody > tr > th { + padding-top: @padding_tight; + text-align: left; + vertical-align: baseline; + padding: @padding_tighter @padding_tight; + font-size: 1.1em; + color: @metadata_grey; + border-bottom: dotted 1px @faint_grey; + } + +#projects-container > table > tbody > tr > th { + font-weight: bold; + background: @chrome_secondary; + } + +#projects-container .project .project-name { + font-size: 120%; + } + #projects-container .project .last-modified { white-space: nowrap; -} + } #projects-container .message { padding: @padding_loose;