mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Style project list tags.
This commit is contained in:
parent
e68b166309
commit
17ea9d9799
3 changed files with 15 additions and 0 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue