diff --git a/scm-webapp/src/main/webapp/resources/css/style.css b/scm-webapp/src/main/webapp/resources/css/style.css index b5e0e20445..0c1afac394 100644 --- a/scm-webapp/src/main/webapp/resources/css/style.css +++ b/scm-webapp/src/main/webapp/resources/css/style.css @@ -137,10 +137,23 @@ a.scm-link:hover { } .cs-tag, .cs-branch { + height: 18px; + vertical-align: middle; + display: inline-block; border: 1px solid gray; border-radius: 4px; } .cs-tag a, .cs-branch a { padding: 5px; -} \ No newline at end of file +} + +.cs-tag { + background-image: url(../images/tag.gif); + background-repeat: no-repeat; + background-position: 1px 1px; +} + +.cs-tag a { + margin-left: 16px; +} diff --git a/scm-webapp/src/main/webapp/resources/images/tag.gif b/scm-webapp/src/main/webapp/resources/images/tag.gif new file mode 100644 index 0000000000..29d90e26f3 Binary files /dev/null and b/scm-webapp/src/main/webapp/resources/images/tag.gif differ