File tree 2 files changed +6
-2
lines changed
plugins/data_migration/frontend/public
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ window.DataMigrationView = countlyView.extend({
109
109
//top button, open export drawer
110
110
$ ( "#show_data_export_form" ) . on ( "click" , function ( ) {
111
111
self . reset_export_tab ( ) ;
112
+ $ ( "#import-export-button" ) . removeClass ( "active" ) ;
113
+ $ ( "#import-export-button-menu" ) . css ( 'display' , 'none' ) ;
112
114
$ ( ".cly-drawer" ) . removeClass ( "open editing" ) ;
113
115
$ ( "#export-widget-drawer" ) . addClass ( "open" ) ;
114
116
$ ( ".cly-drawer" ) . find ( ".close" ) . off ( "click" ) . on ( "click" , function ( ) {
@@ -119,6 +121,8 @@ window.DataMigrationView = countlyView.extend({
119
121
//top button, open import drawer
120
122
$ ( "#show_data_import_form" ) . on ( "click" , function ( ) {
121
123
$ ( ".cly-drawer" ) . removeClass ( "open editing" ) ;
124
+ $ ( "#import-export-button" ) . removeClass ( "active" ) ;
125
+ $ ( "#import-export-button-menu" ) . css ( 'display' , 'none' ) ;
122
126
$ ( "#import-widget-drawer" ) . addClass ( "open" ) ;
123
127
$ ( "#data-migration-import-via-file" ) . height ( $ ( window ) . height ( ) - 340 ) ;
124
128
$ ( ".cly-drawer" ) . find ( ".close" ) . off ( "click" ) . on ( "click" , function ( ) {
Original file line number Diff line number Diff line change 61
61
< div class ="settings section " id ="export-more-options ">
62
62
< table style ="width: 100%; ">
63
63
< tr class ="checkbox_row ">
64
- < td style ="width: 20px; "> < a class ="fa check-green check-header fa-square-o " id ="migration_aditional_files "> </ a > </ td >
64
+ < td style ="width: 20px; "> < a class ="fa check-green check-header fa-square-o " id ="migration_aditional_files " style =" margin-top:4px; " > </ a > </ td >
65
65
< td > < label data-localize ="data-migration.export-additional-files " class ='migration-checkbox-label '> </ label > </ td >
66
66
</ tr >
67
67
< tr class ="checkbox_row ">
68
- < td style ="width: 20px; "> < a class ="fa check-green check-header fa-square-o " id ="migration_redirect_traffic "> </ a > </ td >
68
+ < td style ="width: 20px; "> < a class ="fa check-green check-header fa-square-o " id ="migration_redirect_traffic " style =" margin-top:4px; " > </ a > </ td >
69
69
< td > < label data-localize ="data-migration.redirect-traffic " class ='migration-checkbox-label '> </ label > </ td >
70
70
</ tr >
71
71
</ table >
You can’t perform that action at this time.
0 commit comments