You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gitea/web_src/js/components
silverwind a96c73f979
Remove svg.svg class, restore .rss-icon (#24667)
Fix regression from https://github.com/go-gitea/gitea/pull/24476 where
the `svg.svg` class misaligns SVG icons across the site and streched
buttons unintentionally in vertical height.

Before (button 30.3px):
<img width="157" alt="Screenshot 2023-05-11 at 22 09 42"
src="https://github.com/go-gitea/gitea/assets/115237/0fd137ab-ab52-4cf8-afca-c45776d526d0">

After (button 30px):
<img width="160" alt="Screenshot 2023-05-11 at 22 09 59"
src="https://github.com/go-gitea/gitea/assets/115237/4b741f4b-0fd2-4fae-9bee-16a7deb098e8">

[vertical-align:
middle](https://developer.mozilla.org/en-US/docs/Web/CSS/vertical-align)
is not suitable to align icons to text because

> Aligns the middle of the element with the baseline plus half the
x-height of the parent.

Example of `vertical-align: middle` from MDN:

<img width="232" alt="Screenshot 2023-05-11 at 22 29 28"
src="https://github.com/go-gitea/gitea/assets/115237/179fb756-85a1-4cab-8219-1a4958f333e2">

So I think the
[existing](365bb77a54/web_src/css/svg.css (L3))
`vertical-align: text-top` is generally still the best bet:

<img width="241" alt="Screenshot 2023-05-11 at 22 34 24"
src="https://github.com/go-gitea/gitea/assets/115237/0cd6edf5-12c0-4bdb-8771-a900f5ba2d35">

Co-authored-by: Giteabot <teabot@gitea.io>
2 years ago
..
.eslintrc.yaml Update eslints for Vue 3 (#23935) 2 years ago
ActionRunStatus.vue Attach a tooltip to the action status icon (#24614) 2 years ago
ActivityHeatmap.vue Localize activity heatmap (except tooltip) (#24131) 2 years ago
ContextPopup.vue Modify luminance calculation and extract related functions into single files (#24586) 2 years ago
DashboardRepoList.vue Remove highlight in repo list (#24675) 2 years ago
DiffFileList.vue Use data-tooltip-content for tippy tooltip (#23649) 2 years ago
DiffFileTree.vue Update the value of the `diffEnd` when click `Show More` btn in the DiffFileTree (#24069) 2 years ago
DiffFileTreeItem.vue Use reactive store to share data between components (#23996) 2 years ago
PullRequestMergeForm.vue Refactor branch/tag selector to Vue SFC (#23421) 2 years ago
RepoActionView.test.js Improve action log display with control chars (#23820) 2 years ago
RepoActionView.vue Make the actions control button look like an actual button (#24611) 2 years ago
RepoActivityTopAuthors.vue Refactor dashboard repo list to Vue SFC (#23405) 2 years ago
RepoBranchTagSelector.vue Remove svg.svg class, restore .rss-icon (#24667) 2 years ago