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,280 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* # Semantic - Progress Bar
|
3
|
-
* http://github.com/jlukic/semantic-ui/
|
4
|
-
*
|
5
|
-
*
|
6
|
-
* Copyright 2014 Contributors
|
7
|
-
* Released under the MIT license
|
8
|
-
* http://opensource.org/licenses/MIT
|
9
|
-
*
|
10
|
-
*/
|
11
|
-
|
12
|
-
/*******************************
|
13
|
-
Progress Bar
|
14
|
-
*******************************/
|
15
|
-
|
16
|
-
.ui.progress {
|
17
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
18
|
-
width: 100%;
|
19
|
-
height: 35px;
|
20
|
-
background-color: #FAFAFA;
|
21
|
-
padding: 5px;
|
22
|
-
border-radius: 0.3125em;
|
23
|
-
-webkit-box-sizing: border-box;
|
24
|
-
-moz-box-sizing: border-box;
|
25
|
-
-ms-box-sizing: border-box;
|
26
|
-
box-sizing: border-box;
|
27
|
-
}
|
28
|
-
|
29
|
-
.ui.progress .bar {
|
30
|
-
display: inline-block;
|
31
|
-
height: 100%;
|
32
|
-
background-color: #CCCCCC;
|
33
|
-
border-radius: 3px;
|
34
|
-
-webkit-transition: width 1s ease-in-out,
|
35
|
-
background-color 1s ease-out;
|
36
|
-
transition: width 1s ease-in-out,
|
37
|
-
background-color 1s ease-out;
|
38
|
-
}
|
39
|
-
|
40
|
-
/*******************************
|
41
|
-
States
|
42
|
-
*******************************/
|
43
|
-
|
44
|
-
/*--------------
|
45
|
-
Successful
|
46
|
-
---------------*/
|
47
|
-
|
48
|
-
.ui.successful.progress .bar {
|
49
|
-
background-color: #73E064 !important;
|
50
|
-
}
|
51
|
-
|
52
|
-
.ui.successful.progress .bar,
|
53
|
-
.ui.successful.progress .bar::after {
|
54
|
-
-webkit-animation: none !important;
|
55
|
-
animation: none !important;
|
56
|
-
}
|
57
|
-
|
58
|
-
.ui.warning.progress .bar {
|
59
|
-
background-color: #E96633 !important;
|
60
|
-
}
|
61
|
-
|
62
|
-
.ui.warning.progress .bar,
|
63
|
-
.ui.warning.progress .bar::after {
|
64
|
-
-webkit-animation: none !important;
|
65
|
-
animation: none !important;
|
66
|
-
}
|
67
|
-
|
68
|
-
/*--------------
|
69
|
-
Failed
|
70
|
-
---------------*/
|
71
|
-
|
72
|
-
.ui.failed.progress .bar {
|
73
|
-
background-color: #DF9BA4 !important;
|
74
|
-
}
|
75
|
-
|
76
|
-
.ui.failed.progress .bar,
|
77
|
-
.ui.failed.progress .bar::after {
|
78
|
-
-webkit-animation: none !important;
|
79
|
-
animation: none !important;
|
80
|
-
}
|
81
|
-
|
82
|
-
/*--------------
|
83
|
-
Active
|
84
|
-
---------------*/
|
85
|
-
|
86
|
-
.ui.active.progress .bar {
|
87
|
-
position: relative;
|
88
|
-
}
|
89
|
-
|
90
|
-
.ui.active.progress .bar::after {
|
91
|
-
content: '';
|
92
|
-
opacity: 0;
|
93
|
-
position: absolute;
|
94
|
-
top: 0px;
|
95
|
-
left: 0px;
|
96
|
-
right: 0px;
|
97
|
-
bottom: 0px;
|
98
|
-
background: #FFFFFF;
|
99
|
-
border-radius: 3px;
|
100
|
-
-webkit-animation: progress-active 2s ease-out infinite;
|
101
|
-
animation: progress-active 2s ease-out infinite;
|
102
|
-
}
|
103
|
-
|
104
|
-
@-webkit-keyframes progress-active {
|
105
|
-
0% {
|
106
|
-
opacity: 0;
|
107
|
-
width: 0;
|
108
|
-
}
|
109
|
-
|
110
|
-
50% {
|
111
|
-
opacity: 0.3;
|
112
|
-
}
|
113
|
-
|
114
|
-
100% {
|
115
|
-
opacity: 0;
|
116
|
-
width: 95%;
|
117
|
-
}
|
118
|
-
}
|
119
|
-
|
120
|
-
@keyframes progress-active {
|
121
|
-
0% {
|
122
|
-
opacity: 0;
|
123
|
-
width: 0;
|
124
|
-
}
|
125
|
-
|
126
|
-
50% {
|
127
|
-
opacity: 0.3;
|
128
|
-
}
|
129
|
-
|
130
|
-
100% {
|
131
|
-
opacity: 0;
|
132
|
-
width: 100%;
|
133
|
-
}
|
134
|
-
}
|
135
|
-
|
136
|
-
/*--------------
|
137
|
-
Disabled
|
138
|
-
---------------*/
|
139
|
-
|
140
|
-
.ui.disabled.progress {
|
141
|
-
opacity: 0.35;
|
142
|
-
}
|
143
|
-
|
144
|
-
.ui.disabled.progress .bar,
|
145
|
-
.ui.disabled.progress .bar::after {
|
146
|
-
-webkit-animation: none !important;
|
147
|
-
animation: none !important;
|
148
|
-
}
|
149
|
-
|
150
|
-
/*******************************
|
151
|
-
Variations
|
152
|
-
*******************************/
|
153
|
-
|
154
|
-
/*--------------
|
155
|
-
Attached
|
156
|
-
---------------*/
|
157
|
-
|
158
|
-
/* bottom attached */
|
159
|
-
|
160
|
-
.ui.progress.attached {
|
161
|
-
position: relative;
|
162
|
-
border: none;
|
163
|
-
}
|
164
|
-
|
165
|
-
.ui.progress.attached,
|
166
|
-
.ui.progress.attached .bar {
|
167
|
-
display: block;
|
168
|
-
height: 3px;
|
169
|
-
padding: 0px;
|
170
|
-
overflow: hidden;
|
171
|
-
border-radius: 0em 0em 0.3125em 0.3125em;
|
172
|
-
}
|
173
|
-
|
174
|
-
.ui.progress.attached .bar {
|
175
|
-
border-radius: 0em;
|
176
|
-
}
|
177
|
-
|
178
|
-
/* top attached */
|
179
|
-
|
180
|
-
.ui.progress.top.attached,
|
181
|
-
.ui.progress.top.attached .bar {
|
182
|
-
top: -2px;
|
183
|
-
border-radius: 0.3125em 0.3125em 0em 0em;
|
184
|
-
}
|
185
|
-
|
186
|
-
.ui.progress.top.attached .bar {
|
187
|
-
border-radius: 0em;
|
188
|
-
}
|
189
|
-
|
190
|
-
/*--------------
|
191
|
-
Colors
|
192
|
-
---------------*/
|
193
|
-
|
194
|
-
.ui.blue.progress .bar {
|
195
|
-
background-color: #6ECFF5;
|
196
|
-
}
|
197
|
-
|
198
|
-
.ui.black.progress .bar {
|
199
|
-
background-color: #5C6166;
|
200
|
-
}
|
201
|
-
|
202
|
-
.ui.green.progress .bar {
|
203
|
-
background-color: #A1CF64;
|
204
|
-
}
|
205
|
-
|
206
|
-
.ui.red.progress .bar {
|
207
|
-
background-color: #EF4D6D;
|
208
|
-
}
|
209
|
-
|
210
|
-
.ui.purple.progress .bar {
|
211
|
-
background-color: #564F8A;
|
212
|
-
}
|
213
|
-
|
214
|
-
.ui.teal.progress .bar {
|
215
|
-
background-color: #00B5AD;
|
216
|
-
}
|
217
|
-
|
218
|
-
/*--------------
|
219
|
-
Striped
|
220
|
-
---------------*/
|
221
|
-
|
222
|
-
.ui.progress.striped .bar {
|
223
|
-
-webkit-background-size: 30px 30px;
|
224
|
-
background-size: 30px 30px;
|
225
|
-
background-image: -webkit-gradient(linear, left top, right bottom,
|
226
|
-
color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent),
|
227
|
-
color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)),
|
228
|
-
color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent),
|
229
|
-
to(transparent)
|
230
|
-
);
|
231
|
-
background-image: -webkit-linear-gradient(
|
232
|
-
135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
|
233
|
-
transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
|
234
|
-
transparent 75%, transparent
|
235
|
-
);
|
236
|
-
background-image: linear-gradient(
|
237
|
-
135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
|
238
|
-
transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
|
239
|
-
transparent 75%, transparent
|
240
|
-
);
|
241
|
-
}
|
242
|
-
|
243
|
-
.ui.progress.active.striped .bar:after {
|
244
|
-
-webkit-animation: none;
|
245
|
-
-ms-animation: none;
|
246
|
-
animation: none;
|
247
|
-
}
|
248
|
-
|
249
|
-
.ui.progress.active.striped .bar {
|
250
|
-
-webkit-animation: progress-striped 3s linear infinite;
|
251
|
-
animation: progress-striped 3s linear infinite;
|
252
|
-
}
|
253
|
-
|
254
|
-
@-webkit-keyframes progress-striped {
|
255
|
-
0% {
|
256
|
-
background-position: 0px 0;
|
257
|
-
}
|
258
|
-
|
259
|
-
100% {
|
260
|
-
background-position: 60px 0;
|
261
|
-
}
|
262
|
-
}
|
263
|
-
|
264
|
-
@keyframes progress-striped {
|
265
|
-
0% {
|
266
|
-
background-position: 0px 0;
|
267
|
-
}
|
268
|
-
|
269
|
-
100% {
|
270
|
-
background-position: 60px 0;
|
271
|
-
}
|
272
|
-
}
|
273
|
-
|
274
|
-
/*--------------
|
275
|
-
Sizes
|
276
|
-
---------------*/
|
277
|
-
|
278
|
-
.ui.small.progress .bar {
|
279
|
-
height: 14px;
|
280
|
-
}
|
@@ -1,299 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* # Semantic - Chat Room
|
3
|
-
* http://github.com/jlukic/semantic-ui/
|
4
|
-
*
|
5
|
-
*
|
6
|
-
* Copyright 2014 Contributors
|
7
|
-
* Released under the MIT license
|
8
|
-
* http://opensource.org/licenses/MIT
|
9
|
-
*
|
10
|
-
*/
|
11
|
-
|
12
|
-
/*******************************
|
13
|
-
Chat Room
|
14
|
-
*******************************/
|
15
|
-
|
16
|
-
.ui.chatroom {
|
17
|
-
background-color: #F8F8F8;
|
18
|
-
width: 330px;
|
19
|
-
height: 370px;
|
20
|
-
padding: 0px;
|
21
|
-
}
|
22
|
-
|
23
|
-
.ui.chatroom .room {
|
24
|
-
position: relative;
|
25
|
-
background-color: #FFFFFF;
|
26
|
-
overflow: hidden;
|
27
|
-
height: 286px;
|
28
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
29
|
-
border-top: none;
|
30
|
-
border-bottom: none;
|
31
|
-
}
|
32
|
-
|
33
|
-
.ui.chatroom .room .loader {
|
34
|
-
display: none;
|
35
|
-
margin: -25px 0px 0px -25px;
|
36
|
-
}
|
37
|
-
|
38
|
-
/* Chat Room Actions */
|
39
|
-
|
40
|
-
.ui.chatroom .actions {
|
41
|
-
overflow: hidden;
|
42
|
-
background-color: #EEEEEE;
|
43
|
-
padding: 4px;
|
44
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
45
|
-
border-radius: 5px 5px 0px 0px;
|
46
|
-
}
|
47
|
-
|
48
|
-
.ui.chatroom .actions .button {
|
49
|
-
float: right;
|
50
|
-
margin-left: 3px;
|
51
|
-
}
|
52
|
-
|
53
|
-
/* Online User Count */
|
54
|
-
|
55
|
-
.ui.chatroom .actions .message {
|
56
|
-
float: left;
|
57
|
-
margin-left: 6px;
|
58
|
-
font-size: 11px;
|
59
|
-
color: #AAAAAA;
|
60
|
-
text-shadow: 0px -1px 0px rgba(255, 255, 255, 0.8);
|
61
|
-
line-height: 28px;
|
62
|
-
}
|
63
|
-
|
64
|
-
.ui.chatroom .actions .message .loader {
|
65
|
-
display: inline-block;
|
66
|
-
margin-right: 8px;
|
67
|
-
}
|
68
|
-
|
69
|
-
/* Chat Room Text Log */
|
70
|
-
|
71
|
-
.ui.chatroom .log {
|
72
|
-
float: left;
|
73
|
-
overflow: auto;
|
74
|
-
overflow-x: hidden;
|
75
|
-
overflow-y: auto;
|
76
|
-
}
|
77
|
-
|
78
|
-
.ui.chatroom .log .message {
|
79
|
-
padding: 3px 0px;
|
80
|
-
border-top: 1px dotted #DADADA;
|
81
|
-
}
|
82
|
-
|
83
|
-
.ui.chatroom .log .message:first-child {
|
84
|
-
border-top: none;
|
85
|
-
}
|
86
|
-
|
87
|
-
/* status event */
|
88
|
-
|
89
|
-
.ui.chatroom .status {
|
90
|
-
padding: 5px 0px;
|
91
|
-
color: #AAAAAA;
|
92
|
-
font-size: 12px;
|
93
|
-
font-style: italic;
|
94
|
-
line-height: 1.33;
|
95
|
-
border-top: 1px dotted #DADADA;
|
96
|
-
}
|
97
|
-
|
98
|
-
.ui.chatroom .log .status:first-child {
|
99
|
-
border-top: none;
|
100
|
-
}
|
101
|
-
|
102
|
-
.ui.chatroom .log .flag {
|
103
|
-
float: left;
|
104
|
-
}
|
105
|
-
|
106
|
-
.ui.chatroom .log p {
|
107
|
-
margin-left: 0px;
|
108
|
-
}
|
109
|
-
|
110
|
-
.ui.chatroom .log .author {
|
111
|
-
font-weight: bold;
|
112
|
-
-webkit-transition: color 0.3s ease-out;
|
113
|
-
transition: color 0.3s ease-out;
|
114
|
-
}
|
115
|
-
|
116
|
-
.ui.chatroom .log a.author:hover {
|
117
|
-
opacity: 0.8;
|
118
|
-
}
|
119
|
-
|
120
|
-
.ui.chatroom .log .message.admin p {
|
121
|
-
font-weight: bold;
|
122
|
-
margin: 1px 0px 0px 23px;
|
123
|
-
}
|
124
|
-
|
125
|
-
.ui.chatroom .log .divider {
|
126
|
-
margin: -1px 0px;
|
127
|
-
font-size: 11px;
|
128
|
-
padding: 10px 0px;
|
129
|
-
border-top: 1px solid #F8F8F8;
|
130
|
-
border-bottom: 1px solid #F8F8F8;
|
131
|
-
}
|
132
|
-
|
133
|
-
.ui.chatroom .log .divider .rule {
|
134
|
-
top: 50%;
|
135
|
-
width: 15%;
|
136
|
-
}
|
137
|
-
|
138
|
-
.ui.chatroom .log .divider .label {
|
139
|
-
color: #777777;
|
140
|
-
margin: 0px;
|
141
|
-
}
|
142
|
-
|
143
|
-
/* Chat Room User List */
|
144
|
-
|
145
|
-
.ui.chatroom .room .list {
|
146
|
-
position: relative;
|
147
|
-
overflow: auto;
|
148
|
-
overflow-x: hidden;
|
149
|
-
overflow-y: auto;
|
150
|
-
float: left;
|
151
|
-
background-color: #EEEEEE;
|
152
|
-
border-left: 1px solid #DDDDDD;
|
153
|
-
}
|
154
|
-
|
155
|
-
.ui.chatroom .room .list .user {
|
156
|
-
display: table;
|
157
|
-
padding: 3px 7px;
|
158
|
-
border-bottom: 1px solid #DDDDDD;
|
159
|
-
}
|
160
|
-
|
161
|
-
.ui.chatroom .room .list .user:hover {
|
162
|
-
background-color: #F8F8F8;
|
163
|
-
}
|
164
|
-
|
165
|
-
.ui.chatroom .room .list .image {
|
166
|
-
display: table-cell;
|
167
|
-
vertical-align: middle;
|
168
|
-
width: 20px;
|
169
|
-
}
|
170
|
-
|
171
|
-
.ui.chatroom .room .list .image img {
|
172
|
-
width: 20px;
|
173
|
-
height: 20px;
|
174
|
-
vertical-align: middle;
|
175
|
-
}
|
176
|
-
|
177
|
-
.ui.chatroom .room .list p {
|
178
|
-
display: table-cell;
|
179
|
-
vertical-align: middle;
|
180
|
-
padding-left: 7px;
|
181
|
-
padding-right: 14px;
|
182
|
-
font-size: 11px;
|
183
|
-
line-height: 1.2;
|
184
|
-
font-weight: bold;
|
185
|
-
}
|
186
|
-
|
187
|
-
.ui.chatroom .room .list a:hover {
|
188
|
-
opacity: 0.8;
|
189
|
-
}
|
190
|
-
|
191
|
-
/* User List Loading */
|
192
|
-
|
193
|
-
.ui.chatroom.loading .loader {
|
194
|
-
display: block;
|
195
|
-
}
|
196
|
-
|
197
|
-
/* Chat Room Talk Input */
|
198
|
-
|
199
|
-
.ui.chatroom .talk {
|
200
|
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
201
|
-
padding: 5px 0px 0px;
|
202
|
-
background-color: #EEEEEE;
|
203
|
-
border-radius: 0px 0px 5px 5px;
|
204
|
-
}
|
205
|
-
|
206
|
-
.ui.chatroom .talk .avatar,
|
207
|
-
.ui.chatroom .talk input,
|
208
|
-
.ui.chatroom .talk .button {
|
209
|
-
float: left;
|
210
|
-
}
|
211
|
-
|
212
|
-
.ui.chatroom .talk .avatar img {
|
213
|
-
display: block;
|
214
|
-
width: 30px;
|
215
|
-
height: 30px;
|
216
|
-
margin-right: 4px;
|
217
|
-
border-radius: 500rem;
|
218
|
-
}
|
219
|
-
|
220
|
-
.ui.chatroom .talk input {
|
221
|
-
border: 1px solid #CCCCCC;
|
222
|
-
margin: 0px;
|
223
|
-
width: 196px;
|
224
|
-
height: 14px;
|
225
|
-
padding: 8px 5px;
|
226
|
-
font-size: 12px;
|
227
|
-
color: #555555;
|
228
|
-
}
|
229
|
-
|
230
|
-
.ui.chatroom .talk input.focus {
|
231
|
-
border: 1px solid #AAAAAA;
|
232
|
-
}
|
233
|
-
|
234
|
-
.ui.chatroom .send {
|
235
|
-
width: 80px;
|
236
|
-
height: 32px;
|
237
|
-
margin-left: -1px;
|
238
|
-
padding: 4px 12px;
|
239
|
-
font-size: 12px;
|
240
|
-
line-height: 23px;
|
241
|
-
-webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
|
242
|
-
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
|
243
|
-
border-radius: 0 5px 5px 0;
|
244
|
-
}
|
245
|
-
|
246
|
-
.ui.chatroom .talk .log-in.button {
|
247
|
-
display: block;
|
248
|
-
float: none;
|
249
|
-
margin-top: -6px;
|
250
|
-
height: 22px;
|
251
|
-
border-radius: 0px 0px 4px 4px;
|
252
|
-
}
|
253
|
-
|
254
|
-
.ui.chatroom .talk .log-in.button i {
|
255
|
-
vertical-align: text-top;
|
256
|
-
}
|
257
|
-
|
258
|
-
/* Quirky Flags */
|
259
|
-
|
260
|
-
.ui.chatroom .log .team.flag {
|
261
|
-
width: 18px;
|
262
|
-
}
|
263
|
-
|
264
|
-
/* Chat room Loaded */
|
265
|
-
|
266
|
-
.ui.chatroom.loading .loader {
|
267
|
-
display: block;
|
268
|
-
}
|
269
|
-
|
270
|
-
/* Standard Size */
|
271
|
-
|
272
|
-
.ui.chatroom {
|
273
|
-
width: 330px;
|
274
|
-
height: 370px;
|
275
|
-
}
|
276
|
-
|
277
|
-
.ui.chatroom .room .container {
|
278
|
-
width: 3000px;
|
279
|
-
}
|
280
|
-
|
281
|
-
.ui.chatroom .log {
|
282
|
-
width: 314px;
|
283
|
-
height: 278px;
|
284
|
-
padding: 4px 7px;
|
285
|
-
}
|
286
|
-
|
287
|
-
.ui.chatroom .room .list {
|
288
|
-
width: 124px;
|
289
|
-
height: 278px;
|
290
|
-
padding: 4px 0px;
|
291
|
-
}
|
292
|
-
|
293
|
-
.ui.chatroom .room .list .user {
|
294
|
-
width: 110px;
|
295
|
-
}
|
296
|
-
|
297
|
-
.ui.chatroom .talk {
|
298
|
-
height: 40px;
|
299
|
-
}
|