Style project list tags.

This commit is contained in:
Paulo Reis 2017-10-02 17:01:51 +01:00
parent e68b166309
commit 17ea9d9799
3 changed files with 15 additions and 0 deletions

View file

@ -294,6 +294,12 @@ ul.project-list {
display: inline-block;
padding-top: 0.3em;
color: #FFF;
border-radius: @tag-border-radius;
background-color: @tag-bg-color;
&:hover,
&:focus {
background-color: @tag-bg-hover-color;
}
}
.tag-label-name {
padding-right: 0.3em;

View file

@ -828,6 +828,10 @@
@btn-border-width: 1px;
@btn-border-bottom-width: 2px;
@tag-border-radius: 0.25em;
@tag-bg-color: inherit;
@tag-bg-hover-color: inherit;
@left-menu-width: 260px;
@left-menu-animation-duration: 0.35s;

View file

@ -56,6 +56,11 @@
@btn-info-bg : @ol-blue;
@btn-info-border : transparent;
// Tags
@tag-border-radius : 999px;
@tag-bg-color : @ol-green;
@tag-bg-hover-color : @ol-dark-green;
// Navbar
@navbar-default-padding : (@grid-gutter-width / 2) 0;
@navbar-default-link-color : #FFF;