File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed
templates/repo/settings/webhook Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 60
60
{{range .Webhooks}}
61
61
<div class="item truncated-item-container">
62
62
<span class="text {{if eq .LastStatus 1}}green{{else if eq .LastStatus 2}}red{{else}}grey{{end}} gt-mr-3">{{svg "octicon-dot-fill" 22}}</span>
63
- <a class="text truncate gt-f1 gt-mr-3" title="{{.URL}}" href="{{$.BaseLink}}/{{.ID}}">{{.URL}}</a>
63
+ <div class="text truncate gt-f1 gt-mr-3">
64
+ <a title="{{.URL}}" href="{{$.BaseLink}}/{{.ID}}">{{.URL}}</a>
65
+ </div>
64
66
<a class="muted gt-p-3" href="{{$.BaseLink}}/{{.ID}}">{{svg "octicon-pencil"}}</a>
65
67
<a class="delete-button gt-p-3" data-url="{{$.Link}}/delete" data-id="{{.ID}}">{{svg "octicon-trash"}}</a>
66
68
</div>
Original file line number Diff line number Diff line change @@ -481,6 +481,14 @@ a.label,
481
481
text-align : start; /* Override fomantic's `text-align: left` to make RTL work via HTML `dir="auto"` */
482
482
}
483
483
484
+ /* fix Fomantic's line-height causing vertical scrollbars to appear */
485
+ ul .ui .list li ,
486
+ ol .ui .list li ,
487
+ .ui .list > .item ,
488
+ .ui .list .list > .item {
489
+ line-height : var (--line-height-default );
490
+ }
491
+
484
492
.ui .input .focus > input ,
485
493
.ui .input > input : focus {
486
494
border-color : var (--color-primary );
You can’t perform that action at this time.
0 commit comments