summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/Speedometer/resources/todomvc/vanilla-examples/es2015-babel-webpack/src/app.css
blob: 527a58f71f39ff01f0a526972923f1d1e0fcd11b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.toggle-graph {
  float: left;
  margin-left: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.toggle-graph svg {
  height: 20px;
  width: 20px;
}
.toggle-graph svg path {
  fill: #777;
}

.toggle-graph.active svg path,
.toggle-graph:hover svg path,
.toggle-graph:focus svg path {
  fill: black;
}