mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
#13 finish user and repository search
Both are possible on explore and admin panel
This commit is contained in:
@@ -441,30 +441,30 @@
|
||||
"outputStyle": 1,
|
||||
"syntaxCheckerStyle": 1
|
||||
},
|
||||
"\/plugins\/highlight-9.1.0\/default.css": {
|
||||
"\/plugins\/highlight-9.2.0\/default.css": {
|
||||
"fileType": 16,
|
||||
"ignore": 0,
|
||||
"ignoreWasSetByUser": 0,
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.1.0\/default.css",
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.2.0\/default.css",
|
||||
"outputAbbreviatedPath": "No Output Path",
|
||||
"outputPathIsOutsideProject": 0,
|
||||
"outputPathIsSetByUser": 0
|
||||
},
|
||||
"\/plugins\/highlight-9.1.0\/github.css": {
|
||||
"\/plugins\/highlight-9.2.0\/github.css": {
|
||||
"fileType": 16,
|
||||
"ignore": 0,
|
||||
"ignoreWasSetByUser": 0,
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.1.0\/github.css",
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.2.0\/github.css",
|
||||
"outputAbbreviatedPath": "No Output Path",
|
||||
"outputPathIsOutsideProject": 0,
|
||||
"outputPathIsSetByUser": 0
|
||||
},
|
||||
"\/plugins\/highlight-9.1.0\/highlight.pack.js": {
|
||||
"\/plugins\/highlight-9.2.0\/highlight.pack.js": {
|
||||
"fileType": 64,
|
||||
"ignore": 0,
|
||||
"ignoreWasSetByUser": 0,
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.1.0\/highlight.pack.js",
|
||||
"outputAbbreviatedPath": "\/plugins\/highlight-9.1.0\/min\/highlight.pack-min.js",
|
||||
"inputAbbreviatedPath": "\/plugins\/highlight-9.2.0\/highlight.pack.js",
|
||||
"outputAbbreviatedPath": "\/plugins\/highlight-9.2.0\/min\/highlight.pack-min.js",
|
||||
"outputPathIsOutsideProject": 0,
|
||||
"outputPathIsSetByUser": 0,
|
||||
"outputStyle": 1,
|
||||
|
@@ -2594,6 +2594,10 @@ footer .container .links > *:first-child {
|
||||
padding-top: 15px;
|
||||
padding-bottom: 80px;
|
||||
}
|
||||
.explore .navbar .octicon {
|
||||
width: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
.ui.repository.list .item {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
@@ -2620,3 +2624,26 @@ footer .container .links > *:first-child {
|
||||
font-size: 12px;
|
||||
color: #808080;
|
||||
}
|
||||
.ui.user.list .item {
|
||||
padding-bottom: 25px;
|
||||
}
|
||||
.ui.user.list .item:not(:first-child) {
|
||||
border-top: 1px solid #eee;
|
||||
padding-top: 25px;
|
||||
}
|
||||
.ui.user.list .item .ui.avatar.image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
.ui.user.list .item .description {
|
||||
margin-top: 5px;
|
||||
}
|
||||
.ui.user.list .item .description .octicon:not(:first-child) {
|
||||
margin-left: 5px;
|
||||
}
|
||||
.ui.user.list .item .description a {
|
||||
color: #333;
|
||||
}
|
||||
.ui.user.list .item .description a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
@@ -1,6 +1,13 @@
|
||||
.explore {
|
||||
padding-top: 15px;
|
||||
padding-bottom: @footer-margin * 2;
|
||||
|
||||
.navbar {
|
||||
.octicon {
|
||||
width: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ui.repository.list {
|
||||
@@ -35,3 +42,34 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ui.user.list {
|
||||
.item {
|
||||
padding-bottom: 25px;
|
||||
|
||||
&:not(:first-child) {
|
||||
border-top: 1px solid #eee;
|
||||
padding-top: 25px;
|
||||
}
|
||||
|
||||
.ui.avatar.image {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.description {
|
||||
margin-top: 5px;
|
||||
|
||||
.octicon:not(:first-child) {
|
||||
margin-left: 5px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #333;
|
||||
&:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user