blob: d9b66afe4ea74f99e91d2ae6574bab92f601d185 (
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
|
.tool_bar_btn {
border: 1px solid #919095;
cursor: pointer;
float: right;
height: $three-baselines;
margin-left: 10px;
width: 50px;
}
#tool-bar {
margin-top: $two-baselines;
position: absolute;
right: $graph-margin-right;
z-index: 1;
}
#btn_filter {
background: url(../img/toolbar_icon__filter.png);
background-repeat: no-repeat;
background-position: center;
}
#btn_export {
background: url(../img/toolbar_icon__export.png);
background-position: center;
background-repeat: no-repeat;
}
|