mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Use tailwind instead of gt-[wh]- helper classes (#29423)
				
					
				
			Follow #29357 - Replace `gt-w-*` -> `tw-w-*` and remove `gt-w-*` - Replace `gt-h-*` -> `tw-h-*` and remove `gt-h-*`
This commit is contained in:
		@@ -20,7 +20,7 @@
 | 
			
		||||
			{{if .DatabaseCheckInconsistentCollationColumns}}
 | 
			
		||||
				<div class="ui red message">
 | 
			
		||||
					{{ctx.Locale.Tr "admin.self_check.database_inconsistent_collation_columns" .DatabaseCheckResult.DatabaseCollation}}
 | 
			
		||||
					<ul class="gt-w-full">
 | 
			
		||||
					<ul class="tw-w-full">
 | 
			
		||||
					{{range .DatabaseCheckInconsistentCollationColumns}}
 | 
			
		||||
						<li>{{.}}</li>
 | 
			
		||||
					{{end}}
 | 
			
		||||
 
 | 
			
		||||
@@ -13,14 +13,14 @@
 | 
			
		||||
		<!-- mobile right menu, it must be here because in mobile view, each item is a flex column, the first item is a full row column -->
 | 
			
		||||
		<div class="ui secondary menu item navbar-mobile-right">
 | 
			
		||||
			{{if .IsSigned}}
 | 
			
		||||
			<a id="mobile-notifications-icon" class="item gt-w-auto gt-p-3" href="{{AppSubUrl}}/notifications" data-tooltip-content="{{ctx.Locale.Tr "notifications"}}" aria-label="{{ctx.Locale.Tr "notifications"}}">
 | 
			
		||||
			<a id="mobile-notifications-icon" class="item tw-w-auto gt-p-3" href="{{AppSubUrl}}/notifications" data-tooltip-content="{{ctx.Locale.Tr "notifications"}}" aria-label="{{ctx.Locale.Tr "notifications"}}">
 | 
			
		||||
				<div class="gt-relative">
 | 
			
		||||
					{{svg "octicon-bell"}}
 | 
			
		||||
					<span class="notification_count{{if not $notificationUnreadCount}} gt-hidden{{end}}">{{$notificationUnreadCount}}</span>
 | 
			
		||||
				</div>
 | 
			
		||||
			</a>
 | 
			
		||||
			{{end}}
 | 
			
		||||
			<button class="item gt-w-auto ui icon mini button gt-p-3 gt-m-0" id="navbar-expand-toggle">{{svg "octicon-three-bars"}}</button>
 | 
			
		||||
			<button class="item tw-w-auto ui icon mini button gt-p-3 gt-m-0" id="navbar-expand-toggle">{{svg "octicon-three-bars"}}</button>
 | 
			
		||||
		</div>
 | 
			
		||||
 | 
			
		||||
		<!-- navbar links non-mobile -->
 | 
			
		||||
 
 | 
			
		||||
@@ -5,7 +5,7 @@
 | 
			
		||||
	<div id="test-modal-form-1" class="ui mini modal">
 | 
			
		||||
		<div class="header">Form dialog (layout 1)</div>
 | 
			
		||||
		<form class="content" method="post">
 | 
			
		||||
			<div class="ui input gt-w-full"><input name="user_input"></div>
 | 
			
		||||
			<div class="ui input tw-w-full"><input name="user_input"></div>
 | 
			
		||||
			{{template "base/modal_actions_confirm" (dict "ModalButtonTypes" "confirm")}}
 | 
			
		||||
		</form>
 | 
			
		||||
	</div>
 | 
			
		||||
@@ -14,7 +14,7 @@
 | 
			
		||||
		<div class="header">Form dialog (layout 2)</div>
 | 
			
		||||
		<form method="post">
 | 
			
		||||
			<div class="content">
 | 
			
		||||
				<div class="ui input gt-w-full"><input name="user_input"></div>
 | 
			
		||||
				<div class="ui input tw-w-full"><input name="user_input"></div>
 | 
			
		||||
				{{template "base/modal_actions_confirm" (dict "ModalButtonTypes" "confirm")}}
 | 
			
		||||
			</div>
 | 
			
		||||
		</form>
 | 
			
		||||
@@ -24,7 +24,7 @@
 | 
			
		||||
		<div class="header">Form dialog (layout 3)</div>
 | 
			
		||||
		<form method="post">
 | 
			
		||||
			<div class="content">
 | 
			
		||||
				<div class="ui input gt-w-full"><input name="user_input"></div>
 | 
			
		||||
				<div class="ui input tw-w-full"><input name="user_input"></div>
 | 
			
		||||
			</div>
 | 
			
		||||
			{{template "base/modal_actions_confirm" (dict "ModalButtonTypes" "confirm")}}
 | 
			
		||||
		</form>
 | 
			
		||||
@@ -33,7 +33,7 @@
 | 
			
		||||
	<div id="test-modal-form-4" class="ui mini modal">
 | 
			
		||||
		<div class="header">Form dialog (layout 4)</div>
 | 
			
		||||
		<div class="content">
 | 
			
		||||
			<div class="ui input gt-w-full"><input name="user_input"></div>
 | 
			
		||||
			<div class="ui input tw-w-full"><input name="user_input"></div>
 | 
			
		||||
		</div>
 | 
			
		||||
		<form method="post">
 | 
			
		||||
			{{template "base/modal_actions_confirm" (dict "ModalButtonTypes" "confirm")}}
 | 
			
		||||
 
 | 
			
		||||
@@ -203,7 +203,7 @@
 | 
			
		||||
							{{if $showFileViewToggle}}
 | 
			
		||||
								{{/* for image or CSV, it can have a horizontal scroll bar, there won't be review comment context menu (position absolute) which would be clipped by "overflow" */}}
 | 
			
		||||
								<div id="diff-rendered-{{$file.NameHash}}" class="file-body file-code {{if $.IsSplitStyle}}code-diff-split{{else}}code-diff-unified{{end}} gt-overflow-x-scroll">
 | 
			
		||||
									<table class="chroma gt-w-full">
 | 
			
		||||
									<table class="chroma tw-w-full">
 | 
			
		||||
										{{if $isImage}}
 | 
			
		||||
											{{template "repo/diff/image_diff" dict "file" . "root" $ "blobBase" $blobBase "blobHead" $blobHead "sniffedTypeBase" $sniffedTypeBase "sniffedTypeHead" $sniffedTypeHead}}
 | 
			
		||||
										{{else}}
 | 
			
		||||
 
 | 
			
		||||
@@ -6,7 +6,7 @@
 | 
			
		||||
			{{end}}
 | 
			
		||||
		</div>
 | 
			
		||||
	{{end}}
 | 
			
		||||
	<div class="content gt-p-0 gt-w-full">
 | 
			
		||||
	<div class="content gt-p-0 tw-w-full">
 | 
			
		||||
		<div class="gt-df gt-items-start">
 | 
			
		||||
			<div class="issue-card-icon">
 | 
			
		||||
				{{template "shared/issueicon" .}}
 | 
			
		||||
 
 | 
			
		||||
@@ -1,5 +1,5 @@
 | 
			
		||||
{{template "base/head" .}}
 | 
			
		||||
<div role="main" aria-label="{{.Title}}" class="page-content ui container center gt-w-screen {{if .IsRepo}}repository{{end}}">
 | 
			
		||||
<div role="main" aria-label="{{.Title}}" class="page-content ui container center tw-w-screen {{if .IsRepo}}repository{{end}}">
 | 
			
		||||
	{{if .IsRepo}}{{template "repo/header" .}}{{end}}
 | 
			
		||||
	<div class="ui container center">
 | 
			
		||||
		<p style="margin-top: 100px"><img src="{{AssetUrlPrefix}}/img/404.png" alt="404"></p>
 | 
			
		||||
 
 | 
			
		||||
@@ -73,12 +73,6 @@ Gitea's private styles use `g-` prefix.
 | 
			
		||||
.gt-overflow-x-scroll { overflow-x: scroll !important; }
 | 
			
		||||
.gt-overflow-y-hidden { overflow-y: hidden !important; }
 | 
			
		||||
 | 
			
		||||
.gt-h-screen { height: 100vh !important; }
 | 
			
		||||
.gt-h-full { height: 100% !important; }
 | 
			
		||||
.gt-w-auto { width: auto !important; }
 | 
			
		||||
.gt-w-screen { width: 100vw !important; }
 | 
			
		||||
.gt-w-full { width: 100% !important; }
 | 
			
		||||
 | 
			
		||||
.gt-float-left { float: left !important; }
 | 
			
		||||
.gt-float-right { float: right !important; }
 | 
			
		||||
.gt-clear-both { clear: both !important; }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user