same clone url border color as surrounding buttons

This commit is contained in:
Ed Silkworth 2022-12-19 00:21:52 -08:00
parent 45f13a2f73
commit a9e1e84fef
No known key found for this signature in database
GPG Key ID: 26F260F04191F431
2 changed files with 7 additions and 1 deletions

View File

@ -23,4 +23,5 @@ Nov 16, 2022 · forked, rebased theme from Gitea's default theme, adopted colors
Nov 17, 2022 · changed row highlight color
Nov 18, 2022 · made pull requests and new releases menu item and .diff-detail-box background match --color-background
Nov 29, 2022 · made collapsible elements easier to distinguish from main body
Dec 12, 2022 · fixed monospace font to display SF Mono in Safari on macOS
Dec 12, 2022 · fixed monospace font to display SF Mono in Safari on macOS
Dec 19, 2022 · for clone url border, used same color as surrounding buttons' border

View File

@ -81,4 +81,9 @@ details {
background-color: var(--color-secondary-light-2); /* make collapsible elements easier to distinguish from main body */
border-radius: 4px; /* same as code blocks */
padding: .2em .4em; /* same as code blocks */
}
.js-clone-url {
border: 1px solid var(--color-light-border)!important; /* use same border color as surrounding buttons */
border-right: none!important; /* border already there */
}