semantic-ui-rails 0.8.4.1 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -0
  3. data/app/assets/javascripts/semantic-ui/modules/accordion.js +1 -1
  4. data/app/assets/javascripts/semantic-ui/modules/behavior/api.js +1 -1
  5. data/app/assets/javascripts/semantic-ui/modules/behavior/form.js +1 -1
  6. data/app/assets/javascripts/semantic-ui/modules/behavior/state.js +1 -1
  7. data/app/assets/javascripts/semantic-ui/modules/chatroom.js +1 -1
  8. data/app/assets/javascripts/semantic-ui/modules/checkbox.js +1 -1
  9. data/app/assets/javascripts/semantic-ui/modules/dimmer.js +1 -1
  10. data/app/assets/javascripts/semantic-ui/modules/dropdown.js +1 -1
  11. data/app/assets/javascripts/semantic-ui/modules/modal.js +2 -2
  12. data/app/assets/javascripts/semantic-ui/modules/nag.js +1 -1
  13. data/app/assets/javascripts/semantic-ui/modules/rating.js +1 -1
  14. data/app/assets/javascripts/semantic-ui/modules/search.js +1 -1
  15. data/app/assets/javascripts/semantic-ui/modules/shape.js +1 -1
  16. data/app/assets/javascripts/semantic-ui/modules/sidebar.js +1 -1
  17. data/app/assets/javascripts/semantic-ui/modules/tab.js +1 -1
  18. data/app/assets/javascripts/semantic-ui/modules/transition.js +1 -2
  19. data/app/assets/javascripts/semantic-ui/modules/video.js +1 -1
  20. data/app/assets/stylesheets/semantic-ui/elements/image.less +181 -181
  21. data/app/assets/stylesheets/semantic-ui/modules/accordion.less +197 -197
  22. data/app/assets/stylesheets/semantic-ui/modules/chatroom.less +280 -280
  23. data/app/assets/stylesheets/semantic-ui/modules/dimmer.less +2 -0
  24. data/app/assets/stylesheets/semantic-ui/modules/modal.less +5 -2
  25. data/app/assets/stylesheets/semantic-ui/modules/nag.less +172 -172
  26. data/app/assets/stylesheets/semantic-ui/modules/popup.less +255 -255
  27. data/app/assets/stylesheets/semantic-ui/modules/video.less +98 -98
  28. data/lib/generators/semantic/install/templates/semantic-ui.css.less +1 -1
  29. data/lib/semantic/ui/rails/version.rb +1 -1
  30. data/semantic-ui-rails.gemspec +1 -0
  31. data/semantic.thor +15 -5
  32. metadata +15 -1
@@ -1,198 +1,198 @@
1
- /*
2
- * # Semantic - Accordion
3
- * http://github.com/jlukic/semantic-ui/
4
- *
5
- *
6
- * Copyright 2013 Contributors
7
- * Released under the MIT license
8
- * http://opensource.org/licenses/MIT
9
- *
10
- */
11
-
12
- /*******************************
13
- Accordion
14
- *******************************/
15
-
16
- .ui.accordion {
17
- width: 600px;
18
- max-width: 100%;
19
- overflow: hidden;
20
-
21
- font-size: 1rem;
22
- border-radius: 0.3125em;
23
-
24
- background-color: #FFFFFF;
25
-
26
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
27
- -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
28
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
29
- }
30
-
31
- .ui.accordion .title {
32
- cursor: pointer;
33
-
34
- margin: 0em;
35
- padding: 0.75em 1em;
36
-
37
- color: rgba(0, 0, 0, 0.6);
38
-
39
- border-top: 1px solid rgba(0, 0, 0, 0.05);
40
-
41
- -webkit-transition:
42
- background-color 0.2s ease-out
43
- ;
44
- -moz-transition:
45
- background-color 0.2s ease-out
46
- ;
47
- -o-transition:
48
- background-color 0.2s ease-out
49
- ;
50
- -ms-transition:
51
- background-color 0.2s ease-out
52
- ;
53
- transition:
54
- background-color 0.2s ease-out
55
- ;
56
- }
57
- .ui.accordion .title:first-child {
58
- border-top: none;
59
- }
60
-
61
-
62
- /* Content */
63
- .ui.accordion .content {
64
- display: none;
65
- margin: 0em;
66
- padding: 1.3em 1em;
67
- }
68
-
69
- /* Arrow */
70
- .ui.accordion .title .dropdown.icon {
71
- display: inline-block;
72
- float: none;
73
- margin: 0em 0.5em 0em 0em;
74
-
75
- -webkit-transition:
76
- -webkit-transform 0.2s ease,
77
- opacity 0.2s ease
78
- ;
79
- -moz-transition:
80
- -moz-transform 0.2s ease,
81
- opacity 0.2s ease
82
- ;
83
- -o-transition:
84
- -o-transform 0.2s ease,
85
- opacity 0.2s ease
86
- ;
87
- -ms-transition:
88
- -ms-transform 0.2s ease,
89
- opacity 0.2s ease
90
- ;
91
- transition:
92
- transform 0.2s ease,
93
- opacity 0.2s ease
94
- ;
95
- -webkit-transform: rotate(0deg);
96
- -moz-transform: rotate(0deg);
97
- -o-transform: rotate(0deg);
98
- -ms-transform: rotate(0deg);
99
- transform: rotate(0deg);
100
- }
101
- .ui.accordion .title .dropdown.icon:before {
102
- content: '\f0da';
103
- }
104
-
105
- /*--------------
106
- Loose Coupling
107
- ---------------*/
108
-
109
- .ui.basic.accordion.menu {
110
- background-color: #FFFFFF;
111
- -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
112
- -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
113
- box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
114
- }
115
- .ui.basic.accordion.menu .title,
116
- .ui.basic.accordion.menu .content {
117
- padding: 0em;
118
- }
119
-
120
-
121
- /*******************************
122
- Types
123
- *******************************/
124
-
125
- /*--------------
126
- Basic
127
- ---------------*/
128
-
129
- .ui.basic.accordion {
130
- background-color: transparent;
131
-
132
- -webkit-box-shadow: none;
133
- -moz-box-shadow: none;
134
- box-shadow: none;
135
- }
136
-
137
- .ui.basic.accordion .title,
138
- .ui.basic.accordion .title {
139
- background-color: transparent;
140
- border-top: none;
141
- padding-left: 0em;
142
- padding-right: 0em;
143
- }
144
-
145
- .ui.basic.accordion .content {
146
- padding: 0.5em 0em;
147
- }
148
-
149
- .ui.basic.accordion .active.title {
150
- background-color: transparent;
151
- }
152
-
153
-
154
- /*******************************
155
- States
156
- *******************************/
157
-
158
-
159
- /*--------------
160
- Hover
161
- ---------------*/
162
-
163
- .ui.accordion .title:hover,
164
- .ui.accordion .active.title {
165
- color: rgba(0, 0, 0, 0.8);
166
- }
167
-
168
- /*--------------
169
- Active
170
- ---------------*/
171
-
172
- .ui.accordion .active.title {
173
- background-color: rgba(0, 0, 0, 0.1);
174
- color: rgba(0, 0, 0, 0.8);
175
- }
176
- .ui.accordion .active.title .dropdown.icon {
177
- -webkit-transform: rotate(90deg);
178
- -moz-transform: rotate(90deg);
179
- -o-transform: rotate(90deg);
180
- -ms-transform: rotate(90deg);
181
- transform: rotate(90deg);
182
- }
183
- .ui.accordion .active.content {
184
- display: block;
185
- }
186
-
187
-
188
- /*******************************
189
- Variations
190
- *******************************/
191
-
192
- /*--------------
193
- Fluid
194
- ---------------*/
195
-
196
- .ui.fluid.accordion {
197
- width: 100%;
1
+ /*
2
+ * # Semantic - Accordion
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+ /*******************************
13
+ Accordion
14
+ *******************************/
15
+
16
+ .ui.accordion {
17
+ width: 600px;
18
+ max-width: 100%;
19
+ overflow: hidden;
20
+
21
+ font-size: 1rem;
22
+ border-radius: 0.3125em;
23
+
24
+ background-color: #FFFFFF;
25
+
26
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
27
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
28
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
29
+ }
30
+
31
+ .ui.accordion .title {
32
+ cursor: pointer;
33
+
34
+ margin: 0em;
35
+ padding: 0.75em 1em;
36
+
37
+ color: rgba(0, 0, 0, 0.6);
38
+
39
+ border-top: 1px solid rgba(0, 0, 0, 0.05);
40
+
41
+ -webkit-transition:
42
+ background-color 0.2s ease-out
43
+ ;
44
+ -moz-transition:
45
+ background-color 0.2s ease-out
46
+ ;
47
+ -o-transition:
48
+ background-color 0.2s ease-out
49
+ ;
50
+ -ms-transition:
51
+ background-color 0.2s ease-out
52
+ ;
53
+ transition:
54
+ background-color 0.2s ease-out
55
+ ;
56
+ }
57
+ .ui.accordion .title:first-child {
58
+ border-top: none;
59
+ }
60
+
61
+
62
+ /* Content */
63
+ .ui.accordion .content {
64
+ display: none;
65
+ margin: 0em;
66
+ padding: 1.3em 1em;
67
+ }
68
+
69
+ /* Arrow */
70
+ .ui.accordion .title .dropdown.icon {
71
+ display: inline-block;
72
+ float: none;
73
+ margin: 0em 0.5em 0em 0em;
74
+
75
+ -webkit-transition:
76
+ -webkit-transform 0.2s ease,
77
+ opacity 0.2s ease
78
+ ;
79
+ -moz-transition:
80
+ -moz-transform 0.2s ease,
81
+ opacity 0.2s ease
82
+ ;
83
+ -o-transition:
84
+ -o-transform 0.2s ease,
85
+ opacity 0.2s ease
86
+ ;
87
+ -ms-transition:
88
+ -ms-transform 0.2s ease,
89
+ opacity 0.2s ease
90
+ ;
91
+ transition:
92
+ transform 0.2s ease,
93
+ opacity 0.2s ease
94
+ ;
95
+ -webkit-transform: rotate(0deg);
96
+ -moz-transform: rotate(0deg);
97
+ -o-transform: rotate(0deg);
98
+ -ms-transform: rotate(0deg);
99
+ transform: rotate(0deg);
100
+ }
101
+ .ui.accordion .title .dropdown.icon:before {
102
+ content: '\f0da';
103
+ }
104
+
105
+ /*--------------
106
+ Loose Coupling
107
+ ---------------*/
108
+
109
+ .ui.basic.accordion.menu {
110
+ background-color: #FFFFFF;
111
+ -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
112
+ -moz-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
113
+ box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
114
+ }
115
+ .ui.basic.accordion.menu .title,
116
+ .ui.basic.accordion.menu .content {
117
+ padding: 0em;
118
+ }
119
+
120
+
121
+ /*******************************
122
+ Types
123
+ *******************************/
124
+
125
+ /*--------------
126
+ Basic
127
+ ---------------*/
128
+
129
+ .ui.basic.accordion {
130
+ background-color: transparent;
131
+
132
+ -webkit-box-shadow: none;
133
+ -moz-box-shadow: none;
134
+ box-shadow: none;
135
+ }
136
+
137
+ .ui.basic.accordion .title,
138
+ .ui.basic.accordion .title {
139
+ background-color: transparent;
140
+ border-top: none;
141
+ padding-left: 0em;
142
+ padding-right: 0em;
143
+ }
144
+
145
+ .ui.basic.accordion .content {
146
+ padding: 0.5em 0em;
147
+ }
148
+
149
+ .ui.basic.accordion .active.title {
150
+ background-color: transparent;
151
+ }
152
+
153
+
154
+ /*******************************
155
+ States
156
+ *******************************/
157
+
158
+
159
+ /*--------------
160
+ Hover
161
+ ---------------*/
162
+
163
+ .ui.accordion .title:hover,
164
+ .ui.accordion .active.title {
165
+ color: rgba(0, 0, 0, 0.8);
166
+ }
167
+
168
+ /*--------------
169
+ Active
170
+ ---------------*/
171
+
172
+ .ui.accordion .active.title {
173
+ background-color: rgba(0, 0, 0, 0.1);
174
+ color: rgba(0, 0, 0, 0.8);
175
+ }
176
+ .ui.accordion .active.title .dropdown.icon {
177
+ -webkit-transform: rotate(90deg);
178
+ -moz-transform: rotate(90deg);
179
+ -o-transform: rotate(90deg);
180
+ -ms-transform: rotate(90deg);
181
+ transform: rotate(90deg);
182
+ }
183
+ .ui.accordion .active.content {
184
+ display: block;
185
+ }
186
+
187
+
188
+ /*******************************
189
+ Variations
190
+ *******************************/
191
+
192
+ /*--------------
193
+ Fluid
194
+ ---------------*/
195
+
196
+ .ui.fluid.accordion {
197
+ width: 100%;
198
198
  }
@@ -1,281 +1,281 @@
1
- /*
2
- * # Semantic - Chat Room
3
- * http://github.com/jlukic/semantic-ui/
4
- *
5
- *
6
- * Copyright 2013 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
- .ui.chatroom .room {
23
- position: relative;
24
- background-color: #FFFFFF;
25
- overflow: hidden;
26
- height: 286px;
27
- border: 1px solid rgba(0, 0, 0, 0.1);
28
- border-top: none;
29
- border-bottom: none;
30
- }
31
- .ui.chatroom .room .loader {
32
- display: none;
33
- margin: -25px 0px 0px -25px;
34
- }
35
- /* Chat Room Actions */
36
- .ui.chatroom .actions {
37
- overflow: hidden;
38
- background-color: #EEEEEE;
39
- padding: 4px;
40
- border: 1px solid rgba(0, 0, 0, 0.1);
41
-
42
- -moz-border-radius: 5px 5px 0px 0px;
43
- -webkit-border-radius: 5px 5px 0px 0px;
44
- border-radius: 5px 5px 0px 0px;
45
- }
46
- .ui.chatroom .actions .button {
47
- float: right;
48
- margin-left: 3px;
49
- }
50
-
51
- /* Online User Count */
52
- .ui.chatroom .actions .message {
53
- float: left;
54
- margin-left: 6px;
55
- font-size: 11px;
56
- color: #AAAAAA;
57
- text-shadow: 0px -1px 0px rgba(255, 255, 255, 0.8);
58
- line-height: 28px;
59
- }
60
- .ui.chatroom .actions .message .loader {
61
- display: inline-block;
62
- margin-right: 8px;
63
- }
64
-
65
-
66
- /* Chat Room Text Log */
67
- .ui.chatroom .log {
68
- float: left;
69
-
70
- overflow: auto;
71
- overflow-x: hidden;
72
- overflow-y: auto;
73
- }
74
- .ui.chatroom .log .message {
75
- padding: 3px 0px;
76
- border-top: 1px dotted #DADADA;
77
- }
78
- .ui.chatroom .log .message:first-child {
79
- border-top: none;
80
- }
81
- /* status event */
82
- .ui.chatroom .status {
83
- padding: 5px 0px;
84
- color: #AAAAAA;
85
-
86
- font-size: 12px;
87
- font-style: italic;
88
- line-height: 1.33;
89
- border-top: 1px dotted #DADADA;
90
- }
91
- .ui.chatroom .log .status:first-child {
92
- border-top: none;
93
- }
94
-
95
-
96
-
97
- .ui.chatroom .log .flag {
98
- float: left;
99
- }
100
- .ui.chatroom .log p {
101
- margin-left: 0px;
102
- }
103
- .ui.chatroom .log .author {
104
- font-weight: bold;
105
- -webkit-transition: color 0.3s ease-out;
106
- -moz-transition: color 0.3s ease-out;
107
- -o-transition: color 0.3s ease-out;
108
- -ms-transition: color 0.3s ease-out;
109
- transition: color 0.3s ease-out;
110
- }
111
- .ui.chatroom .log a.author:hover {
112
- opacity: 0.8;
113
- }
114
-
115
- .ui.chatroom .log .message.admin p {
116
- font-weight: bold;
117
- margin: 1px 0px 0px 23px;
118
- }
119
- .ui.chatroom .log .divider {
120
- margin: -1px 0px;
121
- font-size: 11px;
122
- padding: 10px 0px;
123
- border-top: 1px solid #F8F8F8;
124
- border-bottom: 1px solid #F8F8F8;
125
- }
126
- .ui.chatroom .log .divider .rule {
127
- top: 50%;
128
- width: 15%;
129
- }
130
-
131
- .ui.chatroom .log .divider .label {
132
- color: #777777;
133
- margin: 0px;
134
- }
135
-
136
- /* Chat Room User List */
137
- .ui.chatroom .room .list {
138
- position: relative;
139
- overflow: auto;
140
- overflow-x: hidden;
141
- overflow-y: auto;
142
-
143
- float: left;
144
- background-color: #EEEEEE;
145
- border-left: 1px solid #DDDDDD;
146
- }
147
- .ui.chatroom .room .list .user {
148
- display: table;
149
- padding: 3px 7px;
150
- border-bottom: 1px solid #DDDDDD;
151
- }
152
- .ui.chatroom .room .list .user:hover {
153
- background-color: #F8F8F8;
154
- }
155
- .ui.chatroom .room .list .image {
156
- display: table-cell;
157
- vertical-align: middle;
158
- width: 20px;
159
- }
160
- .ui.chatroom .room .list .image img {
161
- width: 20px;
162
- height: 20px;
163
- vertical-align: middle;
164
- }
165
- .ui.chatroom .room .list p {
166
- display: table-cell;
167
- vertical-align: middle;
168
- padding-left: 7px;
169
- padding-right: 14px;
170
- font-size: 11px;
171
- line-height: 1.2;
172
- font-weight: bold;
173
- }
174
- .ui.chatroom .room .list a:hover {
175
- opacity: 0.8;
176
- }
177
-
178
- /* User List Loading */
179
- .ui.chatroom.loading .loader {
180
- display: block;
181
- }
182
-
183
-
184
-
185
- /* Chat Room Talk Input */
186
- .ui.chatroom .talk {
187
- border: 1px solid rgba(0, 0, 0, 0.1);
188
- padding: 5px 0px 0px;
189
-
190
- background-color: #EEEEEE;
191
-
192
- -webkit-border-radius: 0px 0px 5px 5px;
193
- -moz-border-radius: 0px 0px 5px 5px;
194
- border-radius: 0px 0px 5px 5px;
195
- }
196
- .ui.chatroom .talk .avatar,
197
- .ui.chatroom .talk input,
198
- .ui.chatroom .talk .button {
199
- float: left;
200
- }
201
-
202
- .ui.chatroom .talk .avatar img {
203
- display: block;
204
- width: 30px;
205
- height: 30px;
206
- margin-right: 4px;
207
- border-radius: 500rem;
208
- }
209
- .ui.chatroom .talk input {
210
- border: 1px solid #CCCCCC;
211
- margin: 0px;
212
- width: 196px;
213
- height: 14px;
214
- padding: 8px 5px;
215
- font-size: 12px;
216
- color: #555555;
217
- }
218
- .ui.chatroom .talk input.focus {
219
- border: 1px solid #AAAAAA;
220
- }
221
- .ui.chatroom .send {
222
- width: 80px;
223
- height: 32px;
224
-
225
- margin-left: -1px;
226
- padding: 4px 12px;
227
- font-size: 12px;
228
- line-height: 23px;
229
-
230
- -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
231
- -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
232
- box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
233
-
234
- border-radius: 0 5px 5px 0;
235
- }
236
- .ui.chatroom .talk .log-in.button {
237
- display: block;
238
- float: none;
239
- margin-top: -6px;
240
- height: 22px;
241
- border-radius: 0px 0px 4px 4px;
242
- }
243
- .ui.chatroom .talk .log-in.button i {
244
- vertical-align: text-top;
245
- }
246
-
247
- /* Quirky Flags */
248
- .ui.chatroom .log .team.flag {
249
- width: 18px;
250
- }
251
-
252
- /* Chat room Loaded */
253
- .ui.chatroom.loading .loader {
254
- display: block;
255
- }
256
-
257
-
258
- /* Standard Size */
259
- .ui.chatroom {
260
- width: 330px;
261
- height: 370px;
262
- }
263
- .ui.chatroom .room .container {
264
- width: 3000px;
265
- }
266
- .ui.chatroom .log {
267
- width: 314px;
268
- height: 278px;
269
- padding: 4px 7px;
270
- }
271
- .ui.chatroom .room .list {
272
- width: 124px;
273
- height: 278px;
274
- padding: 4px 0px;
275
- }
276
- .ui.chatroom .room .list .user {
277
- width: 110px;
278
- }
279
- .ui.chatroom .talk {
280
- height: 40px;
1
+ /*
2
+ * # Semantic - Chat Room
3
+ * http://github.com/jlukic/semantic-ui/
4
+ *
5
+ *
6
+ * Copyright 2013 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
+ .ui.chatroom .room {
23
+ position: relative;
24
+ background-color: #FFFFFF;
25
+ overflow: hidden;
26
+ height: 286px;
27
+ border: 1px solid rgba(0, 0, 0, 0.1);
28
+ border-top: none;
29
+ border-bottom: none;
30
+ }
31
+ .ui.chatroom .room .loader {
32
+ display: none;
33
+ margin: -25px 0px 0px -25px;
34
+ }
35
+ /* Chat Room Actions */
36
+ .ui.chatroom .actions {
37
+ overflow: hidden;
38
+ background-color: #EEEEEE;
39
+ padding: 4px;
40
+ border: 1px solid rgba(0, 0, 0, 0.1);
41
+
42
+ -moz-border-radius: 5px 5px 0px 0px;
43
+ -webkit-border-radius: 5px 5px 0px 0px;
44
+ border-radius: 5px 5px 0px 0px;
45
+ }
46
+ .ui.chatroom .actions .button {
47
+ float: right;
48
+ margin-left: 3px;
49
+ }
50
+
51
+ /* Online User Count */
52
+ .ui.chatroom .actions .message {
53
+ float: left;
54
+ margin-left: 6px;
55
+ font-size: 11px;
56
+ color: #AAAAAA;
57
+ text-shadow: 0px -1px 0px rgba(255, 255, 255, 0.8);
58
+ line-height: 28px;
59
+ }
60
+ .ui.chatroom .actions .message .loader {
61
+ display: inline-block;
62
+ margin-right: 8px;
63
+ }
64
+
65
+
66
+ /* Chat Room Text Log */
67
+ .ui.chatroom .log {
68
+ float: left;
69
+
70
+ overflow: auto;
71
+ overflow-x: hidden;
72
+ overflow-y: auto;
73
+ }
74
+ .ui.chatroom .log .message {
75
+ padding: 3px 0px;
76
+ border-top: 1px dotted #DADADA;
77
+ }
78
+ .ui.chatroom .log .message:first-child {
79
+ border-top: none;
80
+ }
81
+ /* status event */
82
+ .ui.chatroom .status {
83
+ padding: 5px 0px;
84
+ color: #AAAAAA;
85
+
86
+ font-size: 12px;
87
+ font-style: italic;
88
+ line-height: 1.33;
89
+ border-top: 1px dotted #DADADA;
90
+ }
91
+ .ui.chatroom .log .status:first-child {
92
+ border-top: none;
93
+ }
94
+
95
+
96
+
97
+ .ui.chatroom .log .flag {
98
+ float: left;
99
+ }
100
+ .ui.chatroom .log p {
101
+ margin-left: 0px;
102
+ }
103
+ .ui.chatroom .log .author {
104
+ font-weight: bold;
105
+ -webkit-transition: color 0.3s ease-out;
106
+ -moz-transition: color 0.3s ease-out;
107
+ -o-transition: color 0.3s ease-out;
108
+ -ms-transition: color 0.3s ease-out;
109
+ transition: color 0.3s ease-out;
110
+ }
111
+ .ui.chatroom .log a.author:hover {
112
+ opacity: 0.8;
113
+ }
114
+
115
+ .ui.chatroom .log .message.admin p {
116
+ font-weight: bold;
117
+ margin: 1px 0px 0px 23px;
118
+ }
119
+ .ui.chatroom .log .divider {
120
+ margin: -1px 0px;
121
+ font-size: 11px;
122
+ padding: 10px 0px;
123
+ border-top: 1px solid #F8F8F8;
124
+ border-bottom: 1px solid #F8F8F8;
125
+ }
126
+ .ui.chatroom .log .divider .rule {
127
+ top: 50%;
128
+ width: 15%;
129
+ }
130
+
131
+ .ui.chatroom .log .divider .label {
132
+ color: #777777;
133
+ margin: 0px;
134
+ }
135
+
136
+ /* Chat Room User List */
137
+ .ui.chatroom .room .list {
138
+ position: relative;
139
+ overflow: auto;
140
+ overflow-x: hidden;
141
+ overflow-y: auto;
142
+
143
+ float: left;
144
+ background-color: #EEEEEE;
145
+ border-left: 1px solid #DDDDDD;
146
+ }
147
+ .ui.chatroom .room .list .user {
148
+ display: table;
149
+ padding: 3px 7px;
150
+ border-bottom: 1px solid #DDDDDD;
151
+ }
152
+ .ui.chatroom .room .list .user:hover {
153
+ background-color: #F8F8F8;
154
+ }
155
+ .ui.chatroom .room .list .image {
156
+ display: table-cell;
157
+ vertical-align: middle;
158
+ width: 20px;
159
+ }
160
+ .ui.chatroom .room .list .image img {
161
+ width: 20px;
162
+ height: 20px;
163
+ vertical-align: middle;
164
+ }
165
+ .ui.chatroom .room .list p {
166
+ display: table-cell;
167
+ vertical-align: middle;
168
+ padding-left: 7px;
169
+ padding-right: 14px;
170
+ font-size: 11px;
171
+ line-height: 1.2;
172
+ font-weight: bold;
173
+ }
174
+ .ui.chatroom .room .list a:hover {
175
+ opacity: 0.8;
176
+ }
177
+
178
+ /* User List Loading */
179
+ .ui.chatroom.loading .loader {
180
+ display: block;
181
+ }
182
+
183
+
184
+
185
+ /* Chat Room Talk Input */
186
+ .ui.chatroom .talk {
187
+ border: 1px solid rgba(0, 0, 0, 0.1);
188
+ padding: 5px 0px 0px;
189
+
190
+ background-color: #EEEEEE;
191
+
192
+ -webkit-border-radius: 0px 0px 5px 5px;
193
+ -moz-border-radius: 0px 0px 5px 5px;
194
+ border-radius: 0px 0px 5px 5px;
195
+ }
196
+ .ui.chatroom .talk .avatar,
197
+ .ui.chatroom .talk input,
198
+ .ui.chatroom .talk .button {
199
+ float: left;
200
+ }
201
+
202
+ .ui.chatroom .talk .avatar img {
203
+ display: block;
204
+ width: 30px;
205
+ height: 30px;
206
+ margin-right: 4px;
207
+ border-radius: 500rem;
208
+ }
209
+ .ui.chatroom .talk input {
210
+ border: 1px solid #CCCCCC;
211
+ margin: 0px;
212
+ width: 196px;
213
+ height: 14px;
214
+ padding: 8px 5px;
215
+ font-size: 12px;
216
+ color: #555555;
217
+ }
218
+ .ui.chatroom .talk input.focus {
219
+ border: 1px solid #AAAAAA;
220
+ }
221
+ .ui.chatroom .send {
222
+ width: 80px;
223
+ height: 32px;
224
+
225
+ margin-left: -1px;
226
+ padding: 4px 12px;
227
+ font-size: 12px;
228
+ line-height: 23px;
229
+
230
+ -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
231
+ -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
232
+ box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
233
+
234
+ border-radius: 0 5px 5px 0;
235
+ }
236
+ .ui.chatroom .talk .log-in.button {
237
+ display: block;
238
+ float: none;
239
+ margin-top: -6px;
240
+ height: 22px;
241
+ border-radius: 0px 0px 4px 4px;
242
+ }
243
+ .ui.chatroom .talk .log-in.button i {
244
+ vertical-align: text-top;
245
+ }
246
+
247
+ /* Quirky Flags */
248
+ .ui.chatroom .log .team.flag {
249
+ width: 18px;
250
+ }
251
+
252
+ /* Chat room Loaded */
253
+ .ui.chatroom.loading .loader {
254
+ display: block;
255
+ }
256
+
257
+
258
+ /* Standard Size */
259
+ .ui.chatroom {
260
+ width: 330px;
261
+ height: 370px;
262
+ }
263
+ .ui.chatroom .room .container {
264
+ width: 3000px;
265
+ }
266
+ .ui.chatroom .log {
267
+ width: 314px;
268
+ height: 278px;
269
+ padding: 4px 7px;
270
+ }
271
+ .ui.chatroom .room .list {
272
+ width: 124px;
273
+ height: 278px;
274
+ padding: 4px 0px;
275
+ }
276
+ .ui.chatroom .room .list .user {
277
+ width: 110px;
278
+ }
279
+ .ui.chatroom .talk {
280
+ height: 40px;
281
281
  }