1@media print {
2	#view-issue-page .bugnote .btn { display: none; }
3	#view-issue-page .bugnote .btn-sm { display: none; }
4	.noprint { display: none; }
5}
6
7span.print { font-size: 8pt; }
8span.required 		{ font-size: 8pt; color: #bb0000; }
9
10td.category, th.category		{ background-color: #edf3f4 !important; color: #000000; font-weight: bold; vertical-align : top; }
11td.category .small, th.category .small	{ font-weight: normal;  }
12
13.small-caption	{
14    border: 1px solid #fff;
15    font-size: 8pt;
16    padding: 0 5px;
17}
18tr.spacer			{ background-color: #ffffff !important; color: #000000; height: 5px; }
19
20
21/**
22 * view_all_bug_page.php
23 */
24#buglist td, #buglist th	{ text-align: center; }
25#buglist .column-summary,
26#buglist .column-description,
27#buglist .column-notes,
28#buglist .column-steps-to-reproduce,
29#buglist .column-additional-information
30	{ text-align: left; }
31
32/* manage_plugin_page.php */
33span.dependency_dated		{ color: maroon; }
34span.dependency_met			{ color: green; }
35span.dependency_unmet		{ color: red; }
36span.dependency_upgrade		{ color: orange; }
37
38tr.bugnote .bugnote-note { background-color: #e8e8e8; color: #000000; width: 75%; vertical-align: top; }
39
40.bugnote-private { background-color: #fcf8e3 !important;}
41
42.nowrap
43{
44	white-space: nowrap;
45}
46
47.issue-status
48{
49	border-bottom: 1px dotted black;
50}
51
52.bug-attachments {
53	margin: 0;
54	padding: 0;
55}
56
57.bug-attachments > ul {
58	list-style: none;
59	margin: 0.5em;
60	padding: 0;
61}
62
63.bug-attachments > ul > li {
64	margin: 0.5em 0;
65	padding: 0;
66}
67
68.bug-attachments > ul > li > div {
69	margin: 0;
70	padding: 0;
71}
72
73.bug-attachment-preview-text, .bug-attachment-preview-image {
74	margin: 1em;
75	padding: 1em;
76}
77
78.bug-attachment-preview-image img {
79	max-width: 100%;
80}
81
82.bug-attachment-preview-text {
83	white-space: pre-wrap;
84}
85
86#dates label[for=start_date], #dates > label[for=end_date] {
87	float: left;
88	width: 3em;
89}
90
91/* manage_config_* colors */
92.color-global		{ background-color: LightBlue; }
93.color-project		{ background-color: LightGreen; }
94
95td.due-0, td.overdue { background-color: red; color: #ffffff; font-weight: bold; }
96td.due-1             { background-color: darkorange; color: #ffffff; font-weight: bold; }
97td.due-2             { background-color: green; color: #ffffff; font-weight: bold; }
98td.print-overdue     { font-weight: bold; }
99
100.collapse-link { cursor: pointer; }
101
102.table-nonfluid {
103   width: auto !important;
104}
105
106.login-logo {
107	text-align: center;
108}
109
110/* strike-through resolved issues: #22492 */
111.resolved  {
112    text-decoration: line-through;
113}
114
115.error-details .code {
116	font-family: monospace;
117}
118
119table.filters td.category {
120	color: #337ab7;
121}
122
123.listjs-table .sort:after {
124  display: inline-block;
125  width: 0;
126  height: 0;
127  border-left: 5px solid transparent;
128  border-right: 5px solid transparent;
129  border-bottom: 5px solid transparent;
130  content: "";
131  position: relative;
132  top: -10px;
133  right: -5px;
134}
135
136.listjs-table .sort.desc:after {
137  width: 0;
138  height: 0;
139  border-left: 5px solid transparent;
140  border-right: 5px solid transparent;
141  border-top: 5px solid #707070;
142  content: "";
143  position: relative;
144  top: 4px;
145  right: -5px;
146}
147
148.listjs-table .sort.asc:after {
149  width: 0;
150  height: 0;
151  border-left: 5px solid transparent;
152  border-right: 5px solid transparent;
153  border-bottom: 5px solid #707070;
154  content: "";
155  position: relative;
156  top: -4px;
157  right: -5px;
158}
159
160.listjs-table .sort:hover {
161	text-decoration: underline;
162}
163