diff options
author | Stas Vilchik <stas-vilchik@users.noreply.github.com> | 2017-03-09 17:32:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-09 17:32:32 +0100 |
commit | 82a3b919083f95998fa7cc274c1dd0f10ddcb470 (patch) | |
tree | 12cd78721784fdf15501c8bb5f6bc70f2179ecb8 /server/sonar-web/src/main/js/apps/projects/styles.css | |
parent | 64256992734c3e8184db370f42797e34ddc6339d (diff) | |
download | sonarqube-82a3b919083f95998fa7cc274c1dd0f10ddcb470.tar.gz sonarqube-82a3b919083f95998fa7cc274c1dd0f10ddcb470.zip |
SONAR-8913 display analysis date on projects page (#1765)
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projects/styles.css')
-rw-r--r-- | server/sonar-web/src/main/js/apps/projects/styles.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/apps/projects/styles.css b/server/sonar-web/src/main/js/apps/projects/styles.css index 3b2ced4253a..be23d753a3d 100644 --- a/server/sonar-web/src/main/js/apps/projects/styles.css +++ b/server/sonar-web/src/main/js/apps/projects/styles.css @@ -19,7 +19,8 @@ } .project-card { - height: 115px; + position: relative; + min-height: 121px; box-sizing: border-box; } @@ -96,6 +97,13 @@ line-height: 24px; } +.project-card-analysis-date { + margin-top: -15px; + padding-bottom: 5px; + padding-right: 20px; + text-align: right; +} + .project-card-not-analyzed { padding: 14px 0; } |