lanes 0.1.9.5 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +1 -0
- data/Rakefile +1 -1
- data/client/lanes/Boot.cjsx +3 -3
- data/client/lanes/Config.coffee +38 -3
- data/client/lanes/access/Extension.coffee +1 -1
- data/client/lanes/access/LoginDialog.cjsx +57 -47
- data/client/lanes/access/Roles.coffee +2 -2
- data/client/lanes/access/User.coffee +4 -3
- data/client/lanes/access/screens/user-management/UserManagement.cjsx +12 -11
- data/client/lanes/components/calendar/Calendar.cjsx +16 -0
- data/client/lanes/components/calendar/index.js +3 -0
- data/client/lanes/components/calendar/styles.scss +3 -0
- data/client/lanes/components/grid/Body.cjsx +86 -0
- data/client/lanes/components/grid/CellStyles.coffee +20 -0
- data/client/lanes/components/grid/EditingMixin.cjsx +84 -24
- data/client/lanes/components/grid/Editor.cjsx +45 -0
- data/client/lanes/components/grid/Grid.cjsx +62 -104
- data/client/lanes/components/grid/Header.cjsx +35 -0
- data/client/lanes/components/grid/PopOverMixin.cjsx +19 -9
- data/client/lanes/components/grid/PopoverEditor.cjsx +7 -1
- data/client/lanes/components/grid/RowEditor.cjsx +1 -1
- data/client/lanes/components/grid/Selections.cjsx +39 -0
- data/client/lanes/components/grid/Toolbar.cjsx +24 -5
- data/client/lanes/components/grid/editors.scss +22 -50
- data/client/lanes/components/grid/index.js +0 -1
- data/client/lanes/components/grid/row-editor.scss +68 -0
- data/client/lanes/components/grid/styles.scss +79 -3
- data/client/lanes/components/modal/Modal.cjsx +64 -24
- data/client/lanes/components/modal/styles.scss +12 -0
- data/client/lanes/components/record-finder/Clause.cjsx +11 -4
- data/client/lanes/components/record-finder/Dialog.cjsx +23 -24
- data/client/lanes/components/record-finder/RecordFinder.cjsx +45 -14
- data/client/lanes/components/record-finder/styles.scss +9 -6
- data/client/lanes/components/select-field/SelectField.cjsx +108 -53
- data/client/lanes/components/select-field/styles.scss +19 -0
- data/client/lanes/components/shared/ControlLabel.cjsx +45 -0
- data/client/lanes/components/shared/DateTime.cjsx +48 -0
- data/client/lanes/components/shared/DisplayValue.cjsx +16 -0
- data/client/lanes/components/shared/FieldMixin.cjsx +54 -23
- data/client/lanes/components/shared/FieldSet.cjsx +12 -35
- data/client/lanes/components/shared/FieldWrapper.cjsx +13 -0
- data/client/lanes/components/shared/FormGroup.cjsx +37 -0
- data/client/lanes/components/shared/Icon.cjsx +20 -0
- data/client/lanes/components/shared/ImageSaver.cjsx +33 -0
- data/client/lanes/components/shared/Input.cjsx +19 -0
- data/client/lanes/components/shared/InputFieldMixin.cjsx +48 -0
- data/client/lanes/components/shared/JobProgress.cjsx +27 -0
- data/client/lanes/components/shared/NetworkActivityOverlay.cjsx +58 -0
- data/client/lanes/components/shared/NumberInput.cjsx +29 -0
- data/client/lanes/components/shared/ResizeSensor.cjsx +11 -0
- data/client/lanes/components/shared/ScreenWrapper.cjsx +13 -0
- data/client/lanes/components/shared/Throbber.cjsx +3 -0
- data/client/lanes/components/shared/ToggleField.cjsx +33 -0
- data/client/lanes/components/shared/Tooltip.cjsx +2 -2
- data/client/lanes/components/shared/fields.scss +75 -13
- data/client/lanes/components/shared/fieldset.scss +3 -5
- data/client/lanes/components/shared/image-saver.scss +38 -0
- data/client/lanes/components/shared/index.js +2 -0
- data/client/lanes/{styles/plugins → components/shared}/overlay.scss +17 -4
- data/client/lanes/components/shared/resize-sensor.scss +30 -0
- data/client/lanes/components/shared/styles.scss +13 -0
- data/client/lanes/components/shared/throbber.scss +53 -0
- data/client/lanes/components/toolbar/RemoteChangeSets.cjsx +21 -48
- data/client/lanes/components/toolbar/SaveButton.cjsx +24 -0
- data/client/lanes/components/toolbar/Toolbar.cjsx +24 -37
- data/client/lanes/components/toolbar/changes-notification.scss +10 -6
- data/client/lanes/components/toolbar/styles.scss +29 -9
- data/client/lanes/extension/Base.coffee +4 -5
- data/client/lanes/index.js +0 -1
- data/client/lanes/index.scss.erb +10 -1
- data/client/lanes/lib/HotReload.coffee +13 -15
- data/client/lanes/lib/MakeBaseClass.coffee +6 -1
- data/client/lanes/lib/development.coffee +2 -0
- data/client/lanes/lib/dom-polyfills.coffee +5 -0
- data/client/lanes/lib/dom.coffee +38 -9
- data/client/lanes/lib/format.coffee +11 -0
- data/client/lanes/lib/index.js.erb +2 -0
- data/client/lanes/lib/production.coffee +6 -0
- data/client/lanes/lib/utilFunctions.coffee +50 -15
- data/client/lanes/models/AssociationMap.coffee +122 -46
- data/client/lanes/models/AssociationProxy.coffee +147 -0
- data/client/lanes/models/Base.coffee +97 -85
- data/client/lanes/models/ChangeMonitor.coffee +7 -3
- data/client/lanes/models/ChangeSet.coffee +2 -2
- data/client/lanes/models/Collection.coffee +49 -6
- data/client/lanes/models/JobStatus.coffee +32 -0
- data/client/lanes/models/PubSub.coffee +7 -5
- data/client/lanes/models/Query.coffee +115 -34
- data/client/lanes/models/ServerCache.coffee +67 -52
- data/client/lanes/models/State.coffee +97 -0
- data/client/lanes/models/Sync.coffee +18 -13
- data/client/lanes/models/SystemSettings.coffee +0 -0
- data/client/lanes/models/index.js +1 -0
- data/client/lanes/models/mixins/FileSupport.coffee +60 -0
- data/client/lanes/models/mixins/HasCodeField.coffee +13 -6
- data/client/lanes/models/query/ArrayResult.coffee +188 -0
- data/client/lanes/models/query/CollectionResult.coffee +71 -0
- data/client/lanes/models/query/Result.coffee +9 -0
- data/client/lanes/react/Component.coffee +7 -3
- data/client/lanes/react/PubSub.coffee +7 -7
- data/client/lanes/react/Root.cjsx +1 -4
- data/client/lanes/react/Screen.coffee +1 -0
- data/client/lanes/react/TypeValidators.coffee +3 -3
- data/client/lanes/react/Viewport.coffee +41 -7
- data/client/lanes/react/index.js +0 -1
- data/client/lanes/react/mixins/Access.coffee +4 -1
- data/client/lanes/react/mixins/Data.coffee +40 -25
- data/client/lanes/react/mixins/FieldErrors.coffee +27 -0
- data/client/lanes/react/mixins/RelayEditingState.coffee +4 -0
- data/client/lanes/react/mixins/Screen.coffee +14 -0
- data/client/lanes/react/mixins/Viewport.coffee +9 -3
- data/client/lanes/screens/ChangeListener.coffee +3 -3
- data/client/lanes/screens/Commands.coffee +14 -7
- data/client/lanes/screens/CommonComponents.cjsx +20 -0
- data/client/lanes/screens/Definitions.coffee +64 -20
- data/client/lanes/screens/SystemSettings.cjsx +56 -0
- data/client/lanes/screens/UserPreferences.cjsx +38 -0
- data/client/lanes/screens/index.js +3 -0
- data/client/lanes/screens/styles.scss +2 -1
- data/client/lanes/styles/fonts.scss +1 -0
- data/client/lanes/styles/global.scss +2 -1
- data/client/lanes/styles/global/flexbox.scss +16 -0
- data/client/lanes/styles/global/styles.scss +1 -0
- data/client/lanes/styles/mixins/_dropdown.scss +21 -0
- data/client/lanes/styles/mixins/_flexbox.scss +394 -0
- data/client/lanes/styles/mixins/all.scss +2 -0
- data/client/lanes/styles/variables.scss +28 -0
- data/client/lanes/testing/BeforeEach.coffee +15 -14
- data/client/lanes/testing/Helpers.coffee +14 -5
- data/client/lanes/testing/TestObjects.coffee +10 -2
- data/client/lanes/testing/index.js +1 -0
- data/client/lanes/testing/jasmine-react.js +125 -0
- data/client/lanes/vendor/base.js +56049 -74987
- data/client/lanes/vendor/calendar.js +17301 -0
- data/client/lanes/vendor/calendar.scss +303 -0
- data/client/lanes/vendor/commons.js +14990 -15847
- data/client/lanes/vendor/development.js +4912 -1952
- data/client/lanes/vendor/grid.js +14246 -5551
- data/client/lanes/vendor/grid.scss +876 -335
- data/client/lanes/vendor/index.js +1 -0
- data/client/lanes/vendor/message-bus-ajax.js +44 -0
- data/client/lanes/vendor/message-bus.js +414 -0
- data/client/lanes/vendor/rw-widgets.eot +0 -0
- data/client/lanes/vendor/rw-widgets.svg +18 -0
- data/client/lanes/vendor/rw-widgets.ttf +0 -0
- data/client/lanes/vendor/rw-widgets.woff +0 -0
- data/client/lanes/vendor/toggle.js +345 -0
- data/client/lanes/vendor/toggle.scss +138 -0
- data/client/lanes/vendor/widgets.js +21245 -6839
- data/client/lanes/vendor/widgets.scss +83 -67
- data/client/lanes/workspace/Layout.cjsx +18 -8
- data/client/lanes/workspace/Modal.cjsx +47 -0
- data/client/lanes/workspace/Navbar.cjsx +16 -2
- data/client/lanes/workspace/ScreenView.cjsx +10 -3
- data/client/lanes/workspace/ScreensMenu.cjsx +23 -7
- data/client/lanes/workspace/Tabs.cjsx +55 -0
- data/client/lanes/workspace/UIState.coffee +7 -8
- data/client/lanes/workspace/index.js +2 -1
- data/client/lanes/workspace/mixin.coffee +11 -0
- data/client/lanes/workspace/mixins/UIState.coffee +8 -0
- data/client/lanes/workspace/mixins/index.js +3 -0
- data/client/lanes/workspace/styles.scss +2 -1
- data/client/lanes/workspace/styles/header.scss +23 -1
- data/client/lanes/workspace/styles/layout.scss +26 -24
- data/client/lanes/workspace/styles/screens.scss +0 -4
- data/client/lanes/workspace/styles/tabs.scss +3 -10
- data/config/routes.rb +10 -4
- data/config/screens.rb +25 -0
- data/db/migrate/01_create_system_settings.rb +10 -0
- data/docs/todo-example-part-1.md +18 -20
- data/lanes.gemspec +15 -6
- data/lib/lanes.rb +4 -2
- data/lib/lanes/access/config/routes.rb +5 -3
- data/lib/lanes/access/config/screens.rb +1 -0
- data/lib/lanes/access/db/migrate/20140615031600_create_lanes_users.rb +1 -1
- data/lib/lanes/access/user.rb +1 -1
- data/lib/lanes/api.rb +2 -1
- data/lib/lanes/api/controller.rb +32 -71
- data/lib/lanes/api/default_routes.rb +10 -8
- data/lib/lanes/api/formatted_reply.rb +53 -0
- data/lib/lanes/api/handlers/file.rb +26 -0
- data/lib/lanes/api/helper_methods.rb +29 -5
- data/lib/lanes/api/javascript_processor.rb +36 -17
- data/lib/lanes/api/pub_sub.rb +6 -9
- data/lib/lanes/api/request_wrapper.rb +1 -2
- data/lib/lanes/api/root.rb +11 -43
- data/lib/lanes/api/routing.rb +63 -0
- data/lib/lanes/api/sprockets_extension.rb +15 -7
- data/lib/lanes/api/updates.rb +1 -2
- data/lib/lanes/command.rb +0 -1
- data/lib/lanes/command/app.rb +6 -5
- data/lib/lanes/command/console.rb +1 -0
- data/lib/lanes/command/generate.rb +3 -0
- data/lib/lanes/command/generate_migration.rb +33 -0
- data/lib/lanes/command/generate_model.rb +4 -26
- data/lib/lanes/command/migration_support.rb +29 -0
- data/lib/lanes/command/update_model.rb +14 -5
- data/lib/lanes/concerns/all.rb +2 -0
- data/lib/lanes/concerns/api_path.rb +4 -2
- data/lib/lanes/concerns/association_extensions.rb +1 -1
- data/lib/lanes/concerns/attr_accessor_with_default.rb +3 -1
- data/lib/lanes/concerns/code_identifier.rb +1 -1
- data/lib/lanes/concerns/image_uploader.rb +42 -0
- data/lib/lanes/concerns/pub_sub.rb +0 -1
- data/lib/lanes/concerns/queries.rb +2 -2
- data/lib/lanes/concerns/set_attribute_data.rb +4 -13
- data/lib/lanes/concerns/sorting_expressions.rb +34 -0
- data/lib/lanes/configuration.rb +48 -9
- data/lib/lanes/extension.rb +16 -7
- data/lib/lanes/extension/definition.rb +8 -2
- data/lib/lanes/job.rb +78 -0
- data/lib/lanes/job/failure_logger.rb +33 -0
- data/lib/lanes/model.rb +4 -0
- data/lib/lanes/rake_tasks.rb +6 -0
- data/lib/lanes/redis.rb +13 -0
- data/lib/lanes/screen.rb +34 -18
- data/lib/lanes/system_settings.rb +66 -0
- data/lib/lanes/version.rb +1 -1
- data/lib/lanes/workspace/extension.rb +1 -1
- data/npm-build/base.js +10 -3
- data/npm-build/calendar.js +6 -0
- data/npm-build/development.js +4 -5
- data/npm-build/grid.js +3 -5
- data/npm-build/package.json +40 -29
- data/npm-build/react-toggle.js +5 -0
- data/npm-build/react-widgets.js +6 -0
- data/npm-build/update-dayz +14 -0
- data/npm-build/webpack.config.js +5 -2
- data/spec/command-reference-files/initial/Gemfile +1 -1
- data/spec/command-reference-files/initial/config/routes.rb +2 -0
- data/spec/command-reference-files/initial/lib/appy-app.rb +4 -0
- data/spec/command-reference-files/initial/lib/appy-app/extension.rb +2 -0
- data/spec/command-reference-files/initial/spec/server/{spec_helpers.rb → spec_helper.rb} +0 -0
- data/spec/command-reference-files/model/config/routes.rb +2 -0
- data/spec/command-reference-files/model/spec/server/test_test_spec.rb +1 -1
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/ReadySetGo.cjsx +6 -4
- data/spec/command-reference-files/screen/client/appy-app/screens/ready-set-go/index.scss +4 -3
- data/spec/command-reference-files/screen/config/screens.rb +4 -2
- data/spec/command-reference-files/screen/spec/appy-app/screens/ready-set-go/ReadySetGoSpec.coffee +1 -1
- data/spec/fixtures/system_settings.yml +1 -0
- data/spec/lanes/components/grid/GridSpec.coffee +56 -31
- data/spec/lanes/components/grid/RowEditorSpec.coffee +96 -0
- data/spec/lanes/components/select-field/SelectFieldSpec.coffee +99 -0
- data/spec/lanes/components/shared/NetworkActivityOverlaySpec.coffee +34 -0
- data/spec/lanes/models/AssociationMapSpec.coffee +36 -2
- data/spec/lanes/models/AssociationProxySpec.coffee +77 -0
- data/spec/lanes/models/BaseSpec.coffee +37 -4
- data/spec/lanes/models/CollectionSpec.coffee +11 -17
- data/spec/lanes/models/PubSubSpec.coffee +1 -1
- data/spec/lanes/models/ServerCacheSpec.coffee +65 -0
- data/spec/server/api/coffeescript_processor_spec.rb +1 -1
- data/spec/server/concerns/pub_sub_spec.rb +9 -10
- data/spec/server/concerns/sorting_expressions_spec.rb +34 -0
- data/spec/server/configuration_spec.rb +3 -3
- data/spec/server/job_spec.rb +54 -0
- data/spec/server/spec_helper.rb +0 -5
- data/spec/server/system_settings_spec.rb +23 -0
- data/templates/client/screens/Screen.cjsx +6 -4
- data/templates/client/screens/styles.scss +4 -3
- data/templates/config/routes.rb +2 -0
- data/templates/config/screen.rb +4 -2
- data/templates/lib/namespace.rb +4 -0
- data/templates/lib/namespace/extension.rb +2 -0
- data/templates/spec/client/Screen.coffee +1 -1
- data/templates/spec/server/model_spec.rb +1 -1
- data/templates/spec/server/{spec_helpers.rb → spec_helper.rb} +0 -0
- data/views/lanes_root_view.erb +70 -0
- data/views/specs.erb +2 -2
- metadata +207 -68
- data/client/images/lanes/dataTables/Sorting icons.psd +0 -0
- data/client/images/lanes/dataTables/back_disabled.png +0 -0
- data/client/images/lanes/dataTables/back_enabled.png +0 -0
- data/client/images/lanes/dataTables/back_enabled_hover.png +0 -0
- data/client/images/lanes/dataTables/favicon.ico +0 -0
- data/client/images/lanes/dataTables/forward_disabled.png +0 -0
- data/client/images/lanes/dataTables/forward_enabled.png +0 -0
- data/client/images/lanes/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/lanes/dataTables/loading-background.png +0 -0
- data/client/images/lanes/dataTables/sort_asc.png +0 -0
- data/client/images/lanes/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/lanes/dataTables/sort_both.png +0 -0
- data/client/images/lanes/dataTables/sort_desc.png +0 -0
- data/client/images/lanes/dataTables/sort_desc_disabled.png +0 -0
- data/client/lanes/components/shared/Resize.cjsx +0 -152
- data/client/lanes/components/shared/TextArea.cjsx +0 -19
- data/client/lanes/components/shared/TextField.cjsx +0 -25
- data/client/lanes/models/Bootstrap.coffee +0 -5
- data/client/lanes/models/QueryResults.coffee +0 -93
- data/client/lanes/react/FormBindings.coffee +0 -103
- data/client/lanes/react/Router.cjsx +0 -18
- data/client/lanes/styles/dataTables.scss +0 -4
- data/client/lanes/styles/plugins/all.scss +0 -2
- data/client/lanes/styles/plugins/resize-sensor.scss +0 -24
- data/client/lanes/vendor/jquery-2.js +0 -9190
- data/client/lanes/vendor/jquery.tap.js +0 -401
- data/client/lanes/vendor/magicsuggest.js +0 -1565
- data/client/lanes/vendor/message-bus.coffee +0 -264
- data/client/lanes/workspace/ActiveScreenSwitcher.cjsx +0 -38
- data/client/lanes/workspace/styles/toolbar.scss +0 -4
- data/lib/lanes/api/eco.js +0 -516
- data/lib/lanes/api/sprockets_compressor.rb +0 -39
- data/spec/command-reference-files/model/lib/appy-app.rb +0 -11
- data/views/index.erb +0 -19
@@ -1,387 +1,928 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
* This source code is licensed under the BSD-style license found in the
|
8
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
9
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
10
|
-
*/
|
11
|
-
|
12
|
-
/**
|
13
|
-
* Copyright (c) 2015, Facebook, Inc.
|
14
|
-
* All rights reserved.
|
15
|
-
*
|
16
|
-
* This source code is licensed under the BSD-style license found in the
|
17
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
18
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
19
|
-
*
|
20
|
-
* @providesModule Scrollbar
|
21
|
-
*/
|
22
|
-
|
23
|
-
.public_Scrollbar_main {
|
24
|
-
box-sizing: border-box;
|
25
|
-
outline: none;
|
26
|
-
overflow: hidden;
|
1
|
+
.loadmask .loader .loadbar {
|
2
|
+
border-radius: 50px;
|
3
|
+
box-shadow: 0 0 3px rgba(0,0,0,0.2);
|
4
|
+
-moz-box-shadow: 0 0 3px rgba(0,0,0,0.2);
|
5
|
+
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.2);
|
6
|
+
-ms-box-shadow: 0 0 3px rgba(0,0,0,0.2);
|
27
7
|
position: absolute;
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
8
|
+
left: 44.5%;
|
9
|
+
top: 37%;
|
10
|
+
width: 12%;
|
11
|
+
height: 26%;
|
12
|
+
background: #000;
|
13
|
+
-webkit-animation: loader-fade 1s linear infinite;
|
14
|
+
-moz-animation: loader-fade 1s linear infinite;
|
15
|
+
-ms-animation: loader-fade 1s linear infinite;
|
16
|
+
animation: loader-fade 1s linear infinite;
|
17
|
+
opacity: 0;
|
18
|
+
}
|
19
|
+
.loadmask .loader .loadbar-1 {
|
20
|
+
transform: rotate(0deg) translate(0, -142%);
|
21
|
+
-webkit-transform: rotate(0deg) translate(0, -142%);
|
22
|
+
-moz-transform: rotate(0deg) translate(0, -142%);
|
23
|
+
-ms-transform: rotate(0deg) translate(0, -142%);
|
24
|
+
-webkit-animation-delay: 0s;
|
25
|
+
-moz-animation-delay: 0s;
|
26
|
+
-ms-animation-delay: 0s;
|
27
|
+
animation-delay: 0s;
|
28
|
+
}
|
29
|
+
.loadmask .loader .loadbar-2 {
|
30
|
+
transform: rotate(30deg) translate(0, -142%);
|
31
|
+
-webkit-transform: rotate(30deg) translate(0, -142%);
|
32
|
+
-moz-transform: rotate(30deg) translate(0, -142%);
|
33
|
+
-ms-transform: rotate(30deg) translate(0, -142%);
|
34
|
+
-webkit-animation-delay: -0.9167s;
|
35
|
+
-moz-animation-delay: -0.9167s;
|
36
|
+
-ms-animation-delay: -0.9167s;
|
37
|
+
animation-delay: -0.9167s;
|
38
|
+
}
|
39
|
+
.loadmask .loader .loadbar-3 {
|
40
|
+
transform: rotate(60deg) translate(0, -142%);
|
41
|
+
-webkit-transform: rotate(60deg) translate(0, -142%);
|
42
|
+
-moz-transform: rotate(60deg) translate(0, -142%);
|
43
|
+
-ms-transform: rotate(60deg) translate(0, -142%);
|
44
|
+
-webkit-animation-delay: -1.8333s;
|
45
|
+
-moz-animation-delay: -1.8333s;
|
46
|
+
-ms-animation-delay: -1.8333s;
|
47
|
+
animation-delay: -1.8333s;
|
48
|
+
}
|
49
|
+
.loadmask .loader .loadbar-4 {
|
50
|
+
transform: rotate(90deg) translate(0, -142%);
|
51
|
+
-webkit-transform: rotate(90deg) translate(0, -142%);
|
52
|
+
-moz-transform: rotate(90deg) translate(0, -142%);
|
53
|
+
-ms-transform: rotate(90deg) translate(0, -142%);
|
54
|
+
-webkit-animation-delay: -2.75s;
|
55
|
+
-moz-animation-delay: -2.75s;
|
56
|
+
-ms-animation-delay: -2.75s;
|
57
|
+
animation-delay: -2.75s;
|
58
|
+
}
|
59
|
+
.loadmask .loader .loadbar-5 {
|
60
|
+
transform: rotate(120deg) translate(0, -142%);
|
61
|
+
-webkit-transform: rotate(120deg) translate(0, -142%);
|
62
|
+
-moz-transform: rotate(120deg) translate(0, -142%);
|
63
|
+
-ms-transform: rotate(120deg) translate(0, -142%);
|
64
|
+
-webkit-animation-delay: -3.6667s;
|
65
|
+
-moz-animation-delay: -3.6667s;
|
66
|
+
-ms-animation-delay: -3.6667s;
|
67
|
+
animation-delay: -3.6667s;
|
68
|
+
}
|
69
|
+
.loadmask .loader .loadbar-6 {
|
70
|
+
transform: rotate(150deg) translate(0, -142%);
|
71
|
+
-webkit-transform: rotate(150deg) translate(0, -142%);
|
72
|
+
-moz-transform: rotate(150deg) translate(0, -142%);
|
73
|
+
-ms-transform: rotate(150deg) translate(0, -142%);
|
74
|
+
-webkit-animation-delay: -4.5833s;
|
75
|
+
-moz-animation-delay: -4.5833s;
|
76
|
+
-ms-animation-delay: -4.5833s;
|
77
|
+
animation-delay: -4.5833s;
|
78
|
+
}
|
79
|
+
.loadmask .loader .loadbar-7 {
|
80
|
+
transform: rotate(180deg) translate(0, -142%);
|
81
|
+
-webkit-transform: rotate(180deg) translate(0, -142%);
|
82
|
+
-moz-transform: rotate(180deg) translate(0, -142%);
|
83
|
+
-ms-transform: rotate(180deg) translate(0, -142%);
|
84
|
+
-webkit-animation-delay: -5.5s;
|
85
|
+
-moz-animation-delay: -5.5s;
|
86
|
+
-ms-animation-delay: -5.5s;
|
87
|
+
animation-delay: -5.5s;
|
88
|
+
}
|
89
|
+
.loadmask .loader .loadbar-8 {
|
90
|
+
transform: rotate(210deg) translate(0, -142%);
|
91
|
+
-webkit-transform: rotate(210deg) translate(0, -142%);
|
92
|
+
-moz-transform: rotate(210deg) translate(0, -142%);
|
93
|
+
-ms-transform: rotate(210deg) translate(0, -142%);
|
94
|
+
-webkit-animation-delay: -6.4167s;
|
95
|
+
-moz-animation-delay: -6.4167s;
|
96
|
+
-ms-animation-delay: -6.4167s;
|
97
|
+
animation-delay: -6.4167s;
|
98
|
+
}
|
99
|
+
.loadmask .loader .loadbar-9 {
|
100
|
+
transform: rotate(240deg) translate(0, -142%);
|
101
|
+
-webkit-transform: rotate(240deg) translate(0, -142%);
|
102
|
+
-moz-transform: rotate(240deg) translate(0, -142%);
|
103
|
+
-ms-transform: rotate(240deg) translate(0, -142%);
|
104
|
+
-webkit-animation-delay: -7.3333s;
|
105
|
+
-moz-animation-delay: -7.3333s;
|
106
|
+
-ms-animation-delay: -7.3333s;
|
107
|
+
animation-delay: -7.3333s;
|
108
|
+
}
|
109
|
+
.loadmask .loader .loadbar-10 {
|
110
|
+
transform: rotate(270deg) translate(0, -142%);
|
111
|
+
-webkit-transform: rotate(270deg) translate(0, -142%);
|
112
|
+
-moz-transform: rotate(270deg) translate(0, -142%);
|
113
|
+
-ms-transform: rotate(270deg) translate(0, -142%);
|
114
|
+
-webkit-animation-delay: -8.25s;
|
115
|
+
-moz-animation-delay: -8.25s;
|
116
|
+
-ms-animation-delay: -8.25s;
|
117
|
+
animation-delay: -8.25s;
|
118
|
+
}
|
119
|
+
.loadmask .loader .loadbar-11 {
|
120
|
+
transform: rotate(300deg) translate(0, -142%);
|
121
|
+
-webkit-transform: rotate(300deg) translate(0, -142%);
|
122
|
+
-moz-transform: rotate(300deg) translate(0, -142%);
|
123
|
+
-ms-transform: rotate(300deg) translate(0, -142%);
|
124
|
+
-webkit-animation-delay: -9.1667s;
|
125
|
+
-moz-animation-delay: -9.1667s;
|
126
|
+
-ms-animation-delay: -9.1667s;
|
127
|
+
animation-delay: -9.1667s;
|
128
|
+
}
|
129
|
+
.loadmask .loader .loadbar-12 {
|
130
|
+
transform: rotate(330deg) translate(0, -142%);
|
131
|
+
-webkit-transform: rotate(330deg) translate(0, -142%);
|
132
|
+
-moz-transform: rotate(330deg) translate(0, -142%);
|
133
|
+
-ms-transform: rotate(330deg) translate(0, -142%);
|
134
|
+
-webkit-animation-delay: -10.0833s;
|
135
|
+
-moz-animation-delay: -10.0833s;
|
136
|
+
-ms-animation-delay: -10.0833s;
|
137
|
+
animation-delay: -10.0833s;
|
138
|
+
}
|
139
|
+
.u-flex {
|
140
|
+
display: -webkit-box;
|
141
|
+
display: -moz-box;
|
142
|
+
display: -ms-flexbox;
|
143
|
+
display: -webkit-flex;
|
144
|
+
display: flex;
|
145
|
+
}
|
146
|
+
.u-flex-flow-row,
|
147
|
+
.u-flex-row {
|
148
|
+
flex-direction: row;
|
149
|
+
-webkit-flex-flow: row;
|
150
|
+
-moz-flex-flow: row;
|
151
|
+
-ms-flex-flow: row;
|
152
|
+
-o-flex-flow: row;
|
153
|
+
flex-flow: row;
|
154
|
+
flex-flow: row;
|
155
|
+
box-orient: horizontal;
|
156
|
+
flex-direction: row;
|
157
|
+
box-orient: horizontal;
|
158
|
+
}
|
159
|
+
.u-flex-flow-column,
|
160
|
+
.u-flex-column,
|
161
|
+
.react-datagrid,
|
162
|
+
.react-datagrid.z-empty .z-table-wrapper {
|
163
|
+
flex-direction: column;
|
164
|
+
-webkit-flex-flow: column;
|
165
|
+
-moz-flex-flow: column;
|
166
|
+
-ms-flex-flow: column;
|
167
|
+
-o-flex-flow: column;
|
168
|
+
flex-flow: column;
|
169
|
+
flex-flow: column;
|
170
|
+
box-orient: vertical;
|
171
|
+
box-orient: vertical;
|
172
|
+
}
|
173
|
+
.u-flex-row {
|
174
|
+
display: -webkit-box;
|
175
|
+
display: -moz-box;
|
176
|
+
display: -ms-flexbox;
|
177
|
+
display: -webkit-flex;
|
178
|
+
display: flex;
|
179
|
+
}
|
180
|
+
.u-flex-column,
|
181
|
+
.react-datagrid,
|
182
|
+
.react-datagrid.z-empty .z-table-wrapper {
|
183
|
+
display: -webkit-box;
|
184
|
+
display: -moz-box;
|
185
|
+
display: -ms-flexbox;
|
186
|
+
display: -webkit-flex;
|
187
|
+
display: flex;
|
188
|
+
}
|
189
|
+
.u-flex-centered {
|
190
|
+
box-align: center;
|
191
|
+
box-pack: center;
|
192
|
+
align-items: center;
|
193
|
+
}
|
194
|
+
.u-inflexible,
|
195
|
+
.u-flex-0 {
|
196
|
+
-webkit-box-flex: 0;
|
197
|
+
-moz-box-flex: 0;
|
198
|
+
-ms-box-flex: 0;
|
199
|
+
-ms-flex: 0;
|
200
|
+
-webkit-flex: 0;
|
201
|
+
flex: 0;
|
202
|
+
flex-shrink: 1;
|
203
|
+
flex-basis: 1;
|
204
|
+
}
|
205
|
+
.u-flex-1 {
|
206
|
+
-webkit-box-flex: 1;
|
207
|
+
-moz-box-flex: 1;
|
208
|
+
-ms-box-flex: 1;
|
209
|
+
-ms-flex: 1;
|
210
|
+
-webkit-flex: 1;
|
211
|
+
flex: 1;
|
212
|
+
flex-shrink: 1;
|
213
|
+
flex-basis: 1;
|
214
|
+
}
|
215
|
+
.u-flex-2 {
|
216
|
+
-webkit-box-flex: 2;
|
217
|
+
-moz-box-flex: 2;
|
218
|
+
-ms-box-flex: 2;
|
219
|
+
-ms-flex: 2;
|
220
|
+
-webkit-flex: 2;
|
221
|
+
flex: 2;
|
222
|
+
flex-shrink: 1;
|
223
|
+
flex-basis: 1;
|
224
|
+
}
|
225
|
+
.u-flex-3 {
|
226
|
+
-webkit-box-flex: 3;
|
227
|
+
-moz-box-flex: 3;
|
228
|
+
-ms-box-flex: 3;
|
229
|
+
-ms-flex: 3;
|
230
|
+
-webkit-flex: 3;
|
231
|
+
flex: 3;
|
232
|
+
flex-shrink: 1;
|
233
|
+
flex-basis: 1;
|
234
|
+
}
|
235
|
+
.u-flex-4 {
|
236
|
+
-webkit-box-flex: 4;
|
237
|
+
-moz-box-flex: 4;
|
238
|
+
-ms-box-flex: 4;
|
239
|
+
-ms-flex: 4;
|
240
|
+
-webkit-flex: 4;
|
241
|
+
flex: 4;
|
242
|
+
flex-shrink: 1;
|
243
|
+
flex-basis: 1;
|
244
|
+
}
|
245
|
+
.u-flex-5 {
|
246
|
+
-webkit-box-flex: 5;
|
247
|
+
-moz-box-flex: 5;
|
248
|
+
-ms-box-flex: 5;
|
249
|
+
-ms-flex: 5;
|
250
|
+
-webkit-flex: 5;
|
251
|
+
flex: 5;
|
252
|
+
flex-shrink: 1;
|
253
|
+
flex-basis: 1;
|
254
|
+
}
|
255
|
+
.u-flex-6 {
|
256
|
+
-webkit-box-flex: 6;
|
257
|
+
-moz-box-flex: 6;
|
258
|
+
-ms-box-flex: 6;
|
259
|
+
-ms-flex: 6;
|
260
|
+
-webkit-flex: 6;
|
261
|
+
flex: 6;
|
262
|
+
flex-shrink: 1;
|
263
|
+
flex-basis: 1;
|
264
|
+
}
|
265
|
+
.u-flex-7 {
|
266
|
+
-webkit-box-flex: 7;
|
267
|
+
-moz-box-flex: 7;
|
268
|
+
-ms-box-flex: 7;
|
269
|
+
-ms-flex: 7;
|
270
|
+
-webkit-flex: 7;
|
271
|
+
flex: 7;
|
272
|
+
flex-shrink: 1;
|
273
|
+
flex-basis: 1;
|
274
|
+
}
|
275
|
+
.u-flex-8 {
|
276
|
+
-webkit-box-flex: 8;
|
277
|
+
-moz-box-flex: 8;
|
278
|
+
-ms-box-flex: 8;
|
279
|
+
-ms-flex: 8;
|
280
|
+
-webkit-flex: 8;
|
281
|
+
flex: 8;
|
282
|
+
flex-shrink: 1;
|
283
|
+
flex-basis: 1;
|
284
|
+
}
|
285
|
+
.u-flex-9 {
|
286
|
+
-webkit-box-flex: 9;
|
287
|
+
-moz-box-flex: 9;
|
288
|
+
-ms-box-flex: 9;
|
289
|
+
-ms-flex: 9;
|
290
|
+
-webkit-flex: 9;
|
291
|
+
flex: 9;
|
292
|
+
flex-shrink: 1;
|
293
|
+
flex-basis: 1;
|
294
|
+
}
|
295
|
+
.u-flex-10 {
|
296
|
+
-webkit-box-flex: 10;
|
297
|
+
-moz-box-flex: 10;
|
298
|
+
-ms-box-flex: 10;
|
299
|
+
-ms-flex: 10;
|
300
|
+
-webkit-flex: 10;
|
301
|
+
flex: 10;
|
302
|
+
flex-shrink: 1;
|
303
|
+
flex-basis: 1;
|
304
|
+
}
|
305
|
+
.u-bold {
|
306
|
+
font-weight: bold;
|
307
|
+
}
|
308
|
+
.u-nowrap {
|
309
|
+
white-space: nowrap;
|
310
|
+
}
|
311
|
+
.u-nonav,
|
312
|
+
.u-unselectable {
|
313
|
+
touch-callout: none;
|
314
|
+
}
|
315
|
+
.u-unselectable {
|
32
316
|
-webkit-user-select: none;
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
.public_Scrollbar_mainVertical {
|
39
|
-
bottom: 0;
|
40
|
-
right: 0;
|
41
|
-
top: 0;
|
42
|
-
-webkit-transition-property: background-color width;
|
43
|
-
transition-property: background-color width;
|
44
|
-
width: 15px;
|
317
|
+
-moz-user-select: none;
|
318
|
+
-ms-user-select: none;
|
319
|
+
-o-user-select: none;
|
320
|
+
user-select: none;
|
45
321
|
}
|
46
|
-
|
47
|
-
|
48
|
-
.public_Scrollbar_mainVertical.Scrollbar_mainActive,
|
49
|
-
.public_Scrollbar_mainVertical:hover {
|
50
|
-
background-color: rgba(255, 255, 255, 0.8);
|
51
|
-
width: 17px;
|
52
|
-
}
|
53
|
-
|
54
|
-
.public_Scrollbar_mainHorizontal {
|
55
|
-
bottom: 0;
|
56
|
-
height: 15px;
|
57
|
-
left: 0;
|
58
|
-
-webkit-transition-property: background-color height;
|
59
|
-
transition-property: background-color height;
|
60
|
-
}
|
61
|
-
|
62
|
-
/* Touching the scroll-track directly makes the scroll-track bolder */
|
63
|
-
.public_Scrollbar_mainHorizontal.Scrollbar_mainActive,
|
64
|
-
.public_Scrollbar_mainHorizontal:hover {
|
65
|
-
background-color: rgba(255, 255, 255, 0.8);
|
66
|
-
height: 17px;
|
67
|
-
}
|
68
|
-
|
69
|
-
.Scrollbar_mainOpaque,
|
70
|
-
.Scrollbar_mainOpaque.Scrollbar_mainActive,
|
71
|
-
.Scrollbar_mainOpaque:hover {
|
72
|
-
background-color: #fff;
|
73
|
-
}
|
74
|
-
|
75
|
-
.Scrollbar_face {
|
76
|
-
left: 0;
|
77
|
-
overflow: hidden;
|
78
|
-
position: absolute;
|
79
|
-
z-index: 1;
|
322
|
+
.u-height-auto {
|
323
|
+
height: auto;
|
80
324
|
}
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
-webkit-transition: background-color 250ms ease;
|
95
|
-
transition: background-color 250ms ease;
|
96
|
-
}
|
97
|
-
|
98
|
-
.public_Scrollbar_main:hover .Scrollbar_face:after,
|
99
|
-
.Scrollbar_mainActive .Scrollbar_face:after,
|
100
|
-
.Scrollbar_faceActive:after {
|
101
|
-
background-color: #7d7d7d;
|
102
|
-
}
|
103
|
-
|
104
|
-
.Scrollbar_faceHorizontal {
|
105
|
-
bottom: 0;
|
106
|
-
left: 0;
|
107
|
-
top: 0;
|
108
|
-
}
|
109
|
-
|
110
|
-
.Scrollbar_faceHorizontal:after {
|
111
|
-
bottom: 4px;
|
112
|
-
left: 0;
|
113
|
-
top: 4px;
|
325
|
+
.u-width-auto {
|
326
|
+
width: auto;
|
327
|
+
}
|
328
|
+
.u-height-fill,
|
329
|
+
.u-fill,
|
330
|
+
html.u-app,
|
331
|
+
html.u-app body {
|
332
|
+
height: 100%;
|
333
|
+
}
|
334
|
+
.u-width-fill,
|
335
|
+
.u-fill,
|
336
|
+
html.u-app,
|
337
|
+
html.u-app body {
|
114
338
|
width: 100%;
|
115
339
|
}
|
116
|
-
|
117
|
-
|
118
|
-
left: 0;
|
119
|
-
right: 0;
|
120
|
-
top: 0;
|
340
|
+
.u-margin-auto {
|
341
|
+
margin: auto;
|
121
342
|
}
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
right: 4px;
|
127
|
-
top: 0;
|
128
|
-
}
|
129
|
-
/**
|
130
|
-
* Copyright (c) 2015, Facebook, Inc.
|
131
|
-
* All rights reserved.
|
132
|
-
*
|
133
|
-
* This source code is licensed under the BSD-style license found in the
|
134
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
135
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
136
|
-
*
|
137
|
-
* @providesModule fixedDataTable
|
138
|
-
*/
|
139
|
-
|
140
|
-
.public_fixedDataTable_main {
|
141
|
-
border: solid 1px #d3d3d3;
|
343
|
+
.u-border-box {
|
344
|
+
box-sizing: border-box;
|
345
|
+
}
|
346
|
+
.u-border-box * {
|
142
347
|
box-sizing: border-box;
|
348
|
+
}
|
349
|
+
.u-ellipsis,
|
350
|
+
.react-datagrid .z-column-header .z-content,
|
351
|
+
.react-datagrid.z-cell-ellipsis .z-row .z-cell .z-content,
|
352
|
+
.react-datagrid .z-summary .z-cell .z-content {
|
353
|
+
text-overflow: ellipsis;
|
354
|
+
white-space: nowrap;
|
143
355
|
overflow: hidden;
|
356
|
+
}
|
357
|
+
.u-absolute {
|
358
|
+
position: absolute;
|
359
|
+
}
|
360
|
+
.u-relative {
|
144
361
|
position: relative;
|
145
362
|
}
|
146
|
-
|
147
|
-
.
|
148
|
-
|
149
|
-
|
363
|
+
html.u-app,
|
364
|
+
html.u-app body {
|
365
|
+
overflow: hidden;
|
366
|
+
box-sizing: border-box;
|
150
367
|
}
|
151
|
-
|
152
|
-
.
|
153
|
-
box-sizing:
|
368
|
+
html.u-app *,
|
369
|
+
html.u-app body * {
|
370
|
+
box-sizing: border-box;
|
154
371
|
}
|
155
|
-
|
156
|
-
|
157
|
-
|
372
|
+
.z-scroller {
|
373
|
+
overflow: auto;
|
374
|
+
position: relative;
|
375
|
+
display: -webkit-box;
|
376
|
+
display: -moz-box;
|
377
|
+
display: -ms-flexbox;
|
378
|
+
display: -webkit-flex;
|
379
|
+
display: flex;
|
380
|
+
flex-direction: column;
|
381
|
+
-webkit-flex-flow: column;
|
382
|
+
-moz-flex-flow: column;
|
383
|
+
-ms-flex-flow: column;
|
384
|
+
-o-flex-flow: column;
|
385
|
+
flex-flow: column;
|
386
|
+
flex-flow: column;
|
387
|
+
box-orient: vertical;
|
388
|
+
-webkit-box-flex: 1 1 auto;
|
389
|
+
-moz-box-flex: 1 1 auto;
|
390
|
+
-ms-box-flex: 1 1 auto;
|
391
|
+
-ms-flex: 1 1 auto;
|
392
|
+
-webkit-flex: 1 1 auto;
|
393
|
+
flex: 1 1 auto;
|
394
|
+
}
|
395
|
+
.z-scroller .z-content-wrapper {
|
396
|
+
-webkit-box-flex: 1 1 auto;
|
397
|
+
-moz-box-flex: 1 1 auto;
|
398
|
+
-ms-box-flex: 1 1 auto;
|
399
|
+
-ms-flex: 1 1 auto;
|
400
|
+
-webkit-flex: 1 1 auto;
|
401
|
+
flex: 1 1 auto;
|
402
|
+
display: -webkit-box;
|
403
|
+
display: -moz-box;
|
404
|
+
display: -ms-flexbox;
|
405
|
+
display: -webkit-flex;
|
406
|
+
display: flex;
|
407
|
+
align-items: stretch;
|
408
|
+
-webkit-align-items: stretch;
|
409
|
+
align-content: flex-start;
|
410
|
+
-webkit-align-content: flex-start;
|
411
|
+
justify-content: flex-start;
|
412
|
+
-webkit-justify-content: flex-start;
|
413
|
+
flex-pack: start;
|
414
|
+
-ms-flex-pack: start;
|
415
|
+
flex-direction: row;
|
416
|
+
-webkit-flex-flow: row;
|
417
|
+
-moz-flex-flow: row;
|
418
|
+
-ms-flex-flow: row;
|
419
|
+
-o-flex-flow: row;
|
420
|
+
flex-flow: row;
|
421
|
+
flex-flow: row;
|
422
|
+
box-orient: horizontal;
|
423
|
+
position: relative;
|
424
|
+
overflow: hidden;
|
425
|
+
z-index: 10;
|
158
426
|
}
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
.public_fixedDataTable_footer .public_fixedDataTableCell_main {
|
168
|
-
background-color: #f6f7f8;
|
169
|
-
border-top: solid 1px #d3d3d3;
|
170
|
-
}
|
171
|
-
|
172
|
-
.fixedDataTable_topShadow,
|
173
|
-
.fixedDataTable_bottomShadow {
|
174
|
-
height: 4px;
|
175
|
-
left: 0;
|
176
|
-
position: absolute;
|
177
|
-
right: 0;
|
178
|
-
z-index: 1;
|
427
|
+
.z-scroller .z-content-wrapper-fix {
|
428
|
+
z-index: -1;
|
429
|
+
-webkit-box-flex: 1;
|
430
|
+
-moz-box-flex: 1;
|
431
|
+
-ms-box-flex: 1;
|
432
|
+
-ms-flex: 1;
|
433
|
+
-webkit-flex: 1;
|
434
|
+
flex: 1;
|
179
435
|
}
|
180
|
-
|
181
|
-
|
182
|
-
|
436
|
+
.z-vertical-scroller {
|
437
|
+
overflow: hidden;
|
438
|
+
overflow-y: auto;
|
439
|
+
right: 0px;
|
440
|
+
top: 0px;
|
441
|
+
width: 1px;
|
442
|
+
-webkit-box-flex: none;
|
443
|
+
-moz-box-flex: none;
|
444
|
+
-ms-box-flex: none;
|
445
|
+
-ms-flex: none;
|
446
|
+
-webkit-flex: none;
|
447
|
+
flex: none;
|
448
|
+
visibility: hidden;
|
183
449
|
}
|
184
|
-
|
185
|
-
.
|
186
|
-
|
187
|
-
margin-top: -4px;
|
450
|
+
.z-horizontal-scroller {
|
451
|
+
height: 0.1px;
|
452
|
+
visibility: hidden;
|
188
453
|
}
|
189
|
-
|
190
|
-
.fixedDataTable_rowsContainer {
|
454
|
+
.z-vertical-scrollbar {
|
191
455
|
overflow: hidden;
|
456
|
+
position: absolute;
|
457
|
+
height: 100%;
|
458
|
+
right: 0px;
|
459
|
+
top: 0px;
|
460
|
+
}
|
461
|
+
.z-horizontal-scrollbar {
|
462
|
+
transform: translate3d(0px, 0px, 1px);
|
463
|
+
-webkit-box-flex: 0 0 auto;
|
464
|
+
-moz-box-flex: 0 0 auto;
|
465
|
+
-ms-box-flex: 0 0 auto;
|
466
|
+
-ms-flex: 0 0 auto;
|
467
|
+
-webkit-flex: 0 0 auto;
|
468
|
+
flex: 0 0 auto;
|
469
|
+
height: auto;
|
470
|
+
width: 100%;
|
192
471
|
position: relative;
|
472
|
+
left: 0px;
|
473
|
+
bottom: 0px;
|
474
|
+
overflow: auto;
|
475
|
+
z-index: 100;
|
476
|
+
}
|
477
|
+
.z-horizontal-scrollbar.mac-fix {
|
478
|
+
display: -webkit-box;
|
479
|
+
display: -moz-box;
|
480
|
+
display: -ms-flexbox;
|
481
|
+
display: -webkit-flex;
|
482
|
+
display: flex;
|
483
|
+
flex-direction: row;
|
484
|
+
-webkit-flex-flow: row;
|
485
|
+
-moz-flex-flow: row;
|
486
|
+
-ms-flex-flow: row;
|
487
|
+
-o-flex-flow: row;
|
488
|
+
flex-flow: row;
|
489
|
+
flex-flow: row;
|
490
|
+
box-orient: horizontal;
|
491
|
+
align-items: stretch;
|
492
|
+
-webkit-align-items: stretch;
|
493
|
+
align-content: flex-start;
|
494
|
+
-webkit-align-content: flex-start;
|
495
|
+
justify-content: stretch;
|
496
|
+
-webkit-justify-content: stretch;
|
497
|
+
flex-pack: justify;
|
498
|
+
-ms-flex-pack: justify;
|
499
|
+
}
|
500
|
+
.z-horizontal-scrollbar-fix {
|
501
|
+
-webkit-box-flex: 1;
|
502
|
+
-moz-box-flex: 1;
|
503
|
+
-ms-box-flex: 1;
|
504
|
+
-ms-flex: 1;
|
505
|
+
-webkit-flex: 1;
|
506
|
+
flex: 1;
|
507
|
+
overflow: auto;
|
508
|
+
}
|
509
|
+
.loadmask {
|
510
|
+
z-index: 100;
|
511
|
+
}
|
512
|
+
.z-unselectable,
|
513
|
+
.react-datagrid .z-header-menu-column .menu-row {
|
514
|
+
touch-callout: none;
|
515
|
+
-webkit-user-select: none;
|
516
|
+
-moz-user-select: none;
|
517
|
+
-ms-user-select: none;
|
518
|
+
-o-user-select: none;
|
519
|
+
user-select: none;
|
193
520
|
}
|
194
|
-
|
195
|
-
.
|
196
|
-
|
197
|
-
position: absolute;
|
521
|
+
.react-datagrid,
|
522
|
+
.react-datagrid * {
|
523
|
+
box-sizing: border-box;
|
198
524
|
}
|
199
|
-
|
200
|
-
|
201
|
-
|
525
|
+
.react-datagrid .z-resize-proxy {
|
526
|
+
position: absolute;
|
527
|
+
height: 100%;
|
528
|
+
top: 0px;
|
529
|
+
display: none;
|
530
|
+
width: 3px;
|
531
|
+
z-index: 1000;
|
532
|
+
border-left: 1px solid #868686;
|
202
533
|
}
|
203
|
-
|
204
|
-
* Copyright (c) 2015, Facebook, Inc.
|
205
|
-
* All rights reserved.
|
206
|
-
*
|
207
|
-
* This source code is licensed under the BSD-style license found in the
|
208
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
209
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
210
|
-
*
|
211
|
-
* @providesModule fixedDataTableCell
|
212
|
-
*/
|
213
|
-
|
214
|
-
.public_fixedDataTableCell_main {
|
215
|
-
background-color: #fff;
|
216
|
-
border: solid 1px #d3d3d3;
|
217
|
-
border-width: 0 1px 0 0;
|
218
|
-
box-sizing: border-box;
|
534
|
+
.react-datagrid.z-columns-resizable .z-resize-proxy {
|
219
535
|
display: block;
|
536
|
+
}
|
537
|
+
.react-datagrid {
|
538
|
+
align-items: stretch;
|
539
|
+
-webkit-align-items: stretch;
|
540
|
+
}
|
541
|
+
.react-datagrid .z-row,
|
542
|
+
.react-datagrid .react-datagrid-pagination-toolbar {
|
543
|
+
-webkit-user-select: none;
|
544
|
+
-moz-user-select: none;
|
545
|
+
-ms-user-select: none;
|
546
|
+
-o-user-select: none;
|
547
|
+
user-select: none;
|
548
|
+
}
|
549
|
+
.react-datagrid .loadmask {
|
550
|
+
z-index: 100;
|
551
|
+
}
|
552
|
+
.react-datagrid .z-header-menu-column {
|
553
|
+
z-index: 100;
|
554
|
+
}
|
555
|
+
.react-datagrid > .z-inner {
|
556
|
+
-webkit-box-flex: 1;
|
557
|
+
-moz-box-flex: 1;
|
558
|
+
-ms-box-flex: 1;
|
559
|
+
-ms-flex: 1;
|
560
|
+
-webkit-flex: 1;
|
561
|
+
flex: 1;
|
562
|
+
overflow: hidden;
|
563
|
+
position: relative;
|
564
|
+
display: -webkit-box;
|
565
|
+
display: -moz-box;
|
566
|
+
display: -ms-flexbox;
|
567
|
+
display: -webkit-flex;
|
568
|
+
display: flex;
|
569
|
+
flex-direction: column;
|
570
|
+
-webkit-flex-flow: column;
|
571
|
+
-moz-flex-flow: column;
|
572
|
+
-ms-flex-flow: column;
|
573
|
+
-o-flex-flow: column;
|
574
|
+
flex-flow: column;
|
575
|
+
flex-flow: column;
|
576
|
+
box-orient: vertical;
|
577
|
+
}
|
578
|
+
.react-datagrid > .z-inner .z-wrapper {
|
579
|
+
display: -webkit-box;
|
580
|
+
display: -moz-box;
|
581
|
+
display: -ms-flexbox;
|
582
|
+
display: -webkit-flex;
|
583
|
+
display: flex;
|
584
|
+
flex-direction: column;
|
585
|
+
-webkit-flex-flow: column;
|
586
|
+
-moz-flex-flow: column;
|
587
|
+
-ms-flex-flow: column;
|
588
|
+
-o-flex-flow: column;
|
589
|
+
flex-flow: column;
|
590
|
+
flex-flow: column;
|
591
|
+
box-orient: vertical;
|
592
|
+
-webkit-box-flex: 1 1 auto;
|
593
|
+
-moz-box-flex: 1 1 auto;
|
594
|
+
-ms-box-flex: 1 1 auto;
|
595
|
+
-ms-flex: 1 1 auto;
|
596
|
+
-webkit-flex: 1 1 auto;
|
597
|
+
flex: 1 1 auto;
|
220
598
|
overflow: hidden;
|
221
|
-
position: absolute;
|
222
|
-
white-space: normal;
|
223
599
|
}
|
224
|
-
|
225
|
-
.
|
226
|
-
|
600
|
+
.react-datagrid .z-header-wrapper,
|
601
|
+
.react-datagrid .z-footer-wrapper {
|
602
|
+
width: 100%;
|
227
603
|
}
|
228
|
-
|
229
|
-
|
230
|
-
|
604
|
+
.react-datagrid .z-table {
|
605
|
+
display: block;
|
606
|
+
-webkit-box-flex: 1;
|
607
|
+
-moz-box-flex: 1;
|
608
|
+
-ms-box-flex: 1;
|
609
|
+
-ms-flex: 1;
|
610
|
+
-webkit-flex: 1;
|
611
|
+
flex: 1;
|
612
|
+
/** 2 RULES FOR SAFARI VERTICAL SCROLLBAR */
|
613
|
+
transform: translate3d(0px, 0px, 0px);
|
614
|
+
position: relative;
|
615
|
+
z-index: 10;
|
231
616
|
}
|
232
|
-
|
233
|
-
.
|
234
|
-
|
617
|
+
.react-datagrid .z-header,
|
618
|
+
.react-datagrid .z-summary,
|
619
|
+
.react-datagrid .z-table .z-row {
|
620
|
+
display: -webkit-box;
|
621
|
+
display: -moz-box;
|
622
|
+
display: -ms-flexbox;
|
623
|
+
display: -webkit-flex;
|
624
|
+
display: flex;
|
625
|
+
flex-direction: row;
|
626
|
+
-webkit-flex-flow: row;
|
627
|
+
-moz-flex-flow: row;
|
628
|
+
-ms-flex-flow: row;
|
629
|
+
-o-flex-flow: row;
|
630
|
+
flex-flow: row;
|
631
|
+
flex-flow: row;
|
632
|
+
box-orient: horizontal;
|
633
|
+
z-index: 1;
|
235
634
|
}
|
236
|
-
|
237
|
-
|
238
|
-
|
635
|
+
.react-datagrid .z-mask-wrapper {
|
636
|
+
bottom: 0px;
|
637
|
+
width: 100%;
|
638
|
+
position: absolute;
|
639
|
+
display: none;
|
239
640
|
}
|
240
|
-
|
241
|
-
|
242
|
-
display: table;
|
641
|
+
.react-datagrid.z-loading .z-mask-wrapper {
|
642
|
+
display: block;
|
243
643
|
}
|
244
|
-
|
245
|
-
|
246
|
-
display:
|
644
|
+
.react-datagrid.z-empty .z-content-wrapper-fix {
|
645
|
+
display: -webkit-box;
|
646
|
+
display: -moz-box;
|
647
|
+
display: -ms-flexbox;
|
648
|
+
display: -webkit-flex;
|
649
|
+
display: flex;
|
650
|
+
}
|
651
|
+
.react-datagrid.z-empty .z-table-wrapper {
|
652
|
+
justify-content: center;
|
653
|
+
-webkit-justify-content: center;
|
654
|
+
flex-pack: center;
|
655
|
+
-ms-flex-pack: center;
|
656
|
+
align-items: center;
|
657
|
+
-webkit-align-items: center;
|
658
|
+
}
|
659
|
+
.react-datagrid.z-empty .z-empty-text {
|
660
|
+
width: 100%;
|
661
|
+
justify-content: center;
|
662
|
+
-webkit-justify-content: center;
|
663
|
+
flex-pack: center;
|
664
|
+
-ms-flex-pack: center;
|
665
|
+
align-items: center;
|
666
|
+
-webkit-align-items: center;
|
667
|
+
display: -webkit-box;
|
668
|
+
display: -moz-box;
|
669
|
+
display: -ms-flexbox;
|
670
|
+
display: -webkit-flex;
|
671
|
+
display: flex;
|
672
|
+
font-style: italic;
|
673
|
+
color: #808080;
|
674
|
+
}
|
675
|
+
.react-datagrid .z-header-menu-column {
|
676
|
+
background: #fff;
|
677
|
+
position: absolute;
|
678
|
+
top: 0px;
|
247
679
|
}
|
248
|
-
|
249
|
-
|
250
|
-
display: table-cell;
|
251
|
-
vertical-align: middle;
|
680
|
+
.react-datagrid .z-header-menu-column .menu-row.over {
|
681
|
+
background: #d7e7ff;
|
252
682
|
}
|
253
|
-
|
254
|
-
|
255
|
-
|
683
|
+
.react-datagrid .z-header {
|
684
|
+
align-items: stretch;
|
685
|
+
-webkit-align-items: stretch;
|
256
686
|
}
|
257
|
-
|
258
|
-
.
|
687
|
+
.react-datagrid.z-with-column-menu .z-column-header .z-show-filter,
|
688
|
+
.react-datagrid.z-with-column-menu .z-column-header .z-show-menu {
|
689
|
+
display: none;
|
259
690
|
position: absolute;
|
691
|
+
cursor: pointer;
|
260
692
|
right: 0px;
|
261
|
-
|
262
|
-
|
693
|
+
top: 0px;
|
694
|
+
width: 15px;
|
695
|
+
height: 100%;
|
696
|
+
border-left: 1px solid #a8a8a8;
|
263
697
|
}
|
264
|
-
|
265
|
-
|
266
|
-
|
698
|
+
.react-datagrid.z-with-column-menu .z-column-header .z-show-filter {
|
699
|
+
right: 15px;
|
700
|
+
background: #fff;
|
267
701
|
}
|
268
|
-
|
269
|
-
.
|
270
|
-
|
702
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-filterable .z-show-filter.z-active,
|
703
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-filterable .z-show-filter:hover,
|
704
|
+
.react-datagrid.z-with-column-menu .z-column-header .z-show-menu.z-active,
|
705
|
+
.react-datagrid.z-with-column-menu .z-column-header .z-show-menu:hover {
|
706
|
+
background: #fff;
|
271
707
|
}
|
272
|
-
|
273
|
-
.
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
}
|
280
|
-
|
281
|
-
|
282
|
-
* All rights reserved.
|
283
|
-
*
|
284
|
-
* This source code is licensed under the BSD-style license found in the
|
285
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
286
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
287
|
-
*
|
288
|
-
* @providesModule fixedDataTableCellGroup
|
289
|
-
*/
|
290
|
-
|
291
|
-
.fixedDataTableCellGroup_cellGroup {
|
292
|
-
-webkit-backface-visibility: hidden;
|
293
|
-
backface-visibility: hidden;
|
294
|
-
left: 0;
|
295
|
-
overflow: hidden;
|
296
|
-
position: absolute;
|
297
|
-
top: 0;
|
298
|
-
white-space: nowrap;
|
708
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-active .z-show-menu,
|
709
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-active.z-filterable .z-show-filter,
|
710
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-over .z-show-menu {
|
711
|
+
display: block;
|
712
|
+
}
|
713
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-over.z-filterable .z-show-filter {
|
714
|
+
display: block;
|
715
|
+
}
|
716
|
+
.react-datagrid.z-with-column-menu .z-column-header.z-filtered {
|
717
|
+
font-style: italic;
|
299
718
|
}
|
300
|
-
|
301
|
-
|
719
|
+
.react-datagrid .z-header-wrapper {
|
720
|
+
-webkit-box-flex: 0 0 auto;
|
721
|
+
-moz-box-flex: 0 0 auto;
|
722
|
+
-ms-box-flex: 0 0 auto;
|
723
|
+
-ms-flex: 0 0 auto;
|
724
|
+
-webkit-flex: 0 0 auto;
|
725
|
+
flex: 0 0 auto;
|
726
|
+
background: linear-gradient(to bottom, #f7f7f7 0%, #efefef 13%, #e6e6e6 100%);
|
727
|
+
border-bottom: 1px solid #a8a8a8;
|
728
|
+
}
|
729
|
+
.react-datagrid .z-header-wrapper.z-dragging .z-column-header:not(.z-drag) {
|
730
|
+
transition: left 0.4s;
|
731
|
+
}
|
732
|
+
.react-datagrid .z-column-header {
|
733
|
+
position: relative;
|
734
|
+
font-weight: bold;
|
735
|
+
}
|
736
|
+
.react-datagrid .z-column-header .z-inner {
|
737
|
+
display: -webkit-box;
|
738
|
+
display: -moz-box;
|
739
|
+
display: -ms-flexbox;
|
740
|
+
display: -webkit-flex;
|
741
|
+
display: flex;
|
742
|
+
align-items: center;
|
743
|
+
-webkit-align-items: center;
|
744
|
+
align-content: flex-start;
|
745
|
+
-webkit-align-content: flex-start;
|
746
|
+
flex-direction: row;
|
747
|
+
-webkit-flex-flow: row;
|
748
|
+
-moz-flex-flow: row;
|
749
|
+
-ms-flex-flow: row;
|
750
|
+
-o-flex-flow: row;
|
751
|
+
flex-flow: row;
|
752
|
+
flex-flow: row;
|
753
|
+
box-orient: horizontal;
|
754
|
+
height: 100%;
|
755
|
+
}
|
756
|
+
.react-datagrid .z-column-header .z-content {
|
757
|
+
cursor: default;
|
758
|
+
}
|
759
|
+
.react-datagrid .z-column-header.z-sortable .z-inner {
|
760
|
+
cursor: pointer;
|
761
|
+
}
|
762
|
+
.react-datagrid .z-column-header.z-over {
|
763
|
+
background: linear-gradient(to bottom, #fbfbfb 0%, #f8f8f8 13%, #f4f4f4 100%);
|
764
|
+
}
|
765
|
+
.react-datagrid .z-column-header .z-icon-sort-info {
|
302
766
|
display: inline-block;
|
303
|
-
|
304
|
-
|
767
|
+
width: 0px;
|
768
|
+
height: 0px;
|
769
|
+
margin-left: 10px;
|
770
|
+
border-left: 5px solid transparent;
|
771
|
+
border-right: 5px solid transparent;
|
305
772
|
}
|
306
|
-
|
307
|
-
|
308
|
-
position: absolute;
|
309
|
-
top: 0;
|
310
|
-
}
|
311
|
-
/**
|
312
|
-
* Copyright (c) 2015, Facebook, Inc.
|
313
|
-
* All rights reserved.
|
314
|
-
*
|
315
|
-
* This source code is licensed under the BSD-style license found in the
|
316
|
-
* LICENSE file in the root directory of this source tree. An additional grant
|
317
|
-
* of patent rights can be found in the PATENTS file in the same directory.
|
318
|
-
*
|
319
|
-
* @providesModule fixedDataTableColumnResizerLine
|
320
|
-
*/
|
321
|
-
|
322
|
-
.fixedDataTableColumnResizerLine_mouseArea {
|
323
|
-
cursor: ew-resize;
|
324
|
-
position: absolute;
|
325
|
-
right: -5px;
|
326
|
-
width: 12px;
|
773
|
+
.react-datagrid .z-column-header.z-asc .z-icon-sort-info {
|
774
|
+
border-bottom: 8px solid #6eb8f1;
|
327
775
|
}
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
776
|
+
.react-datagrid .z-column-header.z-desc .z-icon-sort-info {
|
777
|
+
border-top: 8px solid #6eb8f1;
|
778
|
+
}
|
779
|
+
.react-datagrid .z-column-header.z-drag {
|
780
|
+
z-index: 1;
|
781
|
+
background: linear-gradient(to bottom, #fbfbfb 0%, #f8f8f8 13%, #f4f4f4 100%);
|
782
|
+
border-right: 1px solid #a8a8a8;
|
783
|
+
border-left: 1px solid #a8a8a8;
|
784
|
+
}
|
785
|
+
.react-datagrid .z-column-header .z-column-resize {
|
786
|
+
display: inline-block;
|
787
|
+
height: 100%;
|
788
|
+
width: 3px;
|
789
|
+
right: 0px;
|
790
|
+
cursor: e-resize;
|
791
|
+
top: 0px;
|
332
792
|
position: absolute;
|
333
793
|
z-index: 10;
|
334
794
|
}
|
335
|
-
|
336
|
-
.fixedDataTableColumnResizerLine_hiddenElem {
|
795
|
+
.react-datagrid .z-column-header.z-last .z-inner .z-column-resize {
|
337
796
|
display: none !important;
|
338
797
|
}
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
798
|
+
.react-datagrid .z-header .z-column-header.z-cell:not(.z-first) {
|
799
|
+
border-left: 1px solid #a8a8a8;
|
800
|
+
}
|
801
|
+
.react-datagrid .z-header .z-column-header.z-cell.z-last {
|
802
|
+
border-right: 1px solid #a8a8a8;
|
803
|
+
}
|
804
|
+
.react-datagrid.z-style-alternate .z-odd.z-row {
|
805
|
+
background: #f2f7ff;
|
806
|
+
}
|
807
|
+
.react-datagrid .z-column-content {
|
808
|
+
overflow: visible;
|
809
|
+
}
|
810
|
+
.react-datagrid .z-row.z-over,
|
811
|
+
.react-datagrid .z-row.z-over.z-odd {
|
812
|
+
background: #d7e7ff;
|
813
|
+
}
|
814
|
+
.react-datagrid .z-row.z-selected,
|
815
|
+
.react-datagrid .z-row.z-selected.z-odd {
|
816
|
+
background: #c4dbfc;
|
817
|
+
}
|
818
|
+
.react-datagrid .z-row .z-cell {
|
819
|
+
display: -webkit-box;
|
820
|
+
display: -moz-box;
|
821
|
+
display: -ms-flexbox;
|
822
|
+
display: -webkit-flex;
|
823
|
+
display: flex;
|
824
|
+
align-items: center;
|
825
|
+
-webkit-align-items: center;
|
826
|
+
cursor: default;
|
827
|
+
}
|
828
|
+
.react-datagrid .z-row .z-cell .z-content {
|
829
|
+
white-space: nowrap;
|
353
830
|
overflow: hidden;
|
354
|
-
|
355
|
-
|
831
|
+
text-overflow: ellipsis;
|
832
|
+
padding: 0px 5px;
|
356
833
|
}
|
357
|
-
|
358
|
-
.
|
359
|
-
|
360
|
-
position: absolute;
|
361
|
-
top: 0;
|
362
|
-
}
|
363
|
-
|
364
|
-
.public_fixedDataTableRow_highlighted,
|
365
|
-
.public_fixedDataTableRow_highlighted .public_fixedDataTableCell_main {
|
366
|
-
background-color: #f6f7f8;
|
367
|
-
}
|
368
|
-
|
369
|
-
.fixedDataTableRow_fixedColumnsDivider {
|
370
|
-
-webkit-backface-visibility: hidden;
|
371
|
-
backface-visibility: hidden;
|
372
|
-
border-left: solid 1px #d3d3d3;
|
373
|
-
left: 0;
|
374
|
-
position: absolute;
|
375
|
-
top: 0;
|
376
|
-
width: 0;
|
834
|
+
.react-datagrid .z-group-row.z-over,
|
835
|
+
.react-datagrid .z-group-row.z-over.z-odd {
|
836
|
+
background: #cfcfcf;
|
377
837
|
}
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
838
|
+
.react-datagrid .z-group-cell {
|
839
|
+
-webkit-box-flex: 1;
|
840
|
+
-moz-box-flex: 1;
|
841
|
+
-ms-box-flex: 1;
|
842
|
+
-ms-flex: 1;
|
843
|
+
-webkit-flex: 1;
|
844
|
+
flex: 1;
|
382
845
|
}
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
846
|
+
.react-datagrid .z-group-row {
|
847
|
+
background: #e6e6e6;
|
848
|
+
}
|
849
|
+
.react-datagrid.z-cell-borders-horizontal .z-cell:not(.z-column-header) {
|
850
|
+
border-bottom: 1px dotted #a8a8a8;
|
851
|
+
}
|
852
|
+
.react-datagrid.z-cell-borders-vertical .z-group-row .z-cell:not(.z-column-header),
|
853
|
+
.react-datagrid.z-cell-borders-vertical .z-cell.z-last:not(.z-column-header) {
|
854
|
+
border-right: 1px dotted #a8a8a8;
|
855
|
+
}
|
856
|
+
.react-datagrid.z-cell-borders-vertical .z-cell:not(.z-first):not(.z-column-header) {
|
857
|
+
border-left: 1px dotted #a8a8a8;
|
858
|
+
}
|
859
|
+
.react-datagrid .z-footer-wrapper {
|
860
|
+
background: linear-gradient(to bottom, #f7f7f7 0%, #efefef 13%, #e6e6e6 100%);
|
861
|
+
}
|
862
|
+
.react-datagrid .z-summary {
|
863
|
+
border-top: 1px solid #a8a8a8;
|
864
|
+
align-items: stretch;
|
865
|
+
-webkit-align-items: stretch;
|
866
|
+
}
|
867
|
+
.react-datagrid .z-summary .z-cell {
|
868
|
+
position: relative;
|
869
|
+
border-bottom: 1px solid #a8a8a8;
|
870
|
+
}
|
871
|
+
.react-datagrid .z-summary .z-cell .z-inner {
|
872
|
+
display: -webkit-box;
|
873
|
+
display: -moz-box;
|
874
|
+
display: -ms-flexbox;
|
875
|
+
display: -webkit-flex;
|
876
|
+
display: flex;
|
877
|
+
align-items: center;
|
878
|
+
-webkit-align-items: center;
|
879
|
+
align-content: flex-start;
|
880
|
+
-webkit-align-content: flex-start;
|
881
|
+
flex-direction: row;
|
882
|
+
-webkit-flex-flow: row;
|
883
|
+
-moz-flex-flow: row;
|
884
|
+
-ms-flex-flow: row;
|
885
|
+
-o-flex-flow: row;
|
886
|
+
flex-flow: row;
|
887
|
+
flex-flow: row;
|
888
|
+
box-orient: horizontal;
|
889
|
+
height: 100%;
|
890
|
+
}
|
891
|
+
.react-datagrid .z-summary .z-cell.z-last {
|
892
|
+
border-right: 1px solid #a8a8a8;
|
893
|
+
}
|
894
|
+
.react-datagrid .z-summary .z-cell:not(.z-first) {
|
895
|
+
border-left: 1px solid #a8a8a8;
|
896
|
+
}
|
897
|
+
@-moz-keyframes loader-fade {
|
898
|
+
from {
|
899
|
+
opacity: 1;
|
900
|
+
}
|
901
|
+
to {
|
902
|
+
opacity: 0.25;
|
903
|
+
}
|
904
|
+
}
|
905
|
+
@-webkit-keyframes loader-fade {
|
906
|
+
from {
|
907
|
+
opacity: 1;
|
908
|
+
}
|
909
|
+
to {
|
910
|
+
opacity: 0.25;
|
911
|
+
}
|
912
|
+
}
|
913
|
+
@-o-keyframes loader-fade {
|
914
|
+
from {
|
915
|
+
opacity: 1;
|
916
|
+
}
|
917
|
+
to {
|
918
|
+
opacity: 0.25;
|
919
|
+
}
|
920
|
+
}
|
921
|
+
@keyframes loader-fade {
|
922
|
+
from {
|
923
|
+
opacity: 1;
|
924
|
+
}
|
925
|
+
to {
|
926
|
+
opacity: 0.25;
|
927
|
+
}
|
387
928
|
}
|