diff options
author | Justin Nuß <nuss.justin@gmail.com> | 2014-07-26 11:23:58 +0200 |
---|---|---|
committer | Justin Nuß <nuss.justin@gmail.com> | 2014-07-26 11:23:58 +0200 |
commit | 91480f3791f266369c343c539f8eeec245fa969a (patch) | |
tree | a03ad6062fe4b546367cdb6f9921399458d97441 /public/ng/less/ui/label.less | |
parent | 835e85b5ce9921ffd4d50b90b706e02685167331 (diff) | |
parent | 35c75f06a0a4f321021984830d760e67ca0ef8e5 (diff) | |
download | gitea-91480f3791f266369c343c539f8eeec245fa969a.tar.gz gitea-91480f3791f266369c343c539f8eeec245fa969a.zip |
Merge branch 'dev' of https://github.com/gogits/Gogs into issue/281
Conflicts:
modules/base/tool.go
Diffstat (limited to 'public/ng/less/ui/label.less')
-rw-r--r-- | public/ng/less/ui/label.less | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/public/ng/less/ui/label.less b/public/ng/less/ui/label.less new file mode 100644 index 0000000000..1cf0a81d85 --- /dev/null +++ b/public/ng/less/ui/label.less @@ -0,0 +1,41 @@ +@import "var"; + +.label { + padding: 2px 6px; + color: @labelFontColor; +} + +.label-red { + background-color: @labelRedColor; +} + +.label-blue { + background-color: @labelBlueColor; +} + +.label-gray { + background-color: @labelGrayColor; +} + +.label-green { + background-color: @labelGreenColor; +} + +.label-orange { + background-color: @labelOrangeColor; +} + +.label-black { + background-color: @labelBlackColor; +} + +.label-radius{ + border-radius: .2em; +} + +.label-link{ + color: @labelFontColor; + &:hover{ + color: @labelFontColor; + } +}
\ No newline at end of file |