blob: 6d1a447e20d4f7c4f65e8d055bd959ee25be0fb6 (
plain)
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
|
#container{
width:768px;
}
#pagejump_next{
float:right;
}
#logo{
}
#searchbar{
clear:both;
}
#searchbar_input{
width:40%;
}
.tag_link{
font-size: 10px;
color: #ffffff;
background: #228B22;
text-decoration: none;
padding:0 3px;
border:0px solid;
border-radius:4px;
}
.issue_unit .tag_link{
font-size: 10px;
color: #ffffff;
background: #228B22;
text-decoration: none;
padding:0 3px;
border:0px solid;
border-radius:4px;
}
.issue_unit{
/*margin-top: 10px;*/
padding: 3px;
}
.issue_unit_odd{
background: #f7f7f7;
}
.issue_unit_even{
background: #ffffff;
}
.issue_container .issue_title{
background: #f7f7f7;
font-weight: bold;
}
.issue_container .issue_description{
background: #f7f7f7;
}
.issue_container .issue_font{
font-weight: bold;
font-size: 12px;
display: block;
}
.issue_container .issue_solve{
background: #f7f7f7;
}
.issue_container > * {
margin-bottom : 5px;
}
.form_add .issue_title{
width : 100%;
}
.form_add .issue_tags{
width : 100%;
}
.form_add .issue_font{
font-weight: bold;
font-size: 12px;
display: block;
}
.form_add > *{
margin-bottom : 5px;
}
|