mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-05-20 00:40:26 +00:00
Various UI and arc-green fixes (#13291)
- introduce variable for border-radius value - fix some white borders in arc-green - add text selection and placeholder in arc-green - tweak branch list footer - more things I forgot Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: zeripath <art27@cantab.net>
This commit is contained in:
parent
65dc4d0410
commit
c5020cff3d
5 changed files with 87 additions and 14 deletions
|
@ -5,6 +5,7 @@
|
|||
--fonts-emoji: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", "Twemoji Mozilla";
|
||||
/* other variables */
|
||||
--fonts-regular: var(--fonts-proportional), var(--fonts-emoji), sans-serif;
|
||||
--border-radius: .28571429rem;
|
||||
}
|
||||
|
||||
:root:lang(ja) {
|
||||
|
@ -114,7 +115,7 @@ a {
|
|||
}
|
||||
|
||||
.rounded {
|
||||
border-radius: .28571429rem !important;
|
||||
border-radius: var(--border-radius) !important;
|
||||
}
|
||||
|
||||
.wrap {
|
||||
|
@ -1230,6 +1231,18 @@ table th[data-sortt-desc] {
|
|||
}
|
||||
}
|
||||
|
||||
.ui.dropdown .menu .item {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.ui.dropdown .menu .item:first-of-type {
|
||||
border-radius: var(--border-radius) var(--border-radius) 0 0;
|
||||
}
|
||||
|
||||
.ui.dropdown .menu .item:last-of-type {
|
||||
border-radius: 0 0 var(--border-radius) var(--border-radius);
|
||||
}
|
||||
|
||||
.text-label {
|
||||
display: inline-flex !important;
|
||||
align-items: center !important;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue