aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/fomantic/build/components
Commit message (Collapse)AuthorAgeFilesLines
* Rework delete org and rename org UI (#34762)Lunny Xiao2025-06-212-8/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # What's the problem of the original implementation Renaming organization will mix with organization's information change make the operation difficult to keep consistent. This PR created a danger zone like what's repository setting. It also moved organization's `rename` and `delete` operations to this zone. The original updating repository will not change the name any more. This is also a step to extract the `updaterepository` function completely. Before: ![image](https://github.com/user-attachments/assets/d097dfdf-07be-4d79-8fcf-e78822515575) ![image](https://github.com/user-attachments/assets/42ee832c-cb44-41ec-9fe3-92a1c94747d2) After: ![image](https://github.com/user-attachments/assets/f7700ed7-f104-4302-a924-09e118f24be3) ![image](https://github.com/user-attachments/assets/4c49952a-578e-4d14-bd01-4a68c9e02412) ![image](https://github.com/user-attachments/assets/814829d3-00fe-4e87-ae05-625c129170d2) ![image](https://github.com/user-attachments/assets/b067b263-c909-4b48-b23c-73481c32d350) --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Fix various problems (#34708)wxiaoguang2025-06-121-0/+1
| | | | | * Fix #34707 * Fix dropdown filter handling * Fix #27014
* Fix some dropdown problems on the issue sidebar (#34308)wxiaoguang2025-04-301-1/+1
| | | Also fix #34300
* Fix various misalignments and overflows (#34227)Kerwin Bryant2025-04-171-5/+0
| | | | | --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Update RepoContributors.vue (#34194)Kerwin Bryant2025-04-141-1/+6
|
* Fix dropdown delegating and some UI problems (#34014)wxiaoguang2025-03-261-0/+3
| | | | | | | | | | | | | | | | The old logic is incomplete. See the comment for the improved logic. Fix #34011 And more fixes: 1. use empty "alt" for images, otherwise the width is not right when the image fails to load 2. remove the "dropdown icon" patch, because it has been clearly done in "dropdown.js" now 3. remove the "dropdown filtered item" patch, added a clear callback, and improve the logic 4. fix global init when a node is removed and added back gain (eg: the "cherry pick" dialog with a dropdown)
* Allow filtering issues by any assignee (#33343)Andreas Svanberg2025-03-211-1/+5
| | | | | | | | | | | | | | | | This is the opposite of the "No assignee" filter, it will match all issues that have at least one assignee. Before ![Before change](https://github.com/user-attachments/assets/4aea194b-9add-4a84-8d6b-61bfd8d9e58e) After ![After change with any filter](https://github.com/user-attachments/assets/99f1205d-ba9f-4a0a-a60b-cc1a0c0823fe) --------- Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
* Remove unused or abused styles (#33918)wxiaoguang2025-03-172-17/+2
| | | | | | * `top aligned` => `tw-align-top` * label list: it was broken, this PR fixes it * reference link: simplified * settings/repos: not affected
* Fix various Fomantic UI and htmx problems (#33851)wxiaoguang2025-03-112-18/+11
| | | Also fix #31328, fix #33854
* Drop fomantic build (#33845)wxiaoguang2025-03-118-0/+12810
We would never update or build fomantic again, we have forked it as a private library long time ago. So just put the JS and CSS files in "fomantic/build" into git. And use "import" to use them. Remove "form.js", rewrite "tab" component. All source code is from official Fomantic UI build. Will apply patches in separate PRs.