mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
add webhook recent deliveries
This commit is contained in:
2
public/css/gogs.min.css
vendored
2
public/css/gogs.min.css
vendored
File diff suppressed because one or more lines are too long
@@ -341,10 +341,6 @@ function initRepository() {
|
||||
|
||||
// Diff
|
||||
if ($('.repository.diff').length > 0) {
|
||||
$('.diff-detail-box .toggle.button').click(function () {
|
||||
$($(this).data('target')).slideToggle(100);
|
||||
})
|
||||
|
||||
var $counter = $('.diff-counter');
|
||||
if ($counter.length < 1) {
|
||||
return;
|
||||
@@ -406,6 +402,11 @@ $(document).ready(function () {
|
||||
}
|
||||
}
|
||||
});
|
||||
$('.tabular.menu .item').tab();
|
||||
|
||||
$('.toggle.button').click(function () {
|
||||
$($(this).data('target')).slideToggle(100);
|
||||
});
|
||||
|
||||
// Dropzone
|
||||
if ($('#dropzone').length > 0) {
|
||||
|
@@ -7,6 +7,19 @@ body {
|
||||
img {
|
||||
border-radius: 3px;
|
||||
}
|
||||
pre {
|
||||
font: 12px Consolas, "Liberation Mono", Menlo, Courier, monospace;
|
||||
&.raw {
|
||||
padding: 7px 12px;
|
||||
margin: 10px 0;
|
||||
background-color: #f8f8f8;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5;
|
||||
overflow: auto;
|
||||
}
|
||||
}
|
||||
.full.height {
|
||||
padding: 0;
|
||||
margin: 0 0 -@footer-margin*2 0;
|
||||
@@ -121,6 +134,10 @@ img {
|
||||
&.thin {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
&.middle {
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
|
||||
.message {
|
||||
|
@@ -624,7 +624,7 @@
|
||||
}
|
||||
}
|
||||
.hook.list {
|
||||
.item:not(:first-child) {
|
||||
> .item:not(:first-child) {
|
||||
border-top: 1px solid #eaeaea;
|
||||
}
|
||||
.item {
|
||||
@@ -632,6 +632,40 @@
|
||||
.octicon,
|
||||
.fa {
|
||||
width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
.hook.history.list {
|
||||
.item {
|
||||
padding-left: 13px;
|
||||
.meta {
|
||||
.ui.right {
|
||||
margin-top: 5px;
|
||||
.time {
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.info {
|
||||
margin-top: 10px;
|
||||
.tabular.menu {
|
||||
.item {
|
||||
font-weight: 500;
|
||||
}
|
||||
}
|
||||
.tab.segment {
|
||||
border: none;
|
||||
padding: 0;
|
||||
padding-top: 10px;
|
||||
box-shadow: none;
|
||||
* {
|
||||
color: #666;
|
||||
}
|
||||
pre {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user