semantic-ui-sass 0.19.3.1 → 1.7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +21 -0
- data/README.md +5 -6
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +472 -367
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +9 -5
- data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
- data/app/assets/javascripts/semantic-ui/api.js +840 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
- data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
- data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
- data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
- data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
- data/app/assets/javascripts/semantic-ui/modal.js +294 -219
- data/app/assets/javascripts/semantic-ui/nag.js +120 -186
- data/app/assets/javascripts/semantic-ui/popup.js +491 -223
- data/app/assets/javascripts/semantic-ui/progress.js +779 -0
- data/app/assets/javascripts/semantic-ui/rating.js +66 -22
- data/app/assets/javascripts/semantic-ui/search.js +219 -99
- data/app/assets/javascripts/semantic-ui/shape.js +72 -29
- data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
- data/app/assets/javascripts/semantic-ui/site.js +487 -0
- data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
- data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
- data/app/assets/javascripts/semantic-ui/tab.js +680 -603
- data/app/assets/javascripts/semantic-ui/transition.js +269 -158
- data/app/assets/javascripts/semantic-ui/video.js +113 -32
- data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
- data/app/assets/javascripts/semantic-ui/visit.js +513 -0
- data/app/assets/stylesheets/semantic-ui.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
- data/lib/semantic/ui/sass/version.rb +2 -2
- data/tasks/converter.rb +99 -216
- metadata +22 -27
- data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
- data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
- data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-large.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
- data/app/assets/images/semantic-ui/loader-small.gif +0 -0
- data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
- data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
- data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
- data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
- data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
- data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
- data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
- data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
- data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -1,8 +1,7 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
*
|
4
|
-
* http://
|
5
|
-
*
|
1
|
+
/*
|
2
|
+
* # Semantic UI
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
6
5
|
*
|
7
6
|
* Copyright 2014 Contributors
|
8
7
|
* Released under the MIT license
|
@@ -10,248 +9,322 @@
|
|
10
9
|
*
|
11
10
|
*/
|
12
11
|
|
12
|
+
|
13
|
+
|
13
14
|
/*******************************
|
14
15
|
Search
|
15
16
|
*******************************/
|
16
17
|
|
17
18
|
.ui.search {
|
18
19
|
position: relative;
|
20
|
+
}
|
21
|
+
.ui.search > .prompt {
|
22
|
+
margin: 0em;
|
23
|
+
outline: none;
|
24
|
+
-webkit-appearance: none;
|
25
|
+
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
19
26
|
text-shadow: none;
|
20
27
|
font-style: normal;
|
21
28
|
font-weight: normal;
|
29
|
+
line-height: 1.2;
|
30
|
+
padding: 0.68571em 1em;
|
31
|
+
font-size: 1em;
|
32
|
+
background: #ffffff;
|
33
|
+
border: 1px solid rgba(39, 41, 43, 0.15);
|
34
|
+
color: rgba(0, 0, 0, 0.8);
|
35
|
+
box-shadow: 0em 0em 0em 0em transparent inset;
|
36
|
+
-webkit-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
|
37
|
+
transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
|
22
38
|
}
|
23
|
-
|
24
|
-
.ui.search input {
|
39
|
+
.ui.search .prompt {
|
25
40
|
border-radius: 500rem;
|
26
41
|
}
|
27
42
|
|
28
43
|
/*--------------
|
29
|
-
|
44
|
+
Icon
|
30
45
|
---------------*/
|
31
46
|
|
32
|
-
.ui.search
|
33
|
-
|
34
|
-
z-index: 2;
|
35
|
-
float: right;
|
36
|
-
margin: 0px 0px 0px -15px;
|
37
|
-
padding: 6px 15px 7px;
|
38
|
-
border-radius: 0px 15px 15px 0px;
|
39
|
-
-webkit-box-shadow: none;
|
40
|
-
box-shadow: none;
|
47
|
+
.ui.search .prompt ~ .search.icon {
|
48
|
+
cursor: pointer;
|
41
49
|
}
|
42
50
|
|
43
51
|
/*--------------
|
44
52
|
Results
|
45
53
|
---------------*/
|
46
54
|
|
47
|
-
.ui.search .results {
|
55
|
+
.ui.search > .results {
|
48
56
|
display: none;
|
49
57
|
position: absolute;
|
50
|
-
z-index: 999;
|
51
58
|
top: 100%;
|
52
|
-
left:
|
53
|
-
|
54
|
-
background-color: #FFFFFF;
|
59
|
+
left: 0%;
|
60
|
+
background: #ffffff;
|
55
61
|
margin-top: 0.5em;
|
56
|
-
width:
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
border-radius: 3px;
|
61
|
-
-webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1),
|
62
|
-
0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset;
|
63
|
-
box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.1),
|
64
|
-
0px -2px 0px 0px rgba(0, 0, 0, 0.1) inset;
|
62
|
+
width: 16em;
|
63
|
+
border-radius: 0.25em;
|
64
|
+
box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.2);
|
65
|
+
z-index: 998;
|
65
66
|
}
|
66
67
|
|
67
|
-
|
68
|
+
/*--------------
|
69
|
+
Result
|
70
|
+
---------------*/
|
71
|
+
|
72
|
+
.ui.search > .results .result {
|
68
73
|
cursor: pointer;
|
74
|
+
display: block;
|
69
75
|
overflow: hidden;
|
76
|
+
font-size: 1em;
|
70
77
|
padding: 0.5em 1em;
|
78
|
+
color: rgba(0, 0, 0, 0.8);
|
79
|
+
line-height: 1.33;
|
80
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
71
81
|
}
|
72
|
-
|
73
|
-
|
74
|
-
border-top: none;
|
82
|
+
.ui.search > .results .result:last-child {
|
83
|
+
border-bottom: none;
|
75
84
|
}
|
76
85
|
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
float: left;
|
86
|
+
/* Image */
|
87
|
+
.ui.search > .results .result .image {
|
88
|
+
float: right;
|
81
89
|
overflow: hidden;
|
82
|
-
|
83
|
-
width:
|
84
|
-
height:
|
90
|
+
background: none;
|
91
|
+
width: 5em;
|
92
|
+
height: 3em;
|
93
|
+
border-radius: 0.25em;
|
85
94
|
}
|
86
|
-
|
87
|
-
.ui.search .result .image img {
|
95
|
+
.ui.search > .results .result .image img {
|
88
96
|
display: block;
|
89
|
-
width:
|
90
|
-
height:
|
97
|
+
width: auto;
|
98
|
+
height: 100%;
|
91
99
|
}
|
92
100
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
}
|
101
|
+
/*--------------
|
102
|
+
Info
|
103
|
+
---------------*/
|
97
104
|
|
98
|
-
.ui.search .result .
|
99
|
-
|
105
|
+
.ui.search > .results .result .image + .content {
|
106
|
+
margin: 0em 6em 0em 0em;
|
100
107
|
}
|
101
|
-
|
102
|
-
|
108
|
+
.ui.search > .results .result .title {
|
109
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
103
110
|
font-weight: bold;
|
104
|
-
|
111
|
+
font-size: 1em;
|
112
|
+
color: rgba(0, 0, 0, 0.85);
|
105
113
|
}
|
106
|
-
|
107
|
-
|
108
|
-
|
114
|
+
.ui.search > .results .result .description {
|
115
|
+
margin-top: 0em;
|
116
|
+
font-size: 0.9285em;
|
117
|
+
color: rgba(0, 0, 0, 0.4);
|
109
118
|
}
|
110
|
-
|
111
|
-
.ui.search .result .price {
|
119
|
+
.ui.search > .results .result .price {
|
112
120
|
float: right;
|
113
|
-
color: #
|
114
|
-
font-weight: bold;
|
121
|
+
color: #5bbd72;
|
115
122
|
}
|
116
123
|
|
117
124
|
/*--------------
|
118
125
|
Message
|
119
126
|
---------------*/
|
120
127
|
|
121
|
-
.ui.search .message {
|
122
|
-
padding: 1em;
|
128
|
+
.ui.search > .results > .message {
|
129
|
+
padding: 1em 1em;
|
123
130
|
}
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
font-size: 1.25rem;
|
131
|
+
.ui.search > .results > .message .header {
|
132
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
133
|
+
font-size: 1.1428em;
|
128
134
|
font-weight: bold;
|
129
135
|
color: rgba(0, 0, 0, 0.8);
|
130
136
|
}
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
color: rgba(0, 0, 0, 0.5);
|
136
|
-
}
|
137
|
-
|
138
|
-
/*--------------
|
139
|
-
Categories
|
140
|
-
---------------*/
|
141
|
-
|
142
|
-
.ui.search .results .category {
|
143
|
-
background-color: #FAFAFA;
|
144
|
-
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
145
|
-
-webkit-transition: background 0.2s ease-in;
|
146
|
-
transition: background 0.2s ease-in;
|
147
|
-
}
|
148
|
-
|
149
|
-
.ui.search .results .category:first-child {
|
150
|
-
border-top: none;
|
151
|
-
}
|
152
|
-
|
153
|
-
.ui.search .results .category > .name {
|
154
|
-
float: left;
|
155
|
-
padding: 12px 0px 0px 8px;
|
156
|
-
font-weight: bold;
|
157
|
-
color: #777777;
|
158
|
-
text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.8);
|
159
|
-
}
|
160
|
-
|
161
|
-
.ui.search .results .category .result {
|
162
|
-
background-color: #FFFFFF;
|
163
|
-
margin-left: 80px;
|
164
|
-
border-left: 1px solid rgba(0, 0, 0, 0.1);
|
137
|
+
.ui.search > .results > .message .description {
|
138
|
+
margin-top: 0.25rem;
|
139
|
+
font-size: 1em;
|
140
|
+
color: rgba(0, 0, 0, 0.8);
|
165
141
|
}
|
166
142
|
|
167
143
|
/* View All Results */
|
168
|
-
|
169
|
-
.ui.search .all {
|
144
|
+
.ui.search > .results > .action {
|
170
145
|
display: block;
|
171
|
-
border-top:
|
172
|
-
background
|
173
|
-
|
174
|
-
|
175
|
-
color: rgba(0, 0, 0, 0.6);
|
146
|
+
border-top: none;
|
147
|
+
background: #f0f0f0;
|
148
|
+
padding: 0.5em 1em;
|
149
|
+
color: rgba(0, 0, 0, 0.8);
|
176
150
|
font-weight: bold;
|
177
151
|
text-align: center;
|
178
152
|
}
|
179
153
|
|
154
|
+
|
180
155
|
/*******************************
|
181
156
|
States
|
182
157
|
*******************************/
|
183
158
|
|
184
|
-
/*--------------
|
185
|
-
Hover
|
186
|
-
---------------*/
|
187
159
|
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
}
|
160
|
+
/*--------------------
|
161
|
+
Loading
|
162
|
+
---------------------*/
|
192
163
|
|
193
|
-
.ui.search .
|
194
|
-
|
164
|
+
.ui.loading.search .input > .icon:before {
|
165
|
+
position: absolute;
|
166
|
+
content: '';
|
167
|
+
top: 50%;
|
168
|
+
left: 50%;
|
169
|
+
margin: -0.64285em 0em 0em -0.64285em;
|
170
|
+
width: 1.2857em;
|
171
|
+
height: 1.2857em;
|
172
|
+
border-radius: 500rem;
|
173
|
+
border: 0.2em solid rgba(0, 0, 0, 0.1);
|
174
|
+
}
|
175
|
+
.ui.loading.search .input > .icon:after {
|
176
|
+
position: absolute;
|
177
|
+
content: '';
|
178
|
+
top: 50%;
|
179
|
+
left: 50%;
|
180
|
+
margin: -0.64285em 0em 0em -0.64285em;
|
181
|
+
width: 1.2857em;
|
182
|
+
height: 1.2857em;
|
183
|
+
-webkit-animation: button-spin 0.6s linear;
|
184
|
+
animation: button-spin 0.6s linear;
|
185
|
+
-webkit-animation-iteration-count: infinite;
|
186
|
+
animation-iteration-count: infinite;
|
187
|
+
border-radius: 500rem;
|
188
|
+
border-color: #aaaaaa transparent transparent;
|
189
|
+
border-style: solid;
|
190
|
+
border-width: 0.2em;
|
191
|
+
box-shadow: 0px 0px 0px 1px transparent;
|
195
192
|
}
|
196
193
|
|
197
194
|
/*--------------
|
198
|
-
|
195
|
+
Hover
|
199
196
|
---------------*/
|
200
197
|
|
201
|
-
.ui.search
|
202
|
-
|
198
|
+
.ui.search > .results .result:hover,
|
199
|
+
.ui.category.search > .results .category .result:hover {
|
200
|
+
background: #fafafa;
|
203
201
|
}
|
204
|
-
|
205
|
-
|
206
|
-
.ui.search.loading .input .icon:after {
|
207
|
-
display: none;
|
202
|
+
.ui.search .action:hover {
|
203
|
+
background: #e0e0e0;
|
208
204
|
}
|
209
205
|
|
210
206
|
/*--------------
|
211
207
|
Active
|
212
208
|
---------------*/
|
213
209
|
|
214
|
-
.ui.search .results .category.active {
|
215
|
-
background
|
210
|
+
.ui.search > .results .category.active {
|
211
|
+
background: #f0f0f0;
|
216
212
|
}
|
217
|
-
|
218
|
-
|
219
|
-
color: #333333;
|
213
|
+
.ui.search > .results .category.active > .name {
|
214
|
+
color: rgba(0, 0, 0, 0.8);
|
220
215
|
}
|
221
|
-
|
222
|
-
.ui.search .result.active
|
223
|
-
|
224
|
-
|
216
|
+
.ui.search > .results .result.active,
|
217
|
+
.ui.category.search > .results .category .result.active {
|
218
|
+
position: relative;
|
219
|
+
border-left-color: transparent;
|
220
|
+
background: #f0f0f0;
|
221
|
+
box-shadow: 3px 0px 3px 0px rgba(39, 41, 43, 0.15);
|
222
|
+
}
|
223
|
+
.ui.search > .results .result.active .title {
|
224
|
+
color: rgba(0, 0, 0, 0.85);
|
225
|
+
}
|
226
|
+
.ui.search > .results .result.active .description {
|
227
|
+
color: rgba(0, 0, 0, 0.85);
|
225
228
|
}
|
226
229
|
|
227
|
-
|
228
|
-
|
230
|
+
|
231
|
+
/*******************************
|
232
|
+
Types
|
233
|
+
*******************************/
|
234
|
+
|
235
|
+
|
236
|
+
/*--------------
|
237
|
+
Categories
|
238
|
+
---------------*/
|
239
|
+
|
240
|
+
.ui.category.search .results {
|
241
|
+
width: 28em;
|
229
242
|
}
|
230
243
|
|
231
|
-
|
232
|
-
|
244
|
+
/* Category */
|
245
|
+
.ui.category.search > .results .category {
|
246
|
+
background: #f0f0f0;
|
247
|
+
box-shadow: none;
|
248
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
249
|
+
-webkit-transition: background 0.2s ease, border-color 0.2s ease;
|
250
|
+
transition: background 0.2s ease, border-color 0.2s ease;
|
251
|
+
}
|
252
|
+
.ui.category.search > .results .category:last-child {
|
253
|
+
border-bottom: none;
|
254
|
+
}
|
255
|
+
|
256
|
+
/* Category Result */
|
257
|
+
.ui.category.search > .results .category .result {
|
258
|
+
background: #ffffff;
|
259
|
+
margin-left: 100px;
|
260
|
+
border-left: 1px solid rgba(39, 41, 43, 0.15);
|
261
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
262
|
+
-webkit-transition: background 0.2s ease, border-color 0.2s ease;
|
263
|
+
transition: background 0.2s ease, border-color 0.2s ease;
|
264
|
+
}
|
265
|
+
.ui.category.search > .results .category .result:last-child {
|
266
|
+
border-bottom: none;
|
267
|
+
}
|
268
|
+
|
269
|
+
/* Category Result Name */
|
270
|
+
.ui.category.search > .results .category > .name {
|
271
|
+
width: 100px;
|
272
|
+
background: #f0f0f0;
|
273
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
274
|
+
font-size: 1em;
|
275
|
+
float: 1em;
|
276
|
+
float: left;
|
277
|
+
padding: 0.4em 1em;
|
278
|
+
font-weight: bold;
|
279
|
+
color: rgba(0, 0, 0, 0.4);
|
233
280
|
}
|
234
281
|
|
282
|
+
|
235
283
|
/*******************************
|
236
284
|
Variations
|
237
285
|
*******************************/
|
238
286
|
|
239
|
-
/* Large */
|
240
287
|
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
288
|
+
/*-------------------
|
289
|
+
Left / Right
|
290
|
+
--------------------*/
|
291
|
+
|
292
|
+
.ui[class*="left aligned"].search > .results {
|
293
|
+
right: auto;
|
294
|
+
left: 0%;
|
295
|
+
}
|
296
|
+
.ui[class*="right aligned"].search > .results {
|
297
|
+
right: 0%;
|
298
|
+
left: auto;
|
245
299
|
}
|
246
300
|
|
247
|
-
|
248
|
-
|
301
|
+
/*--------------
|
302
|
+
Fluid
|
303
|
+
---------------*/
|
304
|
+
|
305
|
+
.ui.fluid.search .results {
|
306
|
+
width: 100%;
|
249
307
|
}
|
250
308
|
|
251
|
-
|
252
|
-
|
309
|
+
/*--------------
|
310
|
+
Sizes
|
311
|
+
---------------*/
|
312
|
+
|
313
|
+
.ui.search {
|
314
|
+
font-size: 1em;
|
315
|
+
}
|
316
|
+
.ui.large.search {
|
317
|
+
font-size: 1.1em;
|
253
318
|
}
|
254
319
|
|
255
|
-
|
256
|
-
|
257
|
-
|
320
|
+
|
321
|
+
/*******************************
|
322
|
+
Theme Overrides
|
323
|
+
*******************************/
|
324
|
+
|
325
|
+
|
326
|
+
|
327
|
+
/*******************************
|
328
|
+
Site Overrides
|
329
|
+
*******************************/
|
330
|
+
|