Add hover class

pull/10616/head
Deniz Kusefoglu 2018-03-11 21:08:04 -07:00
parent c99dabe3e6
commit 96eda1f2ff
1 changed files with 40 additions and 37 deletions

View File

@ -4,45 +4,48 @@
*/
.table-graph-container {
position: absolute;
width: calc(100% - 32px);
height: calc(100% - 16px);
top: 8px;
left: 16px;
border: 2px solid $g5-pepper;
border-radius: 3px;
overflow: hidden;
position: absolute;
width: calc(100% - 32px);
height: calc(100% - 16px);
top: 8px;
left: 16px;
border: 2px solid $g5-pepper;
border-radius: 3px;
overflow: hidden;
}
.table-graph-cell {
line-height: 30px;
padding: 0 6px;
font-size: 13px;
color: $g13-mist;
border: 1px solid $g5-pepper;
line-height: 30px;
padding: 0 6px;
font-size: 13px;
color: $g13-mist;
border: 1px solid $g5-pepper;
&__fixed-row,
&__fixed-column {
font-weight: 700;
color: $g16-pearl;
background-color: $g4-onyx;
}
&__fixed-row {
border-top: 0;
}
&__fixed-column {
border-left: 0;
}
&__fixed-corner {
border-top: 0;
border-left: 0;
color: $g18-cloud;
background-color: $g5-pepper;
}
&__last-row {
border-bottom: 0;
}
&__last-column {
border-right: 0;
}
&__fixed-row,
&__fixed-column {
font-weight: 700;
color: $g16-pearl;
background-color: $g4-onyx;
}
&__fixed-row {
border-top: 0;
}
&__fixed-column {
border-left: 0;
}
&__fixed-corner {
border-top: 0;
border-left: 0;
color: $g18-cloud;
background-color: $g5-pepper;
}
&__last-row {
border-bottom: 0;
}
&__last-column {
border-right: 0;
}
&__hovered {
// TODO:add stylign here.
}
}