aboutsummaryrefslogtreecommitdiff
path: root/public/css/gogs.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/css/gogs.css')
-rwxr-xr-xpublic/css/gogs.css79
1 files changed, 73 insertions, 6 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css
index dd12ec53..cfa11341 100755
--- a/public/css/gogs.css
+++ b/public/css/gogs.css
@@ -1258,9 +1258,16 @@ body {
}
#issue .issue-child .panel-heading .user,
#issue .issue-closed a.user,
-#issue .issue-opened a.user {
+#issue .issue-opened a.user,
+#issue .issue-reference a.user {
font-weight: bold;
}
+
+#issue .issue-child .issue-content .user .avatar {
+ height: 21px;
+ width: 21px;
+}
+
#issue .issue-line {
border-color: #CCC;
}
@@ -1280,18 +1287,26 @@ body {
width: 60%;
}
#issue .issue-closed .issue-content,
-#issue .issue-opened .issue-content {
+#issue .issue-opened .issue-content,
+#issue .issue-reference .issue-content {
line-height: 42px;
}
#issue .issue-closed,
-#issue .issue-opened {
+#issue .issue-opened,
+#issue .issue-reference {
border-bottom: 2px solid #CCC;
margin-bottom: 24px;
padding-bottom: 24px;
}
+
+#issue .issue-reference {
+ padding-bottom: 6px;
+}
+
#issue .issue-closed .label-danger,
-#issue .issue-opened .label-success {
- margin: 0 .8em;
+#issue .issue-opened .label-success,
+#issue .issue-reference .label-primary {
+ margin: 0.8em;
}
#issue .milestone-item .actions {
margin-top: 10px;
@@ -1779,4 +1794,56 @@ body {
color: #444;
font-weight: bold;
line-height: 30px;
-} \ No newline at end of file
+}
+
+.issue-main .attachments {
+ margin: 0px 10px 10px 10px;
+}
+
+.issue-main .attachments .attachment-label {
+ margin-right: 5px;
+}
+
+.attachment-preview {
+ position: absolute;
+ top: 0px;
+ bottom: 0px;
+
+ margin: 5px;
+ padding: 8px;
+
+ background: #fff;
+ border: 1px solid #d8d8d8;
+ box-shadow: 0 0 5px 1px #d8d8d8;
+}
+
+.attachment-preview-img {
+ border: 1px solid #d8d8d8;
+}
+
+#attachments-button {
+ float: left;
+}
+
+#attached {
+ margin: 10px 0 15px;
+}
+
+#attached-list .label {
+ display: inline-block;
+ vertical-align: top;
+ margin-right: 10px;
+ padding-right: 0;
+}
+
+#attached-list .label .attachment-remove {
+ cursor: pointer;
+}
+
+#attached-list .label .attachment-remove:hover {
+ background: #d8d8d8;
+}
+
+#issue-create-form #attached {
+ margin-bottom: 0;
+}