aboutsummaryrefslogtreecommitdiff
path: root/public/ng/less/gogs/issue.less
diff options
context:
space:
mode:
Diffstat (limited to 'public/ng/less/gogs/issue.less')
-rw-r--r--public/ng/less/gogs/issue.less121
1 files changed, 117 insertions, 4 deletions
diff --git a/public/ng/less/gogs/issue.less b/public/ng/less/gogs/issue.less
index 12cc59fc..79f9d793 100644
--- a/public/ng/less/gogs/issue.less
+++ b/public/ng/less/gogs/issue.less
@@ -223,19 +223,19 @@ textarea#issue-add-content {
}
// #issue list navigator
#issue-list-nav {
+ border-bottom: 1px solid #DDD;
+ padding-bottom: 12px;
li {
> a {
font-size: 13px;
font-weight: bold;
- padding: .4em .9em;
- border-radius: .3em;
+ padding: .2em .8em;
}
}
li.current {
> a {
background-color: #0079bc;
color: #FAFAFA;
- border-radius: .3em;
}
}
li.right {
@@ -247,7 +247,120 @@ textarea#issue-add-content {
> a {
padding: 0 !important;
button {
- height: 34px;
+ height: 29px;
+ }
+ }
+}
+// issue list menu
+#issue-list-menu {
+ padding: 16px 0 12px 0;
+ border-bottom: 1px solid #BBB;
+ margin-bottom: 12px;
+ .mark {
+ a {
+ color: #AAA;
+ &:hover {
+ color: #444;
+ }
+ }
+ &.hover {
+ a {
+ color: #222;
+ font-weight: bold;
+ }
+ }
+ }
+ > .left {
+ .mark {
+ margin-right: 12px;
+ }
+ }
+ > .right {
+ .mark {
+ margin-left: 12px;
+ }
+ }
+}
+// each issue list item
+#issue-list,
+#pull-list {
+ .item {
+ position: relative;
+ padding-bottom: 12px;
+ margin-bottom: 12px;
+ border-bottom: 1px dashed #AAA;
+ .title > .title-text {
+ color: #444;
+ font-size: 15px;
+ margin: 0 6px;
+ }
+ .index-num {
+ padding: .25em .6em;
+ }
+ }
+ .comment {
+ color: #666;
+ position: absolute;
+ top: 6px;
+ right: 0;
+ }
+ .issue-label {
+ padding: .25em .6em;
+ a {
+ color: #FFF;
}
}
+ .desc {
+ color: #999;
+ a {
+ color: #999;
+ &:hover {
+ color: #03a2ef;
+ }
+ }
+ }
+}
+// issue list pager
+#issue-list-pager {
+ margin: 18px 0 24px 0;
+ font-size: 14px;
+ line-height: 24px;
+}
+// labels numbers
+#labels-num {
+ margin-right: 1em;
+}
+// labels list
+#label-list {
+ .right {
+ margin-left: 1em;
+ color: #999;
+ i {
+ margin-right: 3px;
+ }
+ line-height: 30px;
+ &:hover {
+ color: #444444;
+ }
+ }
+ .num {
+ margin-right: 3px;
+ }
+ .issue-num {
+ margin-right: 4em;
+ }
+ .label {
+ &:hover {
+ color: #FFF;
+ }
+ i {
+ margin-right: 6px;
+ }
+ }
+ .item {
+ height: 30px;
+ padding-bottom: 12px;
+ margin-bottom: 12px;
+ border-bottom: 1px dashed #AAA;
+ }
} \ No newline at end of file