Merge pull request #49 from qlik-oss/DEB-183/CellSpacing

Fixed cellspacing on IE, Edge and FF
This commit is contained in:
Albert Backenhof
2019-04-15 07:01:48 +02:00
committed by GitHub

View File

@@ -1,6 +1,5 @@
/* eslint-disable */ /* eslint-disable */
.qv-object-qlik-smart-pivot { .qv-object-qlik-smart-pivot {
@TableBorder: 1px solid #d3d3d3;
@KpiTableWidth: 230px; @KpiTableWidth: 230px;
*, *,
@@ -33,18 +32,13 @@
} }
table { table {
border-collapse: collapse; border-collapse: separate;
border-spacing: 0; border-spacing: 1px;
width: auto; width: auto;
border-left: @TableBorder;
border-right: @TableBorder;
border-top: @TableBorder;
} }
td, td,
th { th {
border: 1px solid #fff;
border-collapse: collapse;
padding: 5px !important; // prevent overwriting from single object padding: 5px !important; // prevent overwriting from single object
white-space: nowrap; white-space: nowrap;
overflow: hidden; overflow: hidden;
@@ -70,7 +64,6 @@
th.main-kpi { th.main-kpi {
text-align: center; text-align: center;
vertical-align: middle; vertical-align: middle;
border-bottom: @TableBorder;
} }
.numeric { .numeric {