Skip to content

Commit 9eb42ab

Browse files
MNT correct publish_dir for html files of asv benchmarks (scikit-learn-contrib#143) 8a180f6
1 parent 9f1ab81 commit 9eb42ab

File tree

91 files changed

+4332
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+4332
-0
lines changed

asv.css

Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
1+
/* Basic navigation */
2+
3+
.asv-navigation {
4+
padding: 2px;
5+
}
6+
7+
nav ul li.active a {
8+
height: 52px;
9+
}
10+
11+
nav li.active span.navbar-brand {
12+
background-color: #e7e7e7;
13+
height: 52px;
14+
}
15+
16+
nav li.active span.navbar-brand:hover {
17+
background-color: #e7e7e7;
18+
}
19+
20+
.navbar-default .navbar-link {
21+
color: #2458D9;
22+
}
23+
24+
.panel-body {
25+
padding: 0;
26+
}
27+
28+
.panel {
29+
margin-bottom: 4px;
30+
-webkit-box-shadow: none;
31+
box-shadow: none;
32+
border-radius: 0;
33+
border-top-left-radius: 3px;
34+
border-top-right-radius: 3px;
35+
}
36+
37+
.panel-default>.panel-heading,
38+
.panel-heading {
39+
font-size: 12px;
40+
font-weight:bold;
41+
padding: 2px;
42+
text-align: center;
43+
border-top-left-radius: 3px;
44+
border-top-right-radius: 3px;
45+
background-color: #eee;
46+
}
47+
48+
.btn,
49+
.btn-group,
50+
.btn-group-vertical>.btn:first-child,
51+
.btn-group-vertical>.btn:last-child:not(:first-child),
52+
.btn-group-vertical>.btn:last-child {
53+
border: none;
54+
border-radius: 0px;
55+
overflow: hidden;
56+
}
57+
58+
.btn-default:focus, .btn-default:active, .btn-default.active {
59+
border: none;
60+
color: #fff;
61+
background-color: #99bfcd;
62+
}
63+
64+
#range {
65+
font-family: monospace;
66+
text-align: center;
67+
background: #ffffff;
68+
}
69+
70+
.form-control {
71+
border: none;
72+
border-radius: 0px;
73+
font-size: 12px;
74+
padding: 0px;
75+
}
76+
77+
.tooltip-inner {
78+
min-width: 100px;
79+
max-width: 800px;
80+
text-align: left;
81+
white-space: pre-wrap;
82+
font-family: monospace;
83+
}
84+
85+
/* Benchmark tree */
86+
87+
.nav-list {
88+
font-size: 12px;
89+
padding: 0;
90+
padding-left: 15px;
91+
}
92+
93+
.nav-list>li {
94+
overflow-x: hidden;
95+
}
96+
97+
.nav-list>li>a {
98+
padding: 0;
99+
padding-left: 5px;
100+
color: #000;
101+
}
102+
103+
.nav-list>li>a:focus {
104+
color: #fff;
105+
background-color: #99bfcd;
106+
box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
107+
}
108+
109+
.nav-list>li>.nav-header {
110+
white-space: nowrap;
111+
font-weight: 500;
112+
margin-bottom: 2px;
113+
}
114+
115+
.caret-right {
116+
display: inline-block;
117+
width: 0;
118+
height: 0;
119+
margin-left: 2px;
120+
vertical-align: middle;
121+
border-left: 4px solid;
122+
border-bottom: 4px solid transparent;
123+
border-top: 4px solid transparent;
124+
}
125+
126+
/* Summary page */
127+
128+
.benchmark-group > h1 {
129+
text-align: center;
130+
}
131+
132+
.benchmark-container {
133+
width: 300px;
134+
height: 116px;
135+
padding: 4px;
136+
border-radius: 3px;
137+
}
138+
139+
.benchmark-container:hover {
140+
background-color: #eee;
141+
}
142+
143+
.benchmark-plot {
144+
width: 292px;
145+
height: 88px;
146+
}
147+
148+
.benchmark-text {
149+
font-size: 12px;
150+
color: #000;
151+
width: 292px;
152+
overflow: hidden;
153+
}
154+
155+
#extra-buttons {
156+
margin: 1em;
157+
}
158+
159+
#extra-buttons a {
160+
border: solid 1px #ccc;
161+
}

0 commit comments

Comments
 (0)