forked from adobe/brackets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBootstrapReporterView.css
53 lines (46 loc) · 1.14 KB
/
BootstrapReporterView.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
@media (min-width: 728px) {
body {
/* make the container go all the way to the bottom of the topbar */
padding-top: 60px;
}
}
pre {
overflow-x: scroll;
white-space: pre;
word-wrap: normal;
}
.nav .badge {
float: right;
}
/* Make fail (red) color bolder so easier to see */
.label-important, .badge-important {
background-color: #F00;
}
/* Reduce padding between lines to show more tests */
.nav-pills > li > a {
padding-top: 4px;
padding-bottom: 4px;
}
@media (max-width: 767px) {
/* Reduce font size for smaller viewport */
.nav-pills > li > a {
font-size: 11px;
}
}
.link-to-source {
/* Behavioral style - indicates that clicking opens a file in the parent Brackets window */
}
/* De-emphasize source links to Jasmine framework code (vs. links to test spec & Brackets core code) */
.testframework-link {
opacity: 0.45;
}
/* Add some space between the menu and the list of tests. */
.container-fluid {
margin-top: 1.5em;
}
@media (min-width: 728px) and (max-width: 1199px) {
.navbar-fixed-top .container,
.navbar-fixed-bottom .container {
width: 800px;
}
}