blob: 99220265848a1ec6fa1336cf97d2d3cd8ae38e51 [file] [log] [blame]
Matteo Scandolo8b2370c2017-02-02 17:19:07 -08001@import './../../style/vars.scss';
2@import '../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap/variables';
3
Matteo Scandolod62ea792016-12-22 14:02:28 -08004xos-table {
5 .row + .table-responsive {
6 margin-top: 10px;
7 }
8}
9
Matteo Scandolo035c5932016-12-14 09:55:15 -080010table {
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080011 border: 1px solid $background-dark-color;
Matteo Scandolo035c5932016-12-14 09:55:15 -080012
13 td, th {
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080014 position: relative;
Matteo Scandolo035c5932016-12-14 09:55:15 -080015 }
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080016
17 .xos-table-hover {
18 position: absolute;
19 top: -$padding-large-vertical;
20 left: $padding-large-horizontal;
21 opacity: 0;
22 transition: all .5s;
23 z-index: -1;
24 width: 250px;
25
26 &:hover {
27 cursor: pointer;
28 }
Matteo Scandolo035c5932016-12-14 09:55:15 -080029 }
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080030
31 td:hover .xos-table-hover {
32 opacity: 1;
33 z-index: 2;
Matteo Scandolo035c5932016-12-14 09:55:15 -080034 }
Matteo Scandolo8b2370c2017-02-02 17:19:07 -080035
Matteo Scandolo035c5932016-12-14 09:55:15 -080036}