summaryrefslogtreecommitdiffstats
path: root/public/ng/less/ui/form.less
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@sapk.fr>2015-03-19 00:35:17 +0100
committerAntoine GIRARD <sapk@sapk.fr>2015-03-19 00:35:17 +0100
commit96a71aaed8b01e505fffbd740ffb492ce89cead1 (patch)
tree1d2471d760ddec010a4b8168d50640a39175b8d7 /public/ng/less/ui/form.less
parente9c599b48ac77114f1d7761855c72a980c751b53 (diff)
downloadgitea-96a71aaed8b01e505fffbd740ffb492ce89cead1.tar.gz
gitea-96a71aaed8b01e505fffbd740ffb492ce89cead1.zip
Apply ng to issue dashboard
Diffstat (limited to 'public/ng/less/ui/form.less')
-rw-r--r--public/ng/less/ui/form.less31
1 files changed, 30 insertions, 1 deletions
diff --git a/public/ng/less/ui/form.less b/public/ng/less/ui/form.less
index e7b49523d0..aeaf9c8813 100644
--- a/public/ng/less/ui/form.less
+++ b/public/ng/less/ui/form.less
@@ -70,6 +70,19 @@
}
}
+.btn-white {
+ background-color: @btnWhiteColor;
+ color: @baseFontColor;
+ border: 1px solid @btnWhiteBorderColor;
+ &:hover {
+ background-color: @btnWhiteHoverColor;
+ color: @baseFontColor;
+ }
+ &.active {
+ background-color: @btnWhiteHoverColor;
+ color: @baseFontColor;
+ }
+}
// status buttons
.btn-active {
@@ -118,6 +131,22 @@
}
}
+.btn-group {
+ display: inline-block;
+ > .btn {
+ position: relative;
+ float: left;
+ margin-right: -1px;
+ &:first-child{
+ border-bottom-left-radius: .25em;
+ border-top-left-radius: .25em;
+ }
+ &:last-child{
+ border-bottom-right-radius: .25em;
+ border-top-right-radius: .25em;
+ }
+ }
+}
// input form elements
.ipt {
&:focus {
@@ -198,4 +227,4 @@ label {
color: @labelRedColor;
}
}
-} \ No newline at end of file
+}