forked from higeorange/twippera
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtwippera.css
598 lines (513 loc) · 11.7 KB
/
twippera.css
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
@charset "UTF-8";
/*********************************************************************
CSS Reset
*********************************************************************/
* { margin: 0; padding: 0; }
/*
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
nform,fieldset,input,
p,blockquote,pre,
th,td { margin: 0; padding: 0; }
*/
table {
border-collapse: collapse;
border-spacing: 0;
}
fieldset, img{ border: 0; }
address, caption, cite, code, dfn, em, strong, th, var {
font-style: normal;
font-weight: normal;
}
ol, ul { list-style: none; }
caption, th { text-align: left; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
q:before, q:after { content: ''; }
/*********************************************************************
Default Font Setting
*********************************************************************/
/*
* 84.5% for !IE, keywords for IE
* Percents could work for IE, but for backCompat purposes, we are using keywords.
* x-small is for IE < 6 and IE6 quirks mode.
*/
body {
font:13px sans-serif;
}
/*form系
firefox, safari では100%は大きすぎ。99%に。
--------------------------------------------------------------------*/
select, input, textarea {
font:99% sans-serif;
}
label, button, select, option {
cursor: pointer;
}
/* 等幅フォント
--------------------------------------------------------------------*/
pre, code {
/* font:115% monospace; */
font:100% monospace;
}
/*Default line-height
--------------------------------------------------------------------*/
/* body * {line-height:1.22em;} */
body {line-height:1;}
/*********************************************************************
Global Common Style
*********************************************************************/
body {
color: #666;
}
a,
a:link { color: #06f; text-decoration: underline; }
a:visited { color: #069; text-decoration: underline; }
a:hover,
a:active { color: #39f; }
/*********************************************************************
Float Clearing
*********************************************************************/
/* clearFix
--------------------------------------------------------------------*/
.clearFix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearFix {
display: inline-block; /* for MacIE and IE7 */
}
/* Holly Hack Targets IE Win only \*/
* html .clearFix { height: 1%; }
.clearFix { display: block; }
/* End Holly Hack */
/*********************************************************************
Basic Layout
*********************************************************************/
body {
/* margin: 50px 20px; */
background: url(images/test_bg.gif);
}
#container {
width: 420px;
height: 387px;
background: url(images/bg_top.png) no-repeat left top;
}
#containerInner {
padding-bottom: 10px;
background: url(images/bg_bottom.png) no-repeat left bottom;
}
#front {
background: url(images/bg.png) repeat-y left top;
}
#postForm {
margin: 0 2px;
padding: 5px 10px;
border-top: 1px #d7ebff solid;
background: #a3d0ff;
}
#updateList {
overflow: auto;
height: 280px;
width: 416px;
margin: 0 2px;
border-top: 1px #fff solid;
border-bottom: 1px #47a1ff solid;
background: #fdfdfd;
-apple-dashboard-region: dashboard-region(control rectangle 0px 0px 0px 0px);
}
div#header {
height: 33px;
}
div#header:after {
content: ".";
height: 0px;
clear:both;
display : block;
visibility : hidden;
}
h1 {
float: left;
width: 170px;
padding: 7px 0 0 10px;
color : #fff;
font-size: 120%;
}
ul#navi {
float: right;
width: 150px;
padding: 7px 12px 0 0;
text-align: right;
}
ul#navi li{
display: inline;
padding-left: 10px;
}
.reload {
width: 23px;
height:23px;
background: url(images/reload.gif) no-repeat 0 0;
}
.reload.loading {
background: url("images/loading.gif") no-repeat 0 0;
}
.config {
width:23px;
height:23px;
background: url(images/pref.gif) no-repeat 0 0;
}
.close {
width:23px;
height:23px;
background: url(images/close.gif) no-repeat 0 0;
}
.all_buttons {
border-width: 0;
background-color: transparent;
cursor: pointer;
}
.all_buttons:hover {
background-position: 0 50%;
}
.all_buttons:active {
background-position: 0 100%;
}
div#display {
margin: 0 2px;
background: #dae6f5;
padding: 5px 10px;
border-bottom: 1px #c2c2c2 solid;
height: 13px;
}
div#display ul{
}
div#display ul li {
display: inline;
cursor: pointer;
padding: 2px;
font-weight: 700;
text-shadow: 1px 1px 0 #999;
}
div#display ul li:hover {
text-decoration: underline;
}
div#display ul li.focused {
background-color: #328BE0;
color: #fff;
}
div#msg {
margin: 0 2px;
padding: 5px 10px;
background: #f5ecc4;
border-bottom: 1px #c2c2c2 solid;
width: 400px;
height: 13px;
display: block;
}
div#msg span#close_msg {
float: right;
width: 80px;
}
div#front ul#updateList li {
padding: 5px 10px;
line-height: 1.33;
overflow: hidden;
}
div#front ul#updateList li:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
div#front ul#updateList li.zebra {
background: #dae6f5;
}
div#front ul#updateList li.focus {
border: 2px #3288E0 solid;
}
/*
div#front ul#updateList li:nth-child(even) {
background: #dae6f5;
}
*/
div#front ul#updateList li img {
margin-right: 4px;
border: 1px #ccc solid;
vertical-align: middle;
cursor: pointer;
}
div#front ul#updateList li span.meta {
float: right;
line-height: 16px;
}
div#front ul#updateList li span.meta span{
float: left;
display: block;
margin: 0 1px;
}
div#front ul#updateList li span.meta span.post_time,
div#front ul#updateList li span.meta span.in_reply_to {
font-size : 80%;
color : #3b6fa4;
}
div#front ul#updateList li span.meta span.fav {
width: 17px;
height: 17px;
background-repeat: no-repeat;
cursor: pointer;
}
div#front ul#updateList li span.meta span.retweet {
color: #06f;
text-decoration: underline;
cursor: pointer;
}
div#front ul#updateList li span span.protected {
width: 16px;
height: 16px;
background: url('images/icon_red_lock.gif') top left no-repeat;
}
div#front ul#updateList li span span.trash {
width: 16px;
height: 16px;
background: url('images/icon_trash.gif') top left no-repeat;
cursor: pointer;
}
#updateList .user {
margin-right: 0.3em;
font-weight: bold;
cursor: pointer;
}
#updateList .user:hover {
text-decoration: underline;
}
#updateList .tome .user{
color: #e00000;
}
div#front ul#updateList li.tome span.msg{
font-weight: bold;
}
div#front ul#updateList li.myself span.msg{
font-weight: bold;
}
/*
div#front ul#updateList li span.tome a {
color: inherit;
}
*/
#postForm h2 {
float: left;
width: 180px;
padding-bottom : 5px;
font-size: 105%;
color: #073f77;
}
#postForm p.char {
float: right;
width: 180px;
text-align: right;
color: #073f77;
}
#postForm ul#user_sugg {
display: none;
border: 1px solid #073f77;
background: #fff;
color: #073f77;
position: absolute;
bottom: 70px;
left: 20px;
padding: 5px;
}
#postForm ul#user_sugg li {
margin: 3px 0;
}
#postForm ul#user_sugg li:hover {
background : #073f77;
color: #fff;
}
#status {
width: 326px;
height: 26px;
margin-right: 5px;
padding: 0 4px;
border: 2px #6bb8ff solid;
font-size: 100%;
}
.post {
width:53px;
height:30px;
margin-bottom: 1px;
background: url(images/post.png) no-repeat 0 0;
vertical-align: middle;
float: right;
}
/*********************************************************************
Configuration
*********************************************************************/
/* div#front { display: none; } */
div#config {
display: none;
clear: both;
background: url(images/bg.png) repeat-y left top;
}
#config .section,
#config #footer {
padding: 5px 10px;
}
#configInner,
#config #footer {
margin: 0 2px;
}
#configInner {
/* border-bottom: 1px #47a1ff solid; */
background: #f4f4f4;
}
#config .title {
padding: 5px 10px;
background: #dae6f5;
border-top: 1px #e8f0f9 solid;
border-bottom: 1px #c2c2c2 solid;
color: #073f77;
}
#config .section {
border-top: 1px #fff solid;
border-bottom: 1px #c2c2c2 solid;
}
div#config p {
padding: 3px 10px
}
#locale {
width: 100px;
padding: 2px;
}
/*
.save {
width: 79px;
height:24px;
background: url(images/save.png) no-repeat 0 0;
}
*/
#configInner .btn {
display: block;
}
#configInner .btn:active {
position: relative;
top: 1px;
left: 1px;
}
.cmdBtn {
display: table-cell;
padding-left: 7px;
background: url(images/btn_head.png) no-repeat left top;
}
#configInner .cmdBtnInner {
display: block;
height: 24px;
padding-left: 8px;
padding-right: 15px;
background: url(images/btn.png) no-repeat right top;
line-height: 24px;
border: 0;
}
#configInner .all_buttons_inner:hover {
background-position: right 50%;
}
#configInner .all_buttons_inner:active {
background-position: right 100%;
}
#footer .btn {
display: block;
float: right;
}
#footer .btn:active {
position: relative;
top: 1px;
left: 1px;
}
.about {
display: table-cell;
padding-left: 21px;
background: url(images/footer_btn_head.png) no-repeat left top;
}
#footer .btnInner {
display: block;
height: 24px;
padding-left: 6px;
padding-right: 15px;
background: url(images/footer_btn.png) no-repeat right top;
color: #666;
font-weight: bold;
line-height: 24px;
}
#config #footer {
border-top: 1px #d7ebff solid;
background: #a3d0ff;
color: #073f77;
}
/*********************************************************************
Popup Daialog
*********************************************************************/
#popup {
display: none;
overflow: hidden;
position: absolute;
top: 100px;
width: 100%;
}
#popupInner {
width: 300px;
margin: 0 auto;
}
#popup .t { background: url(images/popup_t.png) repeat-x left top; height: 9px; }
#popup .b { background: url(images/popup_b.png) repeat-x right bottom; height: 9px;}
#popup .l { background: url(images/popup_l.png) repeat-y left top; padding-left: 9px;}
#popup .r { background: url(images/popup_r.png) repeat-y right bottom; padding-right: 9px;}
#popup .tl { background: url(images/popup_tl.png) no-repeat left top; padding-left: 9px; }
#popup .tr { background: url(images/popup_tr.png) no-repeat right top; padding-right: 9px;}
#popup .bl { background: url(images/popup_bl.png) no-repeat left bottom; padding-left: 9px;}
#popup .br { background: url(images/popup_br.png) no-repeat right bottom; padding-right: 9px; }
#popup .body { padding: 10px; background: #f5ecc4; }
#popup .msg { padding: 0 8px 8px 8px; }
#popup .command { text-align: center; }
#popup .btn span {
display: block;
background: url(images/btn_head.png) no-repeat left top;
}
#popup .btn span span {
display: block;
height: 24px;
margin-left: 7px;
padding-left: 8px;
padding-right: 15px;
background: url(images/btn.png) no-repeat right top;
line-height: 24px;
}
.pclose {
cursor: pointer;
position: relative;
top: -8px;
left: 8px;
background: url('images/close_small.png') no-repeat left top;
width: 15px;
height: 15px;
float: right;
}
/***** search *****/
#searchField {
position: absolute;
right: 16px;
bottom: 106px;
padding: 2px;
background: #ccc;
border: #dae6f5 solid 1px;
display: none;
opacity: 0.7;
}
#searchField #query {
width: 100px;
border-width: 0px;
padding: 1px 3px;
}