summaryrefslogtreecommitdiffstats
path: root/public/less
diff options
context:
space:
mode:
authorCherrg <michael@gnehr.de>2019-07-07 00:03:00 +0200
committertechknowlogick <techknowlogick@gitea.io>2019-07-06 18:03:00 -0400
commit362100023cc4fffbe053fc69bd8dd7252a30a0e3 (patch)
tree20eef6c40f6321a268686aafd54cecf313f42cc1 /public/less
parent5b92bc1bec26de0143efccf70927bc9e46f9101c (diff)
downloadgitea-362100023cc4fffbe053fc69bd8dd7252a30a0e3.tar.gz
gitea-362100023cc4fffbe053fc69bd8dd7252a30a0e3.zip
ui - issue view - fix icon position (#7354)
* issue view - fix icon position - move style from template to css - add bullets to: key, circle-slash, comment Signed-off-by: Michael Gnehr <michael@gnehr.de> * add border to symbols Signed-off-by: Michael Gnehr <michael@gnehr.de> * fix circle slash position Signed-off-by: Michael Gnehr <michael@gnehr.de> * fix top margin Signed-off-by: Michael Gnehr <michael@gnehr.de> * changed mixed space/tab indent to tabindent only Signed-off-by: Michael Gnehr <michael@gnehr.de>
Diffstat (limited to 'public/less')
-rw-r--r--public/less/_repository.less50
-rw-r--r--public/less/themes/arc-green.less8
2 files changed, 50 insertions, 8 deletions
diff --git a/public/less/_repository.less b/public/less/_repository.less
index dd986c8832..21aeea81e7 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -920,6 +920,45 @@
margin: 15px 0 15px 79px;
padding-left: 25px;
+ & > .octicon:not(.issue-symbol) {
+ text-shadow: -2px 0 #fff, 0 2px #fff, 2px 0 #fff, 0 -2px #fff;
+ }
+
+ & > .octicon.issue-symbol {
+ font-size: 20px;
+ margin-left: -35px;
+ margin-right: -1px;
+ margin-top: 0 !important;
+ height: 28px;
+ width: 28px;
+ border-radius: 50%;
+ text-align: center;
+ line-height: 28px;
+ background: #eee;
+
+ &::before {
+ width: 15px;
+ display: inline-block;
+ }
+
+ &.octicon-key::before {
+ width: 18px;
+ }
+
+ &.octicon-circle-slash::before {
+ width: 17px;
+ }
+
+ &.octicon-comment {
+ font-size: 21px;
+ line-height: 33px;
+
+ &::before {
+ width: 20px;
+ }
+ }
+ }
+
.octicon {
width: 30px;
float: left;
@@ -933,6 +972,7 @@
}
&.octicon-primitive-dot {
+ margin-top: -1px;
margin-left: -28.5px;
margin-right: -1px;
font-size: 30px;
@@ -940,21 +980,15 @@
}
&.octicon-bookmark {
- margin-top: 3px;
+ margin-top: 2px;
margin-left: -31px;
margin-right: -1px;
font-size: 25px;
}
- &.octicon-comment {
- margin-top: 4px;
- margin-left: -35px;
- font-size: 24px;
- }
-
&.octicon-eye {
margin-top: 3px;
- margin-left: -35px;
+ margin-left: -36px;
margin-right: 0;
font-size: 22px;
}
diff --git a/public/less/themes/arc-green.less b/public/less/themes/arc-green.less
index d4200b5162..cde5b5e7f5 100644
--- a/public/less/themes/arc-green.less
+++ b/public/less/themes/arc-green.less
@@ -595,6 +595,14 @@ a.ui.basic.green.label:hover {
border-top: 1px solid #353944;
}
+.repository.view.issue .comment-list .event > .octicon.issue-symbol {
+ background: #3b4954;
+}
+
+.repository.view.issue .comment-list .event > .octicon:not(.issue-symbol) {
+ text-shadow: -2px 0 #383c4a, 0 2px #383c4a, 2px 0 #383c4a, 0 -2px #383c4a;
+}
+
.ui .text.grey a {
color: #dbdbdb !important;
}