0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-10-16 08:54:39 -04:00

fix(webhook): prevent tag events from bypassing branch filters targets (#35567) (#35577)

Backport #35567 by Exgene

Co-authored-by: Kausthubh J Rao <105716675+Exgene@users.noreply.github.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
Giteabot
2025-10-04 01:49:16 +08:00
committed by GitHub
parent 6c8879b832
commit d94faf6d7e
7 changed files with 83 additions and 34 deletions

View File

@@ -101,6 +101,13 @@ samp,
font-size: 0.95em; /* compensate for monospace fonts being usually slightly larger */
}
code {
padding: 1px 4px;
border-radius: var(--border-radius);
background-color: var(--color-label-bg);
color: var(--color-label-text);
}
b,
strong,
h1,
@@ -177,6 +184,11 @@ table {
border-collapse: collapse;
}
ul {
margin: 0.5em 0;
padding: 0 0 0 1.5em;
}
button {
cursor: pointer;
}
@@ -603,11 +615,6 @@ img.ui.avatar,
text-align: center;
}
.ui .message > ul {
margin: 0;
padding: 0 1em;
}
.ui .header > i + .content {
padding-left: 0.75rem;
vertical-align: middle;

View File

@@ -218,11 +218,16 @@ textarea:focus,
.form .help {
color: var(--color-secondary-dark-5);
margin-top: 0.25em;
padding-bottom: 0.6em;
display: inline-block;
text-wrap: balance;
}
.form .help code {
color: var(--color-text-light-1);
}
.m-captcha-style {
width: 100%;
height: 5em;

View File

@@ -84,10 +84,3 @@
margin-right: 8px;
text-align: left;
}
.label-filter-exclude-info code {
border: 1px solid var(--color-secondary);
border-radius: var(--border-radius);
padding: 1px 2px;
font-size: 11px;
}