summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-10-03 13:38:12 +0100
committerPhil Hughes <me@iamphill.com>2016-10-06 11:00:01 +0100
commit4241c2906c9531ab7ddb43740b222a102f5508fa (patch)
treea1e722087a588104a4013f03d26d98c18be30f7d /app/assets/stylesheets
parent951431bcf9e301e05b3caec7004de6f61e818054 (diff)
downloadgitlab-ce-4241c2906c9531ab7ddb43740b222a102f5508fa.tar.gz
Add new issue form to lists
Closes #21219
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/pages/boards.scss26
1 files changed, 26 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/boards.scss b/app/assets/stylesheets/pages/boards.scss
index ecc5b24e360..46e92b8a187 100644
--- a/app/assets/stylesheets/pages/boards.scss
+++ b/app/assets/stylesheets/pages/boards.scss
@@ -233,3 +233,29 @@ lex
margin-right: 5px;
}
}
+
+.board-issue-count-holder {
+ margin-top: -3px;
+
+ .btn {
+ line-height: 12px;
+ border-top-left-radius: 0;
+ border-bottom-left-radius: 0;
+ }
+}
+
+.board-issue-count {
+ padding-right: 10px;
+ padding-left: 10px;
+ line-height: 21px;
+ border-radius: $border-radius-base;
+ border-color: $border-color;
+ border-style: solid;
+ border-width: 1px 1px 1px 1px;
+
+ &.has-btn {
+ border-top-right-radius: 0;
+ border-bottom-right-radius: 0;
+ border-width: 1px 0 1px 1px;
+ }
+}