Browse Source

Improve dropdown button alignment and fix hover bug (#27632) (#27637)

Backport #27632 by @wxiaoguang

1. fix #27631 , and add samples to devtest page
2. fix incorrect color for "ui dropdown button" when hover

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
tags/v1.21.0-rc2
Giteabot 7 months ago
parent
commit
21c3513d49
No account linked to committer's email address
3 changed files with 12 additions and 1 deletions
  1. 9
    0
      templates/devtest/gitea-ui.tmpl
  2. 1
    1
      web_src/css/base.css
  3. 2
    0
      web_src/css/modules/button.css

+ 9
- 0
templates/devtest/gitea-ui.tmpl View File

@@ -250,6 +250,15 @@
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
</div>
</div>

<div>
<hr>
<div class="ui tiny button">Button align with ...</div>
<div class="ui dropdown tiny button">
<span class="text">... Dropdown Button</span>
{{svg "octicon-triangle-down" 14 "dropdown icon"}}
</div>
</div>
</div>

<div>

+ 1
- 1
web_src/css/base.css View File

@@ -2194,7 +2194,7 @@ table th[data-sortt-desc] .svg {
height: 15px;
}

.ui.dropdown {
.ui.dropdown:not(.button) {
line-height: var(--line-height-default); /* the dropdown doesn't have default line-height, use this to make the dropdown icon align with plain dropdown */
}


+ 2
- 0
web_src/css/modules/button.css View File

@@ -128,11 +128,13 @@ It needs some tricks to tweak the left/right borders with active state */
.ui.primary.button:focus,
.ui.primary.buttons .button:focus {
background: var(--color-primary);
color: var(--color-primary-contrast);
}

.ui.primary.button:hover,
.ui.primary.buttons .button:hover {
background: var(--color-primary-hover);
color: var(--color-primary-contrast);
}

.ui.primary.button:active,

Loading…
Cancel
Save