-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsemantic_ui_dropdown.html
180 lines (171 loc) · 11.3 KB
/
semantic_ui_dropdown.html
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<!DOCTYPE html>
<html lang="eng">
<head>
<meta charset="utf-8">
<meta name="description" content="General description of this page">
<meta name="keywords" content="List of products and services offered">
<meta name="author" content="John Doe">
<!-- For mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
</head>
<body>
<header>
<!-- Standard Navigation / navbar -->
</header>
<!-- Semantic UI Dropdown - Initial render:
Highlights
<input type="hidden" name="theme">
<div id="theme-text" class="default text">Theme</div>
<div class="menu" tabindex="-1">
-->
<div id="theme-select" class="ui selection dropdown theme-select" tabindex="0">
<input type="hidden" name="theme">
<i class="dropdown icon"></i>
<div id="theme-text" class="default text">Theme</div>
<div class="menu" tabindex="-1">
<div id="1" class="item" data-value="1">
<div id="theme-color-left-1" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-1" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="2" class="item" data-value="2">
<div id="theme-color-left-2" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-2" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="3" class="item" data-value="3">
<div id="theme-color-left-3" class="theme-color" style="background: rgb(239, 157, 51);"></div>
<div id="theme-color-right-3" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="4" class="item" data-value="4">
<div id="theme-color-left-4" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-4" class="theme-color" style="background: rgb(51, 239, 101);"></div>
</div>
<div id="5" class="item" data-value="5">
<div id="theme-color-left-5" class="theme-color" style="background: rgb(51, 239, 101);"></div>
<div id="theme-color-right-5" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="6" class="item" data-value="6">
<div id="theme-color-left-6" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-6" class="theme-color" style="background: rgb(239, 204, 51);"></div>
</div>
<div id="7" class="item" data-value="7">
<div id="theme-color-left-7" class="theme-color" style="background: rgb(239, 204, 51);"></div>
<div id="theme-color-right-7" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="8" class="item" data-value="8">
<div id="theme-color-left-8" class="theme-color" style="background: rgb(73, 102, 69);"></div>
<div id="theme-color-right-8" class="theme-color" style="background: rgb(102, 69, 73);"></div>
</div>
<div id="9" class="item" data-value="9">
<div id="theme-color-left-9" class="theme-color" style="background: rgb(102, 69, 73);"></div>
<div id="theme-color-right-9" class="theme-color" style="background: rgb(73, 102, 69);"></div>
</div>
</div>
</div>
<!-- Semantic UI Dropdown - OnClick Dropdown Icon (menu items display) render:
Highlights
<input type="hidden" name="theme">
<div id="theme-text" class="default text">Theme</div>
<div class="menu transition visible" tabindex="-1" style="display: block !important;">
-->
<div id="theme-select" class="ui selection dropdown theme-select active visible" tabindex="0">
<input type="hidden" name="theme">
<i class="dropdown icon"></i>
<div id="theme-text" class="default text">Theme</div>
<div class="menu transition visible" tabindex="-1" style="display: block !important;">
<div id="1" class="item" data-value="1">
<div id="theme-color-left-1" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-1" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="2" class="item" data-value="2">
<div id="theme-color-left-2" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-2" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="3" class="item" data-value="3">
<div id="theme-color-left-3" class="theme-color" style="background: rgb(239, 157, 51);"></div>
<div id="theme-color-right-3" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="4" class="item" data-value="4">
<div id="theme-color-left-4" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-4" class="theme-color" style="background: rgb(51, 239, 101);"></div>
</div>
<div id="5" class="item" data-value="5">
<div id="theme-color-left-5" class="theme-color" style="background: rgb(51, 239, 101);"></div>
<div id="theme-color-right-5" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="6" class="item" data-value="6">
<div id="theme-color-left-6" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-6" class="theme-color" style="background: rgb(239, 204, 51);"></div>
</div>
<div id="7" class="item" data-value="7">
<div id="theme-color-left-7" class="theme-color" style="background: rgb(239, 204, 51);"></div>
<div id="theme-color-right-7" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="8" class="item" data-value="8">
<div id="theme-color-left-8" class="theme-color" style="background: rgb(73, 102, 69);"></div>
<div id="theme-color-right-8" class="theme-color" style="background: rgb(102, 69, 73);"></div>
</div>
<div id="9" class="item" data-value="9">
<div id="theme-color-left-9" class="theme-color" style="background: rgb(102, 69, 73);"></div>
<div id="theme-color-right-9" class="theme-color" style="background: rgb(73, 102, 69);"></div>
</div>
</div>
</div>
<!-- Semantic UI Dropdown - OnChange Selected Item 3 (menu closes after selection) render:
Highlights
<input type="hidden" name="theme" value="3">
<div id="theme-text" class="text">
<div id="theme-color-left" class="theme-color" style="background: rgb(239, 157, 51);"></div>
<div id="theme-color-right" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div class="menu transition hidden" tabindex="-1">
-->
<div id="theme-select" class="ui selection dropdown theme-select" tabindex="0">
<input type="hidden" name="theme" value="3">
<i class="dropdown icon"></i>
<div id="theme-text" class="text">
<div id="theme-color-left" class="theme-color" style="background: rgb(239, 157, 51);"></div>
<div id="theme-color-right" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div class="menu transition hidden" tabindex="-1">
<div id="1" class="item" data-value="1">
<div id="theme-color-left-1" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-1" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="2" class="item" data-value="2">
<div id="theme-color-left-2" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-2" class="theme-color" style="background: rgb(239, 157, 51);"></div>
</div>
<div id="3" class="item active selected" data-value="3">
<div id="theme-color-left-3" class="theme-color" style="background: rgb(239, 157, 51);"></div>
<div id="theme-color-right-3" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="4" class="item" data-value="4">
<div id="theme-color-left-4" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-4" class="theme-color" style="background: rgb(51, 239, 101);"></div>
</div><div id="5" class="item" data-value="5">
<div id="theme-color-left-5" class="theme-color" style="background: rgb(51, 239, 101);"></div>
<div id="theme-color-right-5" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="6" class="item" data-value="6">
<div id="theme-color-left-6" class="theme-color" style="background: rgb(51, 189, 239);"></div>
<div id="theme-color-right-6" class="theme-color" style="background: rgb(239, 204, 51);"></div>
</div>
<div id="7" class="item" data-value="7">
<div id="theme-color-left-7" class="theme-color" style="background: rgb(239, 204, 51);"></div>
<div id="theme-color-right-7" class="theme-color" style="background: rgb(51, 189, 239);"></div>
</div>
<div id="8" class="item" data-value="8">
<div id="theme-color-left-8" class="theme-color" style="background: rgb(73, 102, 69);"></div>
<div id="theme-color-right-8" class="theme-color" style="background: rgb(102, 69, 73);"></div>
</div>
<div id="9" class="item" data-value="9">
<div id="theme-color-left-9" class="theme-color" style="background: rgb(102, 69, 73);"></div>
<div id="theme-color-right-9" class="theme-color" style="background: rgb(73, 102, 69);"></div>
</div>
</div>
</div>
</body>
<footer>
</footer>
</html>