mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Simplify helper CSS classes and avoid abuse (#26728)
Removed CSS helper classes (some of them are not useful while some of them are abused often) * `gt-db`: in most cases it could be replaced by `gt-df` and the flex layout should be encouraged. Other cases: either it does need the `gt-df` (eg: by using `div` directly) or it is an abuse (eg: the warning message in a form) * `gt-di`: it doesn't seem useful, or it could be replaced by `gt-dib` in most cases. * `gt-dif`: not useful, it could be replaced by `flex-text-inline` or `gt-df` * `gt-js`: never used * All `<i class="icon gt-df gt-ac gt-jc">` could be written as `<i class="icon">` ## Some UI samples ### Admin Notice  ### Admin Stacktrace  ### Org Home  ### Org Team Repo  ### Release List  ### User Setting Application Token Scope  Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		| @@ -2,14 +2,10 @@ | ||||
| Gitea's tailwind-style CSS helper classes have `gt-` prefix. | ||||
| Gitea's private styles use `g-` prefix. | ||||
| */ | ||||
| .gt-db { display: block !important; } | ||||
| .gt-df { display: flex !important; } | ||||
| .gt-di { display: inline !important; } | ||||
| .gt-dif { display: inline-flex !important; } | ||||
| .gt-dib { display: inline-block !important; } | ||||
| .gt-ac { align-items: center !important; } | ||||
| .gt-jc { justify-content: center !important; } | ||||
| .gt-js { justify-content: flex-start !important; } | ||||
| .gt-je { justify-content: flex-end !important; } | ||||
| .gt-sb { justify-content: space-between !important; } | ||||
| .gt-fc { flex-direction: column !important; } | ||||
|   | ||||
| @@ -23,8 +23,11 @@ | ||||
|  | ||||
| .repository.releases #release-list > li .meta { | ||||
|   margin-top: 4px; | ||||
|   text-align: right; | ||||
|   position: relative; | ||||
|   text-align: right; | ||||
|   display: flex; | ||||
|   flex-direction: column; | ||||
|   gap: 1em; | ||||
| } | ||||
|  | ||||
| .repository.releases #release-list > li .detail { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user