diff options
author | Abyss777 <abyss@fox5.ru> | 2016-12-27 12:02:34 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-12-27 12:02:34 +0500 |
commit | 5c510fc91927f5a06999713ab6f70aa21f0d3524 (patch) | |
tree | 0c535fb93e1b57f6eea269d0f91bb2cb0f984bcf | |
parent | c2c497dab12cbe2c7ed4d3f922a24e6baab216c2 (diff) | |
download | trackermap-web-5c510fc91927f5a06999713ab6f70aa21f0d3524.tar.gz trackermap-web-5c510fc91927f5a06999713ab6f70aa21f0d3524.tar.bz2 trackermap-web-5c510fc91927f5a06999713ab6f70aa21f0d3524.zip |
Move grid top line to Style
-rw-r--r-- | web/app/Style.js | 1 | ||||
-rw-r--r-- | web/app/view/Report.js | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/web/app/Style.js b/web/app/Style.js index c785e1c1..9768b4b3 100644 --- a/web/app/Style.js +++ b/web/app/Style.js @@ -79,6 +79,7 @@ Ext.define('Traccar.Style', { numberPrecision: 2, reportTagfieldWidth: 375, + reportGridStyle: 'borderTop: 1px solid lightgray', chartPadding: { top: 20, diff --git a/web/app/view/Report.js b/web/app/view/Report.js index 4a4c992c..339761e9 100644 --- a/web/app/view/Report.js +++ b/web/app/view/Report.js @@ -83,7 +83,7 @@ Ext.define('Traccar.view.Report', { items: [ ] }, - style: 'borderTop: 1px solid lightgray' + style: Traccar.Style.reportGridStyle }, { xtype: 'cartesian', itemId: 'chart', |