summaryrefslogtreecommitdiffstats
path: root/templates/devtest/flex-list.tmpl
blob: 015ab1e15463121561a4a8e3fb806d925f425387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{{template "base/head" .}}
<link rel="stylesheet" href="{{AssetUrlPrefix}}/css/devtest.css?v={{AssetVersion}}">
<div class="page-content devtest">
	<div class="ui container">
		<h1>Flex List (standalone)</h1>
		<div class="divider"></div>
		<div class="flex-list">
			<div class="flex-item">
				<div class="flex-item-leading">
					{{svg "octicon-info" 32}}
				</div>
				<div class="flex-item-main">
					<div class="flex-item-title">
						Flex Item
						<span class="ui basic label">
							with label
						</span>
					</div>
					<div class="flex-item-body">
						consists of leading/main/trailing part
					</div>
					<div class="flex-item-body">
						main part contains title and (multiple) body lines
					</div>
				</div>
				<div class="flex-item-trailing">
					<button class="ui tiny red button">
						{{svg "octicon-alert" 14}} CJK文本测试
					</button>
					<button class="ui tiny primary button">
						{{svg "octicon-info" 14}} Button
					</button>
					<button class="ui tiny primary button">
						Button with long text
					</button>
				</div>
			</div>

			<div class="flex-item">
				<div class="flex-item-leading">
					{{svg "octicon-info" 32}}
				</div>
				<div class="flex-item-main">
					<div class="flex-item-title">
						Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong title
					</div>
					<div class="flex-item-body">
						consists of leading/main/trailing part
					</div>
					<div class="flex-item-body">
						Very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong content
						<span class="text truncate">Truncate very loooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooong content</span>
					</div>
				</div>
				<div class="flex-item-trailing">
					<button class="ui tiny red button">
						{{svg "octicon-alert" 12}} CJK文本测试 <!-- single CJK text test, it shouldn't be horizontal -->
					</button>
				</div>
			</div>

			<div class="flex-item">
				<div class="flex-item-leading">
					{{svg "octicon-repo" 32}}
				</div>
				<div class="flex-item-main">
					<div class="flex-item-header">
						<div class="flex-item-title">
							<a class="text primary" href="{{$.Link}}">
								gitea-org / gitea
							</a>
							<span data-tooltip-content="{{ctx.Locale.Tr "repo.fork"}}">{{svg "octicon-repo-forked"}}</span>
						</div>
						<div class="flex-item-trailing">
							<a class="muted" href="{{$.Link}}">
								<span class="flex-text-inline"><i class="color-icon tw-mr-2 tw-bg-blue"></i>Go</span>
							</a>
							<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-star" 16}}45000</a>
							<a class="text grey flex-text-inline" href="{{$.Link}}">{{svg "octicon-git-branch" 16}}1234</a>
						</div>
					</div>
					<div class="flex-item-body">
						when inside header, the trailing part will wrap below the title
					</div>
				</div>
			</div>
		</div>

		<div class="divider"></div>

		<h1>Flex List (with "ui segment")</h1>
		<div class="ui attached segment">
			<div class="flex-list">
				<div class="flex-item">item 1</div>
				<div class="flex-item">item 2</div>
			</div>
		</div>
		<div class="ui attached segment">
			<h1>Flex List (with "ui segment")</h1>
			<div class="flex-list">
				<div class="flex-item">item 1</div>
				<div class="flex-item">item 2</div>
			</div>
		</div>

		<h1>If parent provides the padding/margin space:</h1>
		<div class="tw-border tw-border-secondary tw-py-4">
			<div class="flex-list flex-space-fitted">
				<div class="flex-item">item 1 (no padding top)</div>
				<div class="flex-item">item 2 (no padding bottom)</div>
			</div>
		</div>
	</div>
</div>
{{template "base/footer" .}}