passenger 5.2.3 → 5.3.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG +13 -0
- data/CONTRIBUTORS +5 -1
- data/build/agent.rb +22 -2
- data/build/cxx_tests.rb +41 -5
- data/build/misc.rb +4 -1
- data/build/support/cxx_dependency_map.rb +1746 -908
- data/build/support/vendor/cxx_hinted_parser/CxxHintedParser.sublime-project +8 -0
- data/build/support/vendor/cxx_hinted_parser/Gemfile +5 -0
- data/build/support/vendor/cxx_hinted_parser/Gemfile.lock +30 -0
- data/{src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core → build/support/vendor/cxx_hinted_parser}/LICENSE.md +1 -1
- data/build/support/vendor/cxx_hinted_parser/README.md +95 -0
- data/build/support/vendor/cxx_hinted_parser/Rakefile +4 -0
- data/{src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/initialize.rb → build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser.rb} +2 -9
- data/build/support/vendor/cxx_hinted_parser/lib/cxx_hinted_parser/parser.rb +239 -0
- data/dev/ci/README.md +15 -2
- data/dev/ci/lib/set-container-envvars.sh +6 -0
- data/dev/ci/lib/setup-container.sh +4 -1
- data/dev/ci/scripts/debug-console-wrapper.sh +3 -1
- data/dev/ci/setup-host +5 -0
- data/dev/ci/tests/binaries/Jenkinsfile +105 -0
- data/dev/ci/tests/binaries/build-linux +38 -0
- data/dev/ci/tests/binaries/build-macos +40 -0
- data/dev/ci/tests/binaries/prepare-macos +38 -0
- data/dev/ci/tests/binaries/test-linux +45 -0
- data/dev/ci/tests/binaries/test-macos +38 -0
- data/dev/ci/tests/debian/Jenkinsfile +2 -2
- data/dev/ci/tests/rpm/Jenkinsfile +1 -1
- data/dev/configkit-schemas/index.json +3 -24
- data/dev/vagrant/nginx_rakefile +0 -1
- data/package.json +15 -5
- data/resources/templates/error_renderer/.editorconfig +19 -0
- data/resources/templates/error_renderer/with_details/README.md +9 -0
- data/resources/templates/error_renderer/with_details/dist/bundle.js +33 -0
- data/resources/templates/error_renderer/with_details/dist/styles.css +17 -0
- data/resources/templates/error_renderer/with_details/src/DetailsView.jsx +52 -0
- data/resources/templates/error_renderer/with_details/src/GetHelpView.jsx +61 -0
- data/resources/templates/error_renderer/with_details/src/JourneyView.css +50 -0
- data/resources/templates/error_renderer/with_details/src/JourneyView.jsx +621 -0
- data/resources/templates/error_renderer/with_details/src/PageMain.css +114 -0
- data/resources/templates/error_renderer/with_details/src/PageMain.jsx +136 -0
- data/resources/templates/error_renderer/with_details/src/ProblemDescriptionView.jsx +14 -0
- data/resources/templates/error_renderer/with_details/src/ProcessDetailsView.jsx +56 -0
- data/resources/templates/error_renderer/with_details/src/SolutionDescriptionView.css +5 -0
- data/resources/templates/error_renderer/with_details/src/SolutionDescriptionView.jsx +15 -0
- data/resources/templates/error_renderer/with_details/src/SummaryView.jsx +35 -0
- data/resources/templates/error_renderer/with_details/src/SystemComponentView.css +34 -0
- data/resources/templates/error_renderer/with_details/src/SystemComponentView.jsx +168 -0
- data/resources/templates/error_renderer/with_details/src/SystemComponentsView.css +13 -0
- data/resources/templates/error_renderer/with_details/src/SystemComponentsView.jsx +116 -0
- data/resources/templates/error_renderer/with_details/src/Tab.jsx +12 -0
- data/resources/templates/error_renderer/with_details/src/Tabs.jsx +104 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.css +3446 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/bootstrap.js +293 -0
- data/resources/templates/error_renderer/with_details/src/bootstrap/config.json +401 -0
- data/resources/templates/error_renderer/with_details/src/index.html.template +22 -0
- data/resources/templates/error_renderer/with_details/src/index.jsx +23 -0
- data/resources/templates/error_renderer/with_details/webpack.config.js +47 -0
- data/resources/templates/error_renderer/without_details/dist/bundle.js +1 -0
- data/resources/templates/error_renderer/without_details/dist/styles.css +1 -0
- data/resources/templates/{undisclosed_error.html.template → error_renderer/without_details/src/index.html.template} +7 -11
- data/resources/templates/error_renderer/without_details/src/index.js +1 -0
- data/resources/templates/{error_layout.css → error_renderer/without_details/src/main.css} +5 -2
- data/resources/templates/error_renderer/without_details/webpack.config.js +42 -0
- data/src/agent/AgentMain.cpp +3 -3
- data/src/agent/Core/ApplicationPool/BasicProcessInfo.h +13 -0
- data/src/agent/Core/ApplicationPool/Common.h +3 -4
- data/src/agent/Core/ApplicationPool/Context.h +27 -17
- data/src/agent/Core/ApplicationPool/Group.h +3 -1
- data/src/agent/Core/ApplicationPool/Group/InitializationAndShutdown.cpp +2 -12
- data/src/agent/Core/ApplicationPool/Group/InternalUtils.cpp +55 -10
- data/src/agent/Core/ApplicationPool/Group/LifetimeAndBasics.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Group/OutOfBandWork.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Group/SpawningAndRestarting.cpp +13 -6
- data/src/agent/Core/ApplicationPool/Implementation.cpp +16 -100
- data/src/agent/Core/ApplicationPool/Options.h +8 -65
- data/src/agent/Core/ApplicationPool/Pool.h +4 -21
- data/src/agent/Core/ApplicationPool/Pool/AnalyticsCollection.cpp +1 -60
- data/src/agent/Core/ApplicationPool/Pool/GeneralUtils.cpp +10 -13
- data/src/agent/Core/ApplicationPool/Pool/InitializationAndShutdown.cpp +3 -8
- data/src/agent/Core/ApplicationPool/Pool/Miscellaneous.cpp +2 -34
- data/src/agent/Core/ApplicationPool/Pool/StateInspection.cpp +1 -1
- data/src/agent/Core/ApplicationPool/Process.cpp +17 -12
- data/src/agent/Core/ApplicationPool/Process.h +146 -93
- data/src/agent/Core/ApplicationPool/Session.h +2 -2
- data/src/agent/Core/ApplicationPool/Socket.h +28 -27
- data/src/agent/Core/Config.h +1 -3
- data/src/agent/Core/ConfigChange.cpp +2 -4
- data/src/agent/Core/Controller.h +2 -8
- data/src/agent/Core/Controller/BufferBody.cpp +0 -2
- data/src/agent/Core/Controller/CheckoutSession.cpp +12 -24
- data/src/agent/Core/Controller/Config.h +1 -9
- data/src/agent/Core/Controller/ForwardResponse.cpp +0 -34
- data/src/agent/Core/Controller/Hooks.cpp +0 -7
- data/src/agent/Core/Controller/InitRequest.cpp +0 -43
- data/src/agent/Core/Controller/InitializationAndShutdown.cpp +0 -4
- data/src/agent/Core/Controller/Request.h +1 -35
- data/src/agent/Core/Controller/SendRequest.cpp +0 -32
- data/src/agent/Core/CoreMain.cpp +19 -32
- data/src/agent/Core/SpawningKit/Config.h +329 -55
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h +369 -0
- data/src/agent/Core/SpawningKit/Config/AutoGeneratedCode.h.cxxcodebuilder +307 -0
- data/src/agent/Core/SpawningKit/Context.h +211 -0
- data/src/agent/Core/SpawningKit/DirectSpawner.h +112 -122
- data/src/agent/Core/SpawningKit/DummySpawner.h +59 -20
- data/src/agent/Core/SpawningKit/ErrorRenderer.h +117 -0
- data/src/agent/Core/SpawningKit/Exceptions.h +1157 -0
- data/src/agent/Core/SpawningKit/Factory.h +24 -17
- data/src/agent/Core/SpawningKit/{BackgroundIOCapturer.h → Handshake/BackgroundIOCapturer.h} +48 -18
- data/src/agent/Core/SpawningKit/Handshake/Perform.h +1650 -0
- data/src/agent/Core/SpawningKit/Handshake/Prepare.h +582 -0
- data/src/agent/Core/SpawningKit/Handshake/Session.h +91 -0
- data/src/agent/Core/SpawningKit/Handshake/WorkDir.h +100 -0
- data/src/agent/Core/SpawningKit/Journey.h +561 -0
- data/src/agent/Core/SpawningKit/PipeWatcher.h +41 -18
- data/src/agent/Core/SpawningKit/README.md +534 -0
- data/src/agent/Core/SpawningKit/Result.h +182 -7
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h +69 -0
- data/src/agent/Core/SpawningKit/Result/AutoGeneratedCode.h.cxxcodebuilder +110 -0
- data/src/agent/Core/SpawningKit/SmartSpawner.h +1027 -562
- data/src/agent/Core/SpawningKit/Spawner.h +70 -1134
- data/src/agent/Core/SpawningKit/UserSwitchingRules.h +3 -33
- data/src/agent/README.md +2 -3
- data/src/agent/Shared/ApiServerUtils.h +2 -3
- data/src/agent/SpawnEnvSetupper/SpawnEnvSetupperMain.cpp +932 -0
- data/src/agent/Watchdog/Config.h +1 -3
- data/src/agent/Watchdog/WatchdogMain.cpp +2 -1
- data/src/apache2_module/ConfigGeneral/AutoGeneratedDefinitions.cpp +5 -0
- data/src/apache2_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.cpp +5 -0
- data/src/apache2_module/ConfigGeneral/ManifestGeneration.h +22 -13
- data/src/apache2_module/DirConfig/AutoGeneratedCreateFunction.cpp +5 -0
- data/src/apache2_module/DirConfig/AutoGeneratedHeaderSerialization.cpp +3 -0
- data/src/apache2_module/DirConfig/AutoGeneratedManifestGeneration.cpp +13 -0
- data/src/apache2_module/DirConfig/AutoGeneratedMergeFunction.cpp +7 -0
- data/src/apache2_module/DirConfig/AutoGeneratedStruct.h +13 -0
- data/src/cxx_supportlib/Constants.h +3 -1
- data/src/cxx_supportlib/Exceptions.h +0 -121
- data/src/cxx_supportlib/LoggingKit/Implementation.cpp +7 -6
- data/src/cxx_supportlib/LoggingKit/Logging.h +3 -1
- data/src/cxx_supportlib/Utils.cpp +42 -0
- data/src/cxx_supportlib/Utils.h +7 -0
- data/src/cxx_supportlib/Utils/IOUtils.cpp +58 -0
- data/src/cxx_supportlib/Utils/IOUtils.h +13 -0
- data/src/cxx_supportlib/Utils/JsonUtils.h +130 -23
- data/src/cxx_supportlib/Utils/ScopeGuard.h +9 -4
- data/src/cxx_supportlib/Utils/StrIntUtils.cpp +7 -0
- data/src/cxx_supportlib/Utils/StrIntUtils.h +1 -0
- data/src/cxx_supportlib/Utils/SystemTime.h +1 -1
- data/src/cxx_supportlib/Utils/Timer.h +1 -1
- data/src/cxx_supportlib/WebSocketCommandReverseServer.h +6 -4
- data/src/cxx_supportlib/vendor-copy/adhoc_lve.h +1 -0
- data/src/helper-scripts/node-loader.js +54 -59
- data/src/helper-scripts/rack-loader.rb +63 -60
- data/src/helper-scripts/rack-preloader.rb +125 -72
- data/src/helper-scripts/wsgi-loader.py +100 -43
- data/src/nginx_module/ConfigGeneral/AutoGeneratedDefinitions.c +120 -112
- data/src/nginx_module/ConfigGeneral/AutoGeneratedManifestDefaultsInitialization.c +15 -8
- data/src/nginx_module/ConfigGeneral/AutoGeneratedSetterFuncs.c +142 -142
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.c +26 -15
- data/src/nginx_module/ConfigGeneral/ManifestGeneration.h +3 -0
- data/src/nginx_module/LocationConfig/AutoGeneratedCreateFunction.c +76 -70
- data/src/nginx_module/LocationConfig/AutoGeneratedHeaderSerialization.c +114 -99
- data/src/nginx_module/LocationConfig/AutoGeneratedManifestGeneration.c +170 -156
- data/src/nginx_module/LocationConfig/AutoGeneratedMergeFunction.c +38 -35
- data/src/nginx_module/LocationConfig/AutoGeneratedStruct.h +5 -1
- data/src/ruby_supportlib/phusion_passenger.rb +5 -5
- data/src/ruby_supportlib/phusion_passenger/admin_tools/instance.rb +14 -1
- data/src/ruby_supportlib/phusion_passenger/apache2/config_options.rb +8 -0
- data/src/ruby_supportlib/phusion_passenger/common_library.rb +0 -3
- data/src/ruby_supportlib/phusion_passenger/config/nginx_engine_compiler.rb +0 -1
- data/src/ruby_supportlib/phusion_passenger/constants.rb +2 -0
- data/src/ruby_supportlib/phusion_passenger/loader_shared_helpers.rb +646 -238
- data/src/ruby_supportlib/phusion_passenger/nginx/config_options.rb +117 -95
- data/src/ruby_supportlib/phusion_passenger/packaging.rb +0 -1
- data/src/ruby_supportlib/phusion_passenger/platform_info/depcheck_specs/apache2.rb +5 -1
- data/src/ruby_supportlib/phusion_passenger/preloader_shared_helpers.rb +92 -69
- data/src/ruby_supportlib/phusion_passenger/public_api.rb +0 -17
- data/src/ruby_supportlib/phusion_passenger/rack/thread_handler_extension.rb +0 -3
- data/src/ruby_supportlib/phusion_passenger/request_handler.rb +4 -5
- data/src/ruby_supportlib/phusion_passenger/request_handler/thread_handler.rb +0 -22
- metadata +64 -67
- data/resources/templates/error_layout.html.template +0 -86
- data/resources/templates/general_error.html.template +0 -1
- data/resources/templates/general_error_with_html.html.template +0 -1
- data/src/agent/Core/ApplicationPool/ErrorRenderer.h +0 -131
- data/src/agent/Core/SpawningKit/Options.h +0 -41
- data/src/agent/Core/UnionStation/Connection.h +0 -173
- data/src/agent/Core/UnionStation/Context.h +0 -536
- data/src/agent/Core/UnionStation/StopwatchLog.h +0 -147
- data/src/agent/Core/UnionStation/Transaction.h +0 -249
- data/src/agent/SpawnPreparer/SpawnPreparerMain.cpp +0 -208
- data/src/cxx_supportlib/UnionStationFilterSupport.cpp +0 -67
- data/src/cxx_supportlib/UnionStationFilterSupport.h +0 -1622
- data/src/nodejs_supportlib/phusion_passenger/log_express.js +0 -106
- data/src/nodejs_supportlib/phusion_passenger/log_mongodb.js +0 -202
- data/src/nodejs_supportlib/phusion_passenger/ustreporter.js +0 -227
- data/src/nodejs_supportlib/phusion_passenger/ustrouter_connector.js +0 -448
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/CONFIG.md +0 -37
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile +0 -17
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Gemfile.lock +0 -59
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README-API.md +0 -5
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/README.md +0 -117
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/Rakefile +0 -115
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core.rb +0 -423
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/api.rb +0 -238
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/connection.rb +0 -67
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/context.rb +0 -281
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/lock.rb +0 -62
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/log.rb +0 -66
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/message_channel.rb +0 -157
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter.rb +0 -150
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/basics.rb +0 -199
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/controllers.rb +0 -187
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/misc.rb +0 -303
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/request_reporter/view_rendering.rb +0 -91
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/simple_json.rb +0 -396
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/spec_helper.rb +0 -279
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/time_point.rb +0 -39
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/transaction.rb +0 -173
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/utils.rb +0 -177
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version.rb +0 -32
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/lib/union_station_hooks_core/version_data.rb +0 -44
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.example +0 -16
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis +0 -20
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/ruby_versions.yml.travis-with-sudo +0 -18
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_core/union_station_hooks_core.gemspec +0 -23
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile +0 -14
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Gemfile.lock +0 -45
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/LICENSE.md +0 -19
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/README.md +0 -104
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/Rakefile +0 -160
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails.rb +0 -200
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_controller_extension.rb +0 -45
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/action_view_subscriber.rb +0 -55
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_record_subscriber.rb +0 -41
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_benchmarkable_extension.rb +0 -47
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/active_support_cache_subscriber.rb +0 -79
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/exception_logger.rb +0 -57
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version.rb +0 -32
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/lib/union_station_hooks_rails/version_data.rb +0 -44
- data/src/ruby_supportlib/phusion_passenger/vendor/union_station_hooks_rails/union_station_hooks_rails.gemspec +0 -34
@@ -0,0 +1,116 @@
|
|
1
|
+
/** @jsx h */
|
2
|
+
import { Component, h } from 'preact';
|
3
|
+
import SystemComponentView from './SystemComponentView.jsx';
|
4
|
+
import './SystemComponentsView.css';
|
5
|
+
|
6
|
+
class SystemComponentsView extends Component {
|
7
|
+
render() {
|
8
|
+
if (this.props.collapsed) {
|
9
|
+
return this.renderCollapsed();
|
10
|
+
} else {
|
11
|
+
return this.renderExpanded();
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
renderCollapsed() {
|
16
|
+
return (
|
17
|
+
<div className="system-components collapsed">
|
18
|
+
...
|
19
|
+
</div>
|
20
|
+
);
|
21
|
+
}
|
22
|
+
|
23
|
+
renderExpanded() {
|
24
|
+
return (
|
25
|
+
<div className="system-components row">
|
26
|
+
<div className="col-sm-3">
|
27
|
+
<SystemComponentView
|
28
|
+
type="APP_SERVER"
|
29
|
+
status="WORKING">
|
30
|
+
{this.props.spec.short_program_name}
|
31
|
+
{' '}
|
32
|
+
<br class="hidden-xs" />
|
33
|
+
application server
|
34
|
+
</SystemComponentView>
|
35
|
+
</div>
|
36
|
+
|
37
|
+
<div className="col-sm-1">
|
38
|
+
{this.buildDivider()}
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div className="col-sm-4">
|
42
|
+
<SystemComponentView
|
43
|
+
type="PREPARATION_WORK"
|
44
|
+
status={this.getPreparationWorkStatus()}>
|
45
|
+
Preparation work
|
46
|
+
{' '}
|
47
|
+
<br class="hidden-xs" />
|
48
|
+
before executing the app
|
49
|
+
</SystemComponentView>
|
50
|
+
</div>
|
51
|
+
|
52
|
+
<div className="col-sm-1">
|
53
|
+
{this.buildDivider()}
|
54
|
+
</div>
|
55
|
+
|
56
|
+
<div className="col-sm-3">
|
57
|
+
<SystemComponentView
|
58
|
+
type="APP"
|
59
|
+
status={this.getWebAppStatus()}>
|
60
|
+
Web
|
61
|
+
{' '}
|
62
|
+
<br class="hidden-xs" />
|
63
|
+
application
|
64
|
+
</SystemComponentView>
|
65
|
+
</div>
|
66
|
+
</div>
|
67
|
+
);
|
68
|
+
}
|
69
|
+
|
70
|
+
/**
|
71
|
+
* Returns the general system status. Only two results are possible:
|
72
|
+
* 'preparation-error': preparation error, app not reached
|
73
|
+
* 'app-error': preparation done, app error
|
74
|
+
*/
|
75
|
+
getGeneralSystemStatus() {
|
76
|
+
const journey = this.props.spec.journey;
|
77
|
+
if (journey.steps.SUBPROCESS_APP_LOAD_OR_EXEC
|
78
|
+
&& journey.steps.SUBPROCESS_APP_LOAD_OR_EXEC.state === 'STEP_ERRORED')
|
79
|
+
{
|
80
|
+
return 'app-error';
|
81
|
+
}
|
82
|
+
if (journey.steps.SUBPROCESS_LISTEN
|
83
|
+
&& journey.steps.SUBPROCESS_LISTEN.state === 'STEP_ERRORED')
|
84
|
+
{
|
85
|
+
return 'app-error';
|
86
|
+
}
|
87
|
+
return 'preparation-error';
|
88
|
+
}
|
89
|
+
|
90
|
+
getPreparationWorkStatus() {
|
91
|
+
if (this.getGeneralSystemStatus() === 'app-error') {
|
92
|
+
return 'DONE';
|
93
|
+
} else {
|
94
|
+
return 'ERROR';
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
getWebAppStatus() {
|
99
|
+
if (this.getGeneralSystemStatus() === 'app-error') {
|
100
|
+
return 'ERROR';
|
101
|
+
} else {
|
102
|
+
return 'NOT_REACHED';
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
buildDivider() {
|
107
|
+
return (
|
108
|
+
<div className="divider">
|
109
|
+
<span className="glyphicon glyphicon-menu-right hidden-xs" aria-hidden="true"></span>
|
110
|
+
<div className="visible-xs"></div>
|
111
|
+
</div>
|
112
|
+
)
|
113
|
+
}
|
114
|
+
}
|
115
|
+
|
116
|
+
export default SystemComponentsView;
|
@@ -0,0 +1,104 @@
|
|
1
|
+
/** @jsx h */
|
2
|
+
import { Component, h } from 'preact';
|
3
|
+
|
4
|
+
class Tabs extends Component {
|
5
|
+
constructor(props) {
|
6
|
+
super(props);
|
7
|
+
this.state = { activeKey: props.defaultActiveKey };
|
8
|
+
}
|
9
|
+
|
10
|
+
render() {
|
11
|
+
var navs = [];
|
12
|
+
var contents = [];
|
13
|
+
var i;
|
14
|
+
|
15
|
+
for (i = 0; i < this.props.children.length; i++) {
|
16
|
+
var child = this.props.children[i];
|
17
|
+
if (child !== undefined) {
|
18
|
+
navs.push(this._buildNav(child));
|
19
|
+
contents.push(this._buildContent(child));
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
return (
|
24
|
+
<div className={this.props.className}>
|
25
|
+
<ul className="nav nav-tabs" role="tablist">
|
26
|
+
{navs}
|
27
|
+
</ul>
|
28
|
+
<div className="tab-content">
|
29
|
+
{contents}
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
);
|
33
|
+
}
|
34
|
+
|
35
|
+
getActiveKey() {
|
36
|
+
return this.state.activeKey;
|
37
|
+
}
|
38
|
+
|
39
|
+
setActiveKey(eventKey) {
|
40
|
+
this.setState({ activeKey: eventKey });
|
41
|
+
}
|
42
|
+
|
43
|
+
_buildNav(tab) {
|
44
|
+
var className;
|
45
|
+
if (this.getActiveKey() === tab.attributes.eventKey) {
|
46
|
+
className = 'active';
|
47
|
+
}
|
48
|
+
|
49
|
+
var self = this;
|
50
|
+
var clickHandler = function(e) {
|
51
|
+
self._handleTabClick(e, tab);
|
52
|
+
};
|
53
|
+
|
54
|
+
return (
|
55
|
+
<li
|
56
|
+
role="presentation"
|
57
|
+
className={className}
|
58
|
+
key={tab.attributes.eventKey}>
|
59
|
+
<a
|
60
|
+
href={'#' + this._buildIdForTab(tab)}
|
61
|
+
aria-controls={this._buildIdForTab(tab)}
|
62
|
+
role="tab"
|
63
|
+
data-toggle="tab"
|
64
|
+
onClick={clickHandler}>
|
65
|
+
{tab.attributes.title}
|
66
|
+
</a>
|
67
|
+
</li>
|
68
|
+
);
|
69
|
+
}
|
70
|
+
|
71
|
+
_buildContent(tab) {
|
72
|
+
var className = 'tab-pane';
|
73
|
+
if (this.getActiveKey() === tab.attributes.eventKey) {
|
74
|
+
className += ' active';
|
75
|
+
}
|
76
|
+
|
77
|
+
return (
|
78
|
+
<div
|
79
|
+
role="tabpanel"
|
80
|
+
className={className}
|
81
|
+
id={this._buildIdForTab(tab)}
|
82
|
+
key={tab.attributes.eventKey}>
|
83
|
+
{tab}
|
84
|
+
</div>
|
85
|
+
);
|
86
|
+
}
|
87
|
+
|
88
|
+
_buildIdForTab(tab) {
|
89
|
+
if (tab.attributes.id) {
|
90
|
+
return tab.attributes.id;
|
91
|
+
} else if (this.props.id === undefined || this.props.id === '') {
|
92
|
+
return tab.attributes.eventKey;
|
93
|
+
} else {
|
94
|
+
return this.props.id + '-' + tab.attributes.eventKey;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
_handleTabClick(e, tab) {
|
99
|
+
e.preventDefault();
|
100
|
+
this.setActiveKey(tab.attributes.eventKey);
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
export default Tabs;
|
@@ -0,0 +1,3446 @@
|
|
1
|
+
/*!
|
2
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
3
|
+
* Copyright 2011-2017 Twitter, Inc.
|
4
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
5
|
+
*/
|
6
|
+
|
7
|
+
/*!
|
8
|
+
* Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=e18bae9569f7969c3d0bbc56a809d696)
|
9
|
+
* Config saved to config.json and https://gist.github.com/e18bae9569f7969c3d0bbc56a809d696
|
10
|
+
*/
|
11
|
+
/*!
|
12
|
+
* Bootstrap v3.3.7 (http://getbootstrap.com)
|
13
|
+
* Copyright 2011-2016 Twitter, Inc.
|
14
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
15
|
+
*/
|
16
|
+
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
|
17
|
+
html {
|
18
|
+
font-family: sans-serif;
|
19
|
+
-ms-text-size-adjust: 100%;
|
20
|
+
-webkit-text-size-adjust: 100%;
|
21
|
+
}
|
22
|
+
body {
|
23
|
+
margin: 0;
|
24
|
+
}
|
25
|
+
article,
|
26
|
+
aside,
|
27
|
+
details,
|
28
|
+
figcaption,
|
29
|
+
figure,
|
30
|
+
footer,
|
31
|
+
header,
|
32
|
+
hgroup,
|
33
|
+
main,
|
34
|
+
menu,
|
35
|
+
nav,
|
36
|
+
section,
|
37
|
+
summary {
|
38
|
+
display: block;
|
39
|
+
}
|
40
|
+
audio,
|
41
|
+
canvas,
|
42
|
+
progress,
|
43
|
+
video {
|
44
|
+
display: inline-block;
|
45
|
+
vertical-align: baseline;
|
46
|
+
}
|
47
|
+
audio:not([controls]) {
|
48
|
+
display: none;
|
49
|
+
height: 0;
|
50
|
+
}
|
51
|
+
[hidden],
|
52
|
+
template {
|
53
|
+
display: none;
|
54
|
+
}
|
55
|
+
a {
|
56
|
+
background-color: transparent;
|
57
|
+
}
|
58
|
+
a:active,
|
59
|
+
a:hover {
|
60
|
+
outline: 0;
|
61
|
+
}
|
62
|
+
abbr[title] {
|
63
|
+
border-bottom: 1px dotted;
|
64
|
+
}
|
65
|
+
b,
|
66
|
+
strong {
|
67
|
+
font-weight: bold;
|
68
|
+
}
|
69
|
+
dfn {
|
70
|
+
font-style: italic;
|
71
|
+
}
|
72
|
+
h1 {
|
73
|
+
font-size: 2em;
|
74
|
+
margin: 0.67em 0;
|
75
|
+
}
|
76
|
+
mark {
|
77
|
+
background: #ff0;
|
78
|
+
color: #000;
|
79
|
+
}
|
80
|
+
small {
|
81
|
+
font-size: 80%;
|
82
|
+
}
|
83
|
+
sub,
|
84
|
+
sup {
|
85
|
+
font-size: 75%;
|
86
|
+
line-height: 0;
|
87
|
+
position: relative;
|
88
|
+
vertical-align: baseline;
|
89
|
+
}
|
90
|
+
sup {
|
91
|
+
top: -0.5em;
|
92
|
+
}
|
93
|
+
sub {
|
94
|
+
bottom: -0.25em;
|
95
|
+
}
|
96
|
+
img {
|
97
|
+
border: 0;
|
98
|
+
}
|
99
|
+
svg:not(:root) {
|
100
|
+
overflow: hidden;
|
101
|
+
}
|
102
|
+
figure {
|
103
|
+
margin: 1em 40px;
|
104
|
+
}
|
105
|
+
hr {
|
106
|
+
-webkit-box-sizing: content-box;
|
107
|
+
-moz-box-sizing: content-box;
|
108
|
+
box-sizing: content-box;
|
109
|
+
height: 0;
|
110
|
+
}
|
111
|
+
pre {
|
112
|
+
overflow: auto;
|
113
|
+
}
|
114
|
+
code,
|
115
|
+
kbd,
|
116
|
+
pre,
|
117
|
+
samp {
|
118
|
+
font-family: monospace, monospace;
|
119
|
+
font-size: 1em;
|
120
|
+
}
|
121
|
+
button,
|
122
|
+
input,
|
123
|
+
optgroup,
|
124
|
+
select,
|
125
|
+
textarea {
|
126
|
+
color: inherit;
|
127
|
+
font: inherit;
|
128
|
+
margin: 0;
|
129
|
+
}
|
130
|
+
button {
|
131
|
+
overflow: visible;
|
132
|
+
}
|
133
|
+
button,
|
134
|
+
select {
|
135
|
+
text-transform: none;
|
136
|
+
}
|
137
|
+
button,
|
138
|
+
html input[type="button"],
|
139
|
+
input[type="reset"],
|
140
|
+
input[type="submit"] {
|
141
|
+
-webkit-appearance: button;
|
142
|
+
cursor: pointer;
|
143
|
+
}
|
144
|
+
button[disabled],
|
145
|
+
html input[disabled] {
|
146
|
+
cursor: default;
|
147
|
+
}
|
148
|
+
button::-moz-focus-inner,
|
149
|
+
input::-moz-focus-inner {
|
150
|
+
border: 0;
|
151
|
+
padding: 0;
|
152
|
+
}
|
153
|
+
input {
|
154
|
+
line-height: normal;
|
155
|
+
}
|
156
|
+
input[type="checkbox"],
|
157
|
+
input[type="radio"] {
|
158
|
+
-webkit-box-sizing: border-box;
|
159
|
+
-moz-box-sizing: border-box;
|
160
|
+
box-sizing: border-box;
|
161
|
+
padding: 0;
|
162
|
+
}
|
163
|
+
input[type="number"]::-webkit-inner-spin-button,
|
164
|
+
input[type="number"]::-webkit-outer-spin-button {
|
165
|
+
height: auto;
|
166
|
+
}
|
167
|
+
input[type="search"] {
|
168
|
+
-webkit-appearance: textfield;
|
169
|
+
-webkit-box-sizing: content-box;
|
170
|
+
-moz-box-sizing: content-box;
|
171
|
+
box-sizing: content-box;
|
172
|
+
}
|
173
|
+
input[type="search"]::-webkit-search-cancel-button,
|
174
|
+
input[type="search"]::-webkit-search-decoration {
|
175
|
+
-webkit-appearance: none;
|
176
|
+
}
|
177
|
+
fieldset {
|
178
|
+
border: 1px solid #c0c0c0;
|
179
|
+
margin: 0 2px;
|
180
|
+
padding: 0.35em 0.625em 0.75em;
|
181
|
+
}
|
182
|
+
legend {
|
183
|
+
border: 0;
|
184
|
+
padding: 0;
|
185
|
+
}
|
186
|
+
textarea {
|
187
|
+
overflow: auto;
|
188
|
+
}
|
189
|
+
optgroup {
|
190
|
+
font-weight: bold;
|
191
|
+
}
|
192
|
+
table {
|
193
|
+
border-collapse: collapse;
|
194
|
+
border-spacing: 0;
|
195
|
+
}
|
196
|
+
td,
|
197
|
+
th {
|
198
|
+
padding: 0;
|
199
|
+
}
|
200
|
+
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
|
201
|
+
@media print {
|
202
|
+
*,
|
203
|
+
*:before,
|
204
|
+
*:after {
|
205
|
+
background: transparent !important;
|
206
|
+
color: #000 !important;
|
207
|
+
-webkit-box-shadow: none !important;
|
208
|
+
box-shadow: none !important;
|
209
|
+
text-shadow: none !important;
|
210
|
+
}
|
211
|
+
a,
|
212
|
+
a:visited {
|
213
|
+
text-decoration: underline;
|
214
|
+
}
|
215
|
+
a[href]:after {
|
216
|
+
content: " (" attr(href) ")";
|
217
|
+
}
|
218
|
+
abbr[title]:after {
|
219
|
+
content: " (" attr(title) ")";
|
220
|
+
}
|
221
|
+
a[href^="#"]:after,
|
222
|
+
a[href^="javascript:"]:after {
|
223
|
+
content: "";
|
224
|
+
}
|
225
|
+
pre,
|
226
|
+
blockquote {
|
227
|
+
border: 1px solid #999;
|
228
|
+
page-break-inside: avoid;
|
229
|
+
}
|
230
|
+
thead {
|
231
|
+
display: table-header-group;
|
232
|
+
}
|
233
|
+
tr,
|
234
|
+
img {
|
235
|
+
page-break-inside: avoid;
|
236
|
+
}
|
237
|
+
img {
|
238
|
+
max-width: 100% !important;
|
239
|
+
}
|
240
|
+
p,
|
241
|
+
h2,
|
242
|
+
h3 {
|
243
|
+
orphans: 3;
|
244
|
+
widows: 3;
|
245
|
+
}
|
246
|
+
h2,
|
247
|
+
h3 {
|
248
|
+
page-break-after: avoid;
|
249
|
+
}
|
250
|
+
.navbar {
|
251
|
+
display: none;
|
252
|
+
}
|
253
|
+
.btn > .caret,
|
254
|
+
.dropup > .btn > .caret {
|
255
|
+
border-top-color: #000 !important;
|
256
|
+
}
|
257
|
+
.label {
|
258
|
+
border: 1px solid #000;
|
259
|
+
}
|
260
|
+
.table {
|
261
|
+
border-collapse: collapse !important;
|
262
|
+
}
|
263
|
+
.table td,
|
264
|
+
.table th {
|
265
|
+
background-color: #fff !important;
|
266
|
+
}
|
267
|
+
.table-bordered th,
|
268
|
+
.table-bordered td {
|
269
|
+
border: 1px solid #ddd !important;
|
270
|
+
}
|
271
|
+
}
|
272
|
+
@font-face {
|
273
|
+
font-family: 'Glyphicons Halflings';
|
274
|
+
src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot');
|
275
|
+
src: url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.woff') format('woff'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
|
276
|
+
}
|
277
|
+
.glyphicon {
|
278
|
+
position: relative;
|
279
|
+
top: 1px;
|
280
|
+
display: inline-block;
|
281
|
+
font-family: 'Glyphicons Halflings';
|
282
|
+
font-style: normal;
|
283
|
+
font-weight: normal;
|
284
|
+
line-height: 1;
|
285
|
+
-webkit-font-smoothing: antialiased;
|
286
|
+
-moz-osx-font-smoothing: grayscale;
|
287
|
+
}
|
288
|
+
.glyphicon-asterisk:before {
|
289
|
+
content: "\002a";
|
290
|
+
}
|
291
|
+
.glyphicon-plus:before {
|
292
|
+
content: "\002b";
|
293
|
+
}
|
294
|
+
.glyphicon-euro:before,
|
295
|
+
.glyphicon-eur:before {
|
296
|
+
content: "\20ac";
|
297
|
+
}
|
298
|
+
.glyphicon-minus:before {
|
299
|
+
content: "\2212";
|
300
|
+
}
|
301
|
+
.glyphicon-cloud:before {
|
302
|
+
content: "\2601";
|
303
|
+
}
|
304
|
+
.glyphicon-envelope:before {
|
305
|
+
content: "\2709";
|
306
|
+
}
|
307
|
+
.glyphicon-pencil:before {
|
308
|
+
content: "\270f";
|
309
|
+
}
|
310
|
+
.glyphicon-glass:before {
|
311
|
+
content: "\e001";
|
312
|
+
}
|
313
|
+
.glyphicon-music:before {
|
314
|
+
content: "\e002";
|
315
|
+
}
|
316
|
+
.glyphicon-search:before {
|
317
|
+
content: "\e003";
|
318
|
+
}
|
319
|
+
.glyphicon-heart:before {
|
320
|
+
content: "\e005";
|
321
|
+
}
|
322
|
+
.glyphicon-star:before {
|
323
|
+
content: "\e006";
|
324
|
+
}
|
325
|
+
.glyphicon-star-empty:before {
|
326
|
+
content: "\e007";
|
327
|
+
}
|
328
|
+
.glyphicon-user:before {
|
329
|
+
content: "\e008";
|
330
|
+
}
|
331
|
+
.glyphicon-film:before {
|
332
|
+
content: "\e009";
|
333
|
+
}
|
334
|
+
.glyphicon-th-large:before {
|
335
|
+
content: "\e010";
|
336
|
+
}
|
337
|
+
.glyphicon-th:before {
|
338
|
+
content: "\e011";
|
339
|
+
}
|
340
|
+
.glyphicon-th-list:before {
|
341
|
+
content: "\e012";
|
342
|
+
}
|
343
|
+
.glyphicon-ok:before {
|
344
|
+
content: "\e013";
|
345
|
+
}
|
346
|
+
.glyphicon-remove:before {
|
347
|
+
content: "\e014";
|
348
|
+
}
|
349
|
+
.glyphicon-zoom-in:before {
|
350
|
+
content: "\e015";
|
351
|
+
}
|
352
|
+
.glyphicon-zoom-out:before {
|
353
|
+
content: "\e016";
|
354
|
+
}
|
355
|
+
.glyphicon-off:before {
|
356
|
+
content: "\e017";
|
357
|
+
}
|
358
|
+
.glyphicon-signal:before {
|
359
|
+
content: "\e018";
|
360
|
+
}
|
361
|
+
.glyphicon-cog:before {
|
362
|
+
content: "\e019";
|
363
|
+
}
|
364
|
+
.glyphicon-trash:before {
|
365
|
+
content: "\e020";
|
366
|
+
}
|
367
|
+
.glyphicon-home:before {
|
368
|
+
content: "\e021";
|
369
|
+
}
|
370
|
+
.glyphicon-file:before {
|
371
|
+
content: "\e022";
|
372
|
+
}
|
373
|
+
.glyphicon-time:before {
|
374
|
+
content: "\e023";
|
375
|
+
}
|
376
|
+
.glyphicon-road:before {
|
377
|
+
content: "\e024";
|
378
|
+
}
|
379
|
+
.glyphicon-download-alt:before {
|
380
|
+
content: "\e025";
|
381
|
+
}
|
382
|
+
.glyphicon-download:before {
|
383
|
+
content: "\e026";
|
384
|
+
}
|
385
|
+
.glyphicon-upload:before {
|
386
|
+
content: "\e027";
|
387
|
+
}
|
388
|
+
.glyphicon-inbox:before {
|
389
|
+
content: "\e028";
|
390
|
+
}
|
391
|
+
.glyphicon-play-circle:before {
|
392
|
+
content: "\e029";
|
393
|
+
}
|
394
|
+
.glyphicon-repeat:before {
|
395
|
+
content: "\e030";
|
396
|
+
}
|
397
|
+
.glyphicon-refresh:before {
|
398
|
+
content: "\e031";
|
399
|
+
}
|
400
|
+
.glyphicon-list-alt:before {
|
401
|
+
content: "\e032";
|
402
|
+
}
|
403
|
+
.glyphicon-lock:before {
|
404
|
+
content: "\e033";
|
405
|
+
}
|
406
|
+
.glyphicon-flag:before {
|
407
|
+
content: "\e034";
|
408
|
+
}
|
409
|
+
.glyphicon-headphones:before {
|
410
|
+
content: "\e035";
|
411
|
+
}
|
412
|
+
.glyphicon-volume-off:before {
|
413
|
+
content: "\e036";
|
414
|
+
}
|
415
|
+
.glyphicon-volume-down:before {
|
416
|
+
content: "\e037";
|
417
|
+
}
|
418
|
+
.glyphicon-volume-up:before {
|
419
|
+
content: "\e038";
|
420
|
+
}
|
421
|
+
.glyphicon-qrcode:before {
|
422
|
+
content: "\e039";
|
423
|
+
}
|
424
|
+
.glyphicon-barcode:before {
|
425
|
+
content: "\e040";
|
426
|
+
}
|
427
|
+
.glyphicon-tag:before {
|
428
|
+
content: "\e041";
|
429
|
+
}
|
430
|
+
.glyphicon-tags:before {
|
431
|
+
content: "\e042";
|
432
|
+
}
|
433
|
+
.glyphicon-book:before {
|
434
|
+
content: "\e043";
|
435
|
+
}
|
436
|
+
.glyphicon-bookmark:before {
|
437
|
+
content: "\e044";
|
438
|
+
}
|
439
|
+
.glyphicon-print:before {
|
440
|
+
content: "\e045";
|
441
|
+
}
|
442
|
+
.glyphicon-camera:before {
|
443
|
+
content: "\e046";
|
444
|
+
}
|
445
|
+
.glyphicon-font:before {
|
446
|
+
content: "\e047";
|
447
|
+
}
|
448
|
+
.glyphicon-bold:before {
|
449
|
+
content: "\e048";
|
450
|
+
}
|
451
|
+
.glyphicon-italic:before {
|
452
|
+
content: "\e049";
|
453
|
+
}
|
454
|
+
.glyphicon-text-height:before {
|
455
|
+
content: "\e050";
|
456
|
+
}
|
457
|
+
.glyphicon-text-width:before {
|
458
|
+
content: "\e051";
|
459
|
+
}
|
460
|
+
.glyphicon-align-left:before {
|
461
|
+
content: "\e052";
|
462
|
+
}
|
463
|
+
.glyphicon-align-center:before {
|
464
|
+
content: "\e053";
|
465
|
+
}
|
466
|
+
.glyphicon-align-right:before {
|
467
|
+
content: "\e054";
|
468
|
+
}
|
469
|
+
.glyphicon-align-justify:before {
|
470
|
+
content: "\e055";
|
471
|
+
}
|
472
|
+
.glyphicon-list:before {
|
473
|
+
content: "\e056";
|
474
|
+
}
|
475
|
+
.glyphicon-indent-left:before {
|
476
|
+
content: "\e057";
|
477
|
+
}
|
478
|
+
.glyphicon-indent-right:before {
|
479
|
+
content: "\e058";
|
480
|
+
}
|
481
|
+
.glyphicon-facetime-video:before {
|
482
|
+
content: "\e059";
|
483
|
+
}
|
484
|
+
.glyphicon-picture:before {
|
485
|
+
content: "\e060";
|
486
|
+
}
|
487
|
+
.glyphicon-map-marker:before {
|
488
|
+
content: "\e062";
|
489
|
+
}
|
490
|
+
.glyphicon-adjust:before {
|
491
|
+
content: "\e063";
|
492
|
+
}
|
493
|
+
.glyphicon-tint:before {
|
494
|
+
content: "\e064";
|
495
|
+
}
|
496
|
+
.glyphicon-edit:before {
|
497
|
+
content: "\e065";
|
498
|
+
}
|
499
|
+
.glyphicon-share:before {
|
500
|
+
content: "\e066";
|
501
|
+
}
|
502
|
+
.glyphicon-check:before {
|
503
|
+
content: "\e067";
|
504
|
+
}
|
505
|
+
.glyphicon-move:before {
|
506
|
+
content: "\e068";
|
507
|
+
}
|
508
|
+
.glyphicon-step-backward:before {
|
509
|
+
content: "\e069";
|
510
|
+
}
|
511
|
+
.glyphicon-fast-backward:before {
|
512
|
+
content: "\e070";
|
513
|
+
}
|
514
|
+
.glyphicon-backward:before {
|
515
|
+
content: "\e071";
|
516
|
+
}
|
517
|
+
.glyphicon-play:before {
|
518
|
+
content: "\e072";
|
519
|
+
}
|
520
|
+
.glyphicon-pause:before {
|
521
|
+
content: "\e073";
|
522
|
+
}
|
523
|
+
.glyphicon-stop:before {
|
524
|
+
content: "\e074";
|
525
|
+
}
|
526
|
+
.glyphicon-forward:before {
|
527
|
+
content: "\e075";
|
528
|
+
}
|
529
|
+
.glyphicon-fast-forward:before {
|
530
|
+
content: "\e076";
|
531
|
+
}
|
532
|
+
.glyphicon-step-forward:before {
|
533
|
+
content: "\e077";
|
534
|
+
}
|
535
|
+
.glyphicon-eject:before {
|
536
|
+
content: "\e078";
|
537
|
+
}
|
538
|
+
.glyphicon-chevron-left:before {
|
539
|
+
content: "\e079";
|
540
|
+
}
|
541
|
+
.glyphicon-chevron-right:before {
|
542
|
+
content: "\e080";
|
543
|
+
}
|
544
|
+
.glyphicon-plus-sign:before {
|
545
|
+
content: "\e081";
|
546
|
+
}
|
547
|
+
.glyphicon-minus-sign:before {
|
548
|
+
content: "\e082";
|
549
|
+
}
|
550
|
+
.glyphicon-remove-sign:before {
|
551
|
+
content: "\e083";
|
552
|
+
}
|
553
|
+
.glyphicon-ok-sign:before {
|
554
|
+
content: "\e084";
|
555
|
+
}
|
556
|
+
.glyphicon-question-sign:before {
|
557
|
+
content: "\e085";
|
558
|
+
}
|
559
|
+
.glyphicon-info-sign:before {
|
560
|
+
content: "\e086";
|
561
|
+
}
|
562
|
+
.glyphicon-screenshot:before {
|
563
|
+
content: "\e087";
|
564
|
+
}
|
565
|
+
.glyphicon-remove-circle:before {
|
566
|
+
content: "\e088";
|
567
|
+
}
|
568
|
+
.glyphicon-ok-circle:before {
|
569
|
+
content: "\e089";
|
570
|
+
}
|
571
|
+
.glyphicon-ban-circle:before {
|
572
|
+
content: "\e090";
|
573
|
+
}
|
574
|
+
.glyphicon-arrow-left:before {
|
575
|
+
content: "\e091";
|
576
|
+
}
|
577
|
+
.glyphicon-arrow-right:before {
|
578
|
+
content: "\e092";
|
579
|
+
}
|
580
|
+
.glyphicon-arrow-up:before {
|
581
|
+
content: "\e093";
|
582
|
+
}
|
583
|
+
.glyphicon-arrow-down:before {
|
584
|
+
content: "\e094";
|
585
|
+
}
|
586
|
+
.glyphicon-share-alt:before {
|
587
|
+
content: "\e095";
|
588
|
+
}
|
589
|
+
.glyphicon-resize-full:before {
|
590
|
+
content: "\e096";
|
591
|
+
}
|
592
|
+
.glyphicon-resize-small:before {
|
593
|
+
content: "\e097";
|
594
|
+
}
|
595
|
+
.glyphicon-exclamation-sign:before {
|
596
|
+
content: "\e101";
|
597
|
+
}
|
598
|
+
.glyphicon-gift:before {
|
599
|
+
content: "\e102";
|
600
|
+
}
|
601
|
+
.glyphicon-leaf:before {
|
602
|
+
content: "\e103";
|
603
|
+
}
|
604
|
+
.glyphicon-fire:before {
|
605
|
+
content: "\e104";
|
606
|
+
}
|
607
|
+
.glyphicon-eye-open:before {
|
608
|
+
content: "\e105";
|
609
|
+
}
|
610
|
+
.glyphicon-eye-close:before {
|
611
|
+
content: "\e106";
|
612
|
+
}
|
613
|
+
.glyphicon-warning-sign:before {
|
614
|
+
content: "\e107";
|
615
|
+
}
|
616
|
+
.glyphicon-plane:before {
|
617
|
+
content: "\e108";
|
618
|
+
}
|
619
|
+
.glyphicon-calendar:before {
|
620
|
+
content: "\e109";
|
621
|
+
}
|
622
|
+
.glyphicon-random:before {
|
623
|
+
content: "\e110";
|
624
|
+
}
|
625
|
+
.glyphicon-comment:before {
|
626
|
+
content: "\e111";
|
627
|
+
}
|
628
|
+
.glyphicon-magnet:before {
|
629
|
+
content: "\e112";
|
630
|
+
}
|
631
|
+
.glyphicon-chevron-up:before {
|
632
|
+
content: "\e113";
|
633
|
+
}
|
634
|
+
.glyphicon-chevron-down:before {
|
635
|
+
content: "\e114";
|
636
|
+
}
|
637
|
+
.glyphicon-retweet:before {
|
638
|
+
content: "\e115";
|
639
|
+
}
|
640
|
+
.glyphicon-shopping-cart:before {
|
641
|
+
content: "\e116";
|
642
|
+
}
|
643
|
+
.glyphicon-folder-close:before {
|
644
|
+
content: "\e117";
|
645
|
+
}
|
646
|
+
.glyphicon-folder-open:before {
|
647
|
+
content: "\e118";
|
648
|
+
}
|
649
|
+
.glyphicon-resize-vertical:before {
|
650
|
+
content: "\e119";
|
651
|
+
}
|
652
|
+
.glyphicon-resize-horizontal:before {
|
653
|
+
content: "\e120";
|
654
|
+
}
|
655
|
+
.glyphicon-hdd:before {
|
656
|
+
content: "\e121";
|
657
|
+
}
|
658
|
+
.glyphicon-bullhorn:before {
|
659
|
+
content: "\e122";
|
660
|
+
}
|
661
|
+
.glyphicon-bell:before {
|
662
|
+
content: "\e123";
|
663
|
+
}
|
664
|
+
.glyphicon-certificate:before {
|
665
|
+
content: "\e124";
|
666
|
+
}
|
667
|
+
.glyphicon-thumbs-up:before {
|
668
|
+
content: "\e125";
|
669
|
+
}
|
670
|
+
.glyphicon-thumbs-down:before {
|
671
|
+
content: "\e126";
|
672
|
+
}
|
673
|
+
.glyphicon-hand-right:before {
|
674
|
+
content: "\e127";
|
675
|
+
}
|
676
|
+
.glyphicon-hand-left:before {
|
677
|
+
content: "\e128";
|
678
|
+
}
|
679
|
+
.glyphicon-hand-up:before {
|
680
|
+
content: "\e129";
|
681
|
+
}
|
682
|
+
.glyphicon-hand-down:before {
|
683
|
+
content: "\e130";
|
684
|
+
}
|
685
|
+
.glyphicon-circle-arrow-right:before {
|
686
|
+
content: "\e131";
|
687
|
+
}
|
688
|
+
.glyphicon-circle-arrow-left:before {
|
689
|
+
content: "\e132";
|
690
|
+
}
|
691
|
+
.glyphicon-circle-arrow-up:before {
|
692
|
+
content: "\e133";
|
693
|
+
}
|
694
|
+
.glyphicon-circle-arrow-down:before {
|
695
|
+
content: "\e134";
|
696
|
+
}
|
697
|
+
.glyphicon-globe:before {
|
698
|
+
content: "\e135";
|
699
|
+
}
|
700
|
+
.glyphicon-wrench:before {
|
701
|
+
content: "\e136";
|
702
|
+
}
|
703
|
+
.glyphicon-tasks:before {
|
704
|
+
content: "\e137";
|
705
|
+
}
|
706
|
+
.glyphicon-filter:before {
|
707
|
+
content: "\e138";
|
708
|
+
}
|
709
|
+
.glyphicon-briefcase:before {
|
710
|
+
content: "\e139";
|
711
|
+
}
|
712
|
+
.glyphicon-fullscreen:before {
|
713
|
+
content: "\e140";
|
714
|
+
}
|
715
|
+
.glyphicon-dashboard:before {
|
716
|
+
content: "\e141";
|
717
|
+
}
|
718
|
+
.glyphicon-paperclip:before {
|
719
|
+
content: "\e142";
|
720
|
+
}
|
721
|
+
.glyphicon-heart-empty:before {
|
722
|
+
content: "\e143";
|
723
|
+
}
|
724
|
+
.glyphicon-link:before {
|
725
|
+
content: "\e144";
|
726
|
+
}
|
727
|
+
.glyphicon-phone:before {
|
728
|
+
content: "\e145";
|
729
|
+
}
|
730
|
+
.glyphicon-pushpin:before {
|
731
|
+
content: "\e146";
|
732
|
+
}
|
733
|
+
.glyphicon-usd:before {
|
734
|
+
content: "\e148";
|
735
|
+
}
|
736
|
+
.glyphicon-gbp:before {
|
737
|
+
content: "\e149";
|
738
|
+
}
|
739
|
+
.glyphicon-sort:before {
|
740
|
+
content: "\e150";
|
741
|
+
}
|
742
|
+
.glyphicon-sort-by-alphabet:before {
|
743
|
+
content: "\e151";
|
744
|
+
}
|
745
|
+
.glyphicon-sort-by-alphabet-alt:before {
|
746
|
+
content: "\e152";
|
747
|
+
}
|
748
|
+
.glyphicon-sort-by-order:before {
|
749
|
+
content: "\e153";
|
750
|
+
}
|
751
|
+
.glyphicon-sort-by-order-alt:before {
|
752
|
+
content: "\e154";
|
753
|
+
}
|
754
|
+
.glyphicon-sort-by-attributes:before {
|
755
|
+
content: "\e155";
|
756
|
+
}
|
757
|
+
.glyphicon-sort-by-attributes-alt:before {
|
758
|
+
content: "\e156";
|
759
|
+
}
|
760
|
+
.glyphicon-unchecked:before {
|
761
|
+
content: "\e157";
|
762
|
+
}
|
763
|
+
.glyphicon-expand:before {
|
764
|
+
content: "\e158";
|
765
|
+
}
|
766
|
+
.glyphicon-collapse-down:before {
|
767
|
+
content: "\e159";
|
768
|
+
}
|
769
|
+
.glyphicon-collapse-up:before {
|
770
|
+
content: "\e160";
|
771
|
+
}
|
772
|
+
.glyphicon-log-in:before {
|
773
|
+
content: "\e161";
|
774
|
+
}
|
775
|
+
.glyphicon-flash:before {
|
776
|
+
content: "\e162";
|
777
|
+
}
|
778
|
+
.glyphicon-log-out:before {
|
779
|
+
content: "\e163";
|
780
|
+
}
|
781
|
+
.glyphicon-new-window:before {
|
782
|
+
content: "\e164";
|
783
|
+
}
|
784
|
+
.glyphicon-record:before {
|
785
|
+
content: "\e165";
|
786
|
+
}
|
787
|
+
.glyphicon-save:before {
|
788
|
+
content: "\e166";
|
789
|
+
}
|
790
|
+
.glyphicon-open:before {
|
791
|
+
content: "\e167";
|
792
|
+
}
|
793
|
+
.glyphicon-saved:before {
|
794
|
+
content: "\e168";
|
795
|
+
}
|
796
|
+
.glyphicon-import:before {
|
797
|
+
content: "\e169";
|
798
|
+
}
|
799
|
+
.glyphicon-export:before {
|
800
|
+
content: "\e170";
|
801
|
+
}
|
802
|
+
.glyphicon-send:before {
|
803
|
+
content: "\e171";
|
804
|
+
}
|
805
|
+
.glyphicon-floppy-disk:before {
|
806
|
+
content: "\e172";
|
807
|
+
}
|
808
|
+
.glyphicon-floppy-saved:before {
|
809
|
+
content: "\e173";
|
810
|
+
}
|
811
|
+
.glyphicon-floppy-remove:before {
|
812
|
+
content: "\e174";
|
813
|
+
}
|
814
|
+
.glyphicon-floppy-save:before {
|
815
|
+
content: "\e175";
|
816
|
+
}
|
817
|
+
.glyphicon-floppy-open:before {
|
818
|
+
content: "\e176";
|
819
|
+
}
|
820
|
+
.glyphicon-credit-card:before {
|
821
|
+
content: "\e177";
|
822
|
+
}
|
823
|
+
.glyphicon-transfer:before {
|
824
|
+
content: "\e178";
|
825
|
+
}
|
826
|
+
.glyphicon-cutlery:before {
|
827
|
+
content: "\e179";
|
828
|
+
}
|
829
|
+
.glyphicon-header:before {
|
830
|
+
content: "\e180";
|
831
|
+
}
|
832
|
+
.glyphicon-compressed:before {
|
833
|
+
content: "\e181";
|
834
|
+
}
|
835
|
+
.glyphicon-earphone:before {
|
836
|
+
content: "\e182";
|
837
|
+
}
|
838
|
+
.glyphicon-phone-alt:before {
|
839
|
+
content: "\e183";
|
840
|
+
}
|
841
|
+
.glyphicon-tower:before {
|
842
|
+
content: "\e184";
|
843
|
+
}
|
844
|
+
.glyphicon-stats:before {
|
845
|
+
content: "\e185";
|
846
|
+
}
|
847
|
+
.glyphicon-sd-video:before {
|
848
|
+
content: "\e186";
|
849
|
+
}
|
850
|
+
.glyphicon-hd-video:before {
|
851
|
+
content: "\e187";
|
852
|
+
}
|
853
|
+
.glyphicon-subtitles:before {
|
854
|
+
content: "\e188";
|
855
|
+
}
|
856
|
+
.glyphicon-sound-stereo:before {
|
857
|
+
content: "\e189";
|
858
|
+
}
|
859
|
+
.glyphicon-sound-dolby:before {
|
860
|
+
content: "\e190";
|
861
|
+
}
|
862
|
+
.glyphicon-sound-5-1:before {
|
863
|
+
content: "\e191";
|
864
|
+
}
|
865
|
+
.glyphicon-sound-6-1:before {
|
866
|
+
content: "\e192";
|
867
|
+
}
|
868
|
+
.glyphicon-sound-7-1:before {
|
869
|
+
content: "\e193";
|
870
|
+
}
|
871
|
+
.glyphicon-copyright-mark:before {
|
872
|
+
content: "\e194";
|
873
|
+
}
|
874
|
+
.glyphicon-registration-mark:before {
|
875
|
+
content: "\e195";
|
876
|
+
}
|
877
|
+
.glyphicon-cloud-download:before {
|
878
|
+
content: "\e197";
|
879
|
+
}
|
880
|
+
.glyphicon-cloud-upload:before {
|
881
|
+
content: "\e198";
|
882
|
+
}
|
883
|
+
.glyphicon-tree-conifer:before {
|
884
|
+
content: "\e199";
|
885
|
+
}
|
886
|
+
.glyphicon-tree-deciduous:before {
|
887
|
+
content: "\e200";
|
888
|
+
}
|
889
|
+
.glyphicon-cd:before {
|
890
|
+
content: "\e201";
|
891
|
+
}
|
892
|
+
.glyphicon-save-file:before {
|
893
|
+
content: "\e202";
|
894
|
+
}
|
895
|
+
.glyphicon-open-file:before {
|
896
|
+
content: "\e203";
|
897
|
+
}
|
898
|
+
.glyphicon-level-up:before {
|
899
|
+
content: "\e204";
|
900
|
+
}
|
901
|
+
.glyphicon-copy:before {
|
902
|
+
content: "\e205";
|
903
|
+
}
|
904
|
+
.glyphicon-paste:before {
|
905
|
+
content: "\e206";
|
906
|
+
}
|
907
|
+
.glyphicon-alert:before {
|
908
|
+
content: "\e209";
|
909
|
+
}
|
910
|
+
.glyphicon-equalizer:before {
|
911
|
+
content: "\e210";
|
912
|
+
}
|
913
|
+
.glyphicon-king:before {
|
914
|
+
content: "\e211";
|
915
|
+
}
|
916
|
+
.glyphicon-queen:before {
|
917
|
+
content: "\e212";
|
918
|
+
}
|
919
|
+
.glyphicon-pawn:before {
|
920
|
+
content: "\e213";
|
921
|
+
}
|
922
|
+
.glyphicon-bishop:before {
|
923
|
+
content: "\e214";
|
924
|
+
}
|
925
|
+
.glyphicon-knight:before {
|
926
|
+
content: "\e215";
|
927
|
+
}
|
928
|
+
.glyphicon-baby-formula:before {
|
929
|
+
content: "\e216";
|
930
|
+
}
|
931
|
+
.glyphicon-tent:before {
|
932
|
+
content: "\26fa";
|
933
|
+
}
|
934
|
+
.glyphicon-blackboard:before {
|
935
|
+
content: "\e218";
|
936
|
+
}
|
937
|
+
.glyphicon-bed:before {
|
938
|
+
content: "\e219";
|
939
|
+
}
|
940
|
+
.glyphicon-apple:before {
|
941
|
+
content: "\f8ff";
|
942
|
+
}
|
943
|
+
.glyphicon-erase:before {
|
944
|
+
content: "\e221";
|
945
|
+
}
|
946
|
+
.glyphicon-hourglass:before {
|
947
|
+
content: "\231b";
|
948
|
+
}
|
949
|
+
.glyphicon-lamp:before {
|
950
|
+
content: "\e223";
|
951
|
+
}
|
952
|
+
.glyphicon-duplicate:before {
|
953
|
+
content: "\e224";
|
954
|
+
}
|
955
|
+
.glyphicon-piggy-bank:before {
|
956
|
+
content: "\e225";
|
957
|
+
}
|
958
|
+
.glyphicon-scissors:before {
|
959
|
+
content: "\e226";
|
960
|
+
}
|
961
|
+
.glyphicon-bitcoin:before {
|
962
|
+
content: "\e227";
|
963
|
+
}
|
964
|
+
.glyphicon-btc:before {
|
965
|
+
content: "\e227";
|
966
|
+
}
|
967
|
+
.glyphicon-xbt:before {
|
968
|
+
content: "\e227";
|
969
|
+
}
|
970
|
+
.glyphicon-yen:before {
|
971
|
+
content: "\00a5";
|
972
|
+
}
|
973
|
+
.glyphicon-jpy:before {
|
974
|
+
content: "\00a5";
|
975
|
+
}
|
976
|
+
.glyphicon-ruble:before {
|
977
|
+
content: "\20bd";
|
978
|
+
}
|
979
|
+
.glyphicon-rub:before {
|
980
|
+
content: "\20bd";
|
981
|
+
}
|
982
|
+
.glyphicon-scale:before {
|
983
|
+
content: "\e230";
|
984
|
+
}
|
985
|
+
.glyphicon-ice-lolly:before {
|
986
|
+
content: "\e231";
|
987
|
+
}
|
988
|
+
.glyphicon-ice-lolly-tasted:before {
|
989
|
+
content: "\e232";
|
990
|
+
}
|
991
|
+
.glyphicon-education:before {
|
992
|
+
content: "\e233";
|
993
|
+
}
|
994
|
+
.glyphicon-option-horizontal:before {
|
995
|
+
content: "\e234";
|
996
|
+
}
|
997
|
+
.glyphicon-option-vertical:before {
|
998
|
+
content: "\e235";
|
999
|
+
}
|
1000
|
+
.glyphicon-menu-hamburger:before {
|
1001
|
+
content: "\e236";
|
1002
|
+
}
|
1003
|
+
.glyphicon-modal-window:before {
|
1004
|
+
content: "\e237";
|
1005
|
+
}
|
1006
|
+
.glyphicon-oil:before {
|
1007
|
+
content: "\e238";
|
1008
|
+
}
|
1009
|
+
.glyphicon-grain:before {
|
1010
|
+
content: "\e239";
|
1011
|
+
}
|
1012
|
+
.glyphicon-sunglasses:before {
|
1013
|
+
content: "\e240";
|
1014
|
+
}
|
1015
|
+
.glyphicon-text-size:before {
|
1016
|
+
content: "\e241";
|
1017
|
+
}
|
1018
|
+
.glyphicon-text-color:before {
|
1019
|
+
content: "\e242";
|
1020
|
+
}
|
1021
|
+
.glyphicon-text-background:before {
|
1022
|
+
content: "\e243";
|
1023
|
+
}
|
1024
|
+
.glyphicon-object-align-top:before {
|
1025
|
+
content: "\e244";
|
1026
|
+
}
|
1027
|
+
.glyphicon-object-align-bottom:before {
|
1028
|
+
content: "\e245";
|
1029
|
+
}
|
1030
|
+
.glyphicon-object-align-horizontal:before {
|
1031
|
+
content: "\e246";
|
1032
|
+
}
|
1033
|
+
.glyphicon-object-align-left:before {
|
1034
|
+
content: "\e247";
|
1035
|
+
}
|
1036
|
+
.glyphicon-object-align-vertical:before {
|
1037
|
+
content: "\e248";
|
1038
|
+
}
|
1039
|
+
.glyphicon-object-align-right:before {
|
1040
|
+
content: "\e249";
|
1041
|
+
}
|
1042
|
+
.glyphicon-triangle-right:before {
|
1043
|
+
content: "\e250";
|
1044
|
+
}
|
1045
|
+
.glyphicon-triangle-left:before {
|
1046
|
+
content: "\e251";
|
1047
|
+
}
|
1048
|
+
.glyphicon-triangle-bottom:before {
|
1049
|
+
content: "\e252";
|
1050
|
+
}
|
1051
|
+
.glyphicon-triangle-top:before {
|
1052
|
+
content: "\e253";
|
1053
|
+
}
|
1054
|
+
.glyphicon-console:before {
|
1055
|
+
content: "\e254";
|
1056
|
+
}
|
1057
|
+
.glyphicon-superscript:before {
|
1058
|
+
content: "\e255";
|
1059
|
+
}
|
1060
|
+
.glyphicon-subscript:before {
|
1061
|
+
content: "\e256";
|
1062
|
+
}
|
1063
|
+
.glyphicon-menu-left:before {
|
1064
|
+
content: "\e257";
|
1065
|
+
}
|
1066
|
+
.glyphicon-menu-right:before {
|
1067
|
+
content: "\e258";
|
1068
|
+
}
|
1069
|
+
.glyphicon-menu-down:before {
|
1070
|
+
content: "\e259";
|
1071
|
+
}
|
1072
|
+
.glyphicon-menu-up:before {
|
1073
|
+
content: "\e260";
|
1074
|
+
}
|
1075
|
+
* {
|
1076
|
+
-webkit-box-sizing: border-box;
|
1077
|
+
-moz-box-sizing: border-box;
|
1078
|
+
box-sizing: border-box;
|
1079
|
+
}
|
1080
|
+
*:before,
|
1081
|
+
*:after {
|
1082
|
+
-webkit-box-sizing: border-box;
|
1083
|
+
-moz-box-sizing: border-box;
|
1084
|
+
box-sizing: border-box;
|
1085
|
+
}
|
1086
|
+
html {
|
1087
|
+
font-size: 10px;
|
1088
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
1089
|
+
}
|
1090
|
+
body {
|
1091
|
+
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
1092
|
+
font-size: 16px;
|
1093
|
+
line-height: 1.5;
|
1094
|
+
color: #333333;
|
1095
|
+
background-color: #ffffff;
|
1096
|
+
}
|
1097
|
+
input,
|
1098
|
+
button,
|
1099
|
+
select,
|
1100
|
+
textarea {
|
1101
|
+
font-family: inherit;
|
1102
|
+
font-size: inherit;
|
1103
|
+
line-height: inherit;
|
1104
|
+
}
|
1105
|
+
a {
|
1106
|
+
color: #337ab7;
|
1107
|
+
text-decoration: none;
|
1108
|
+
}
|
1109
|
+
a:hover,
|
1110
|
+
a:focus {
|
1111
|
+
color: #23527c;
|
1112
|
+
text-decoration: underline;
|
1113
|
+
}
|
1114
|
+
a:focus {
|
1115
|
+
outline: 5px auto -webkit-focus-ring-color;
|
1116
|
+
outline-offset: -2px;
|
1117
|
+
}
|
1118
|
+
figure {
|
1119
|
+
margin: 0;
|
1120
|
+
}
|
1121
|
+
img {
|
1122
|
+
vertical-align: middle;
|
1123
|
+
}
|
1124
|
+
.img-responsive {
|
1125
|
+
display: block;
|
1126
|
+
max-width: 100%;
|
1127
|
+
height: auto;
|
1128
|
+
}
|
1129
|
+
.img-rounded {
|
1130
|
+
border-radius: 0px;
|
1131
|
+
}
|
1132
|
+
.img-thumbnail {
|
1133
|
+
padding: 4px;
|
1134
|
+
line-height: 1.5;
|
1135
|
+
background-color: #ffffff;
|
1136
|
+
border: 1px solid #dddddd;
|
1137
|
+
border-radius: 0px;
|
1138
|
+
-webkit-transition: all 0.2s ease-in-out;
|
1139
|
+
-o-transition: all 0.2s ease-in-out;
|
1140
|
+
transition: all 0.2s ease-in-out;
|
1141
|
+
display: inline-block;
|
1142
|
+
max-width: 100%;
|
1143
|
+
height: auto;
|
1144
|
+
}
|
1145
|
+
.img-circle {
|
1146
|
+
border-radius: 50%;
|
1147
|
+
}
|
1148
|
+
hr {
|
1149
|
+
margin-top: 24px;
|
1150
|
+
margin-bottom: 24px;
|
1151
|
+
border: 0;
|
1152
|
+
border-top: 1px solid #eeeeee;
|
1153
|
+
}
|
1154
|
+
.sr-only {
|
1155
|
+
position: absolute;
|
1156
|
+
width: 1px;
|
1157
|
+
height: 1px;
|
1158
|
+
margin: -1px;
|
1159
|
+
padding: 0;
|
1160
|
+
overflow: hidden;
|
1161
|
+
clip: rect(0, 0, 0, 0);
|
1162
|
+
border: 0;
|
1163
|
+
}
|
1164
|
+
.sr-only-focusable:active,
|
1165
|
+
.sr-only-focusable:focus {
|
1166
|
+
position: static;
|
1167
|
+
width: auto;
|
1168
|
+
height: auto;
|
1169
|
+
margin: 0;
|
1170
|
+
overflow: visible;
|
1171
|
+
clip: auto;
|
1172
|
+
}
|
1173
|
+
[role="button"] {
|
1174
|
+
cursor: pointer;
|
1175
|
+
}
|
1176
|
+
h1,
|
1177
|
+
h2,
|
1178
|
+
h3,
|
1179
|
+
h4,
|
1180
|
+
h5,
|
1181
|
+
h6,
|
1182
|
+
.h1,
|
1183
|
+
.h2,
|
1184
|
+
.h3,
|
1185
|
+
.h4,
|
1186
|
+
.h5,
|
1187
|
+
.h6 {
|
1188
|
+
font-family: inherit;
|
1189
|
+
font-weight: 500;
|
1190
|
+
line-height: 1.1;
|
1191
|
+
color: inherit;
|
1192
|
+
}
|
1193
|
+
h1 small,
|
1194
|
+
h2 small,
|
1195
|
+
h3 small,
|
1196
|
+
h4 small,
|
1197
|
+
h5 small,
|
1198
|
+
h6 small,
|
1199
|
+
.h1 small,
|
1200
|
+
.h2 small,
|
1201
|
+
.h3 small,
|
1202
|
+
.h4 small,
|
1203
|
+
.h5 small,
|
1204
|
+
.h6 small,
|
1205
|
+
h1 .small,
|
1206
|
+
h2 .small,
|
1207
|
+
h3 .small,
|
1208
|
+
h4 .small,
|
1209
|
+
h5 .small,
|
1210
|
+
h6 .small,
|
1211
|
+
.h1 .small,
|
1212
|
+
.h2 .small,
|
1213
|
+
.h3 .small,
|
1214
|
+
.h4 .small,
|
1215
|
+
.h5 .small,
|
1216
|
+
.h6 .small {
|
1217
|
+
font-weight: normal;
|
1218
|
+
line-height: 1;
|
1219
|
+
color: #777777;
|
1220
|
+
}
|
1221
|
+
h1,
|
1222
|
+
.h1,
|
1223
|
+
h2,
|
1224
|
+
.h2,
|
1225
|
+
h3,
|
1226
|
+
.h3 {
|
1227
|
+
margin-top: 24px;
|
1228
|
+
margin-bottom: 12px;
|
1229
|
+
}
|
1230
|
+
h1 small,
|
1231
|
+
.h1 small,
|
1232
|
+
h2 small,
|
1233
|
+
.h2 small,
|
1234
|
+
h3 small,
|
1235
|
+
.h3 small,
|
1236
|
+
h1 .small,
|
1237
|
+
.h1 .small,
|
1238
|
+
h2 .small,
|
1239
|
+
.h2 .small,
|
1240
|
+
h3 .small,
|
1241
|
+
.h3 .small {
|
1242
|
+
font-size: 65%;
|
1243
|
+
}
|
1244
|
+
h4,
|
1245
|
+
.h4,
|
1246
|
+
h5,
|
1247
|
+
.h5,
|
1248
|
+
h6,
|
1249
|
+
.h6 {
|
1250
|
+
margin-top: 12px;
|
1251
|
+
margin-bottom: 12px;
|
1252
|
+
}
|
1253
|
+
h4 small,
|
1254
|
+
.h4 small,
|
1255
|
+
h5 small,
|
1256
|
+
.h5 small,
|
1257
|
+
h6 small,
|
1258
|
+
.h6 small,
|
1259
|
+
h4 .small,
|
1260
|
+
.h4 .small,
|
1261
|
+
h5 .small,
|
1262
|
+
.h5 .small,
|
1263
|
+
h6 .small,
|
1264
|
+
.h6 .small {
|
1265
|
+
font-size: 75%;
|
1266
|
+
}
|
1267
|
+
h1,
|
1268
|
+
.h1 {
|
1269
|
+
font-size: 41px;
|
1270
|
+
}
|
1271
|
+
h2,
|
1272
|
+
.h2 {
|
1273
|
+
font-size: 34px;
|
1274
|
+
}
|
1275
|
+
h3,
|
1276
|
+
.h3 {
|
1277
|
+
font-size: 28px;
|
1278
|
+
}
|
1279
|
+
h4,
|
1280
|
+
.h4 {
|
1281
|
+
font-size: 20px;
|
1282
|
+
}
|
1283
|
+
h5,
|
1284
|
+
.h5 {
|
1285
|
+
font-size: 16px;
|
1286
|
+
}
|
1287
|
+
h6,
|
1288
|
+
.h6 {
|
1289
|
+
font-size: 14px;
|
1290
|
+
}
|
1291
|
+
p {
|
1292
|
+
margin: 0 0 12px;
|
1293
|
+
}
|
1294
|
+
.lead {
|
1295
|
+
margin-bottom: 24px;
|
1296
|
+
font-size: 18px;
|
1297
|
+
font-weight: 300;
|
1298
|
+
line-height: 1.4;
|
1299
|
+
}
|
1300
|
+
@media (min-width: 768px) {
|
1301
|
+
.lead {
|
1302
|
+
font-size: 24px;
|
1303
|
+
}
|
1304
|
+
}
|
1305
|
+
small,
|
1306
|
+
.small {
|
1307
|
+
font-size: 87%;
|
1308
|
+
}
|
1309
|
+
mark,
|
1310
|
+
.mark {
|
1311
|
+
background-color: #fcf8e3;
|
1312
|
+
padding: .2em;
|
1313
|
+
}
|
1314
|
+
.text-left {
|
1315
|
+
text-align: left;
|
1316
|
+
}
|
1317
|
+
.text-right {
|
1318
|
+
text-align: right;
|
1319
|
+
}
|
1320
|
+
.text-center {
|
1321
|
+
text-align: center;
|
1322
|
+
}
|
1323
|
+
.text-justify {
|
1324
|
+
text-align: justify;
|
1325
|
+
}
|
1326
|
+
.text-nowrap {
|
1327
|
+
white-space: nowrap;
|
1328
|
+
}
|
1329
|
+
.text-lowercase {
|
1330
|
+
text-transform: lowercase;
|
1331
|
+
}
|
1332
|
+
.text-uppercase {
|
1333
|
+
text-transform: uppercase;
|
1334
|
+
}
|
1335
|
+
.text-capitalize {
|
1336
|
+
text-transform: capitalize;
|
1337
|
+
}
|
1338
|
+
.text-muted {
|
1339
|
+
color: #777777;
|
1340
|
+
}
|
1341
|
+
.text-primary {
|
1342
|
+
color: #337ab7;
|
1343
|
+
}
|
1344
|
+
a.text-primary:hover,
|
1345
|
+
a.text-primary:focus {
|
1346
|
+
color: #286090;
|
1347
|
+
}
|
1348
|
+
.text-success {
|
1349
|
+
color: #3c763d;
|
1350
|
+
}
|
1351
|
+
a.text-success:hover,
|
1352
|
+
a.text-success:focus {
|
1353
|
+
color: #2b542c;
|
1354
|
+
}
|
1355
|
+
.text-info {
|
1356
|
+
color: #31708f;
|
1357
|
+
}
|
1358
|
+
a.text-info:hover,
|
1359
|
+
a.text-info:focus {
|
1360
|
+
color: #245269;
|
1361
|
+
}
|
1362
|
+
.text-warning {
|
1363
|
+
color: #8a6d3b;
|
1364
|
+
}
|
1365
|
+
a.text-warning:hover,
|
1366
|
+
a.text-warning:focus {
|
1367
|
+
color: #66512c;
|
1368
|
+
}
|
1369
|
+
.text-danger {
|
1370
|
+
color: #a94442;
|
1371
|
+
}
|
1372
|
+
a.text-danger:hover,
|
1373
|
+
a.text-danger:focus {
|
1374
|
+
color: #843534;
|
1375
|
+
}
|
1376
|
+
.bg-primary {
|
1377
|
+
color: #fff;
|
1378
|
+
background-color: #337ab7;
|
1379
|
+
}
|
1380
|
+
a.bg-primary:hover,
|
1381
|
+
a.bg-primary:focus {
|
1382
|
+
background-color: #286090;
|
1383
|
+
}
|
1384
|
+
.bg-success {
|
1385
|
+
background-color: #dff0d8;
|
1386
|
+
}
|
1387
|
+
a.bg-success:hover,
|
1388
|
+
a.bg-success:focus {
|
1389
|
+
background-color: #c1e2b3;
|
1390
|
+
}
|
1391
|
+
.bg-info {
|
1392
|
+
background-color: #d9edf7;
|
1393
|
+
}
|
1394
|
+
a.bg-info:hover,
|
1395
|
+
a.bg-info:focus {
|
1396
|
+
background-color: #afd9ee;
|
1397
|
+
}
|
1398
|
+
.bg-warning {
|
1399
|
+
background-color: #fcf8e3;
|
1400
|
+
}
|
1401
|
+
a.bg-warning:hover,
|
1402
|
+
a.bg-warning:focus {
|
1403
|
+
background-color: #f7ecb5;
|
1404
|
+
}
|
1405
|
+
.bg-danger {
|
1406
|
+
background-color: #f2dede;
|
1407
|
+
}
|
1408
|
+
a.bg-danger:hover,
|
1409
|
+
a.bg-danger:focus {
|
1410
|
+
background-color: #e4b9b9;
|
1411
|
+
}
|
1412
|
+
.page-header {
|
1413
|
+
padding-bottom: 11px;
|
1414
|
+
margin: 48px 0 24px;
|
1415
|
+
border-bottom: 1px solid #eeeeee;
|
1416
|
+
}
|
1417
|
+
ul,
|
1418
|
+
ol {
|
1419
|
+
margin-top: 0;
|
1420
|
+
margin-bottom: 12px;
|
1421
|
+
}
|
1422
|
+
ul ul,
|
1423
|
+
ol ul,
|
1424
|
+
ul ol,
|
1425
|
+
ol ol {
|
1426
|
+
margin-bottom: 0;
|
1427
|
+
}
|
1428
|
+
.list-unstyled {
|
1429
|
+
padding-left: 0;
|
1430
|
+
list-style: none;
|
1431
|
+
}
|
1432
|
+
.list-inline {
|
1433
|
+
padding-left: 0;
|
1434
|
+
list-style: none;
|
1435
|
+
margin-left: -5px;
|
1436
|
+
}
|
1437
|
+
.list-inline > li {
|
1438
|
+
display: inline-block;
|
1439
|
+
padding-left: 5px;
|
1440
|
+
padding-right: 5px;
|
1441
|
+
}
|
1442
|
+
dl {
|
1443
|
+
margin-top: 0;
|
1444
|
+
margin-bottom: 24px;
|
1445
|
+
}
|
1446
|
+
dt,
|
1447
|
+
dd {
|
1448
|
+
line-height: 1.5;
|
1449
|
+
}
|
1450
|
+
dt {
|
1451
|
+
font-weight: bold;
|
1452
|
+
}
|
1453
|
+
dd {
|
1454
|
+
margin-left: 0;
|
1455
|
+
}
|
1456
|
+
@media (min-width: 768px) {
|
1457
|
+
.dl-horizontal dt {
|
1458
|
+
float: left;
|
1459
|
+
width: 160px;
|
1460
|
+
clear: left;
|
1461
|
+
text-align: right;
|
1462
|
+
overflow: hidden;
|
1463
|
+
text-overflow: ellipsis;
|
1464
|
+
white-space: nowrap;
|
1465
|
+
}
|
1466
|
+
.dl-horizontal dd {
|
1467
|
+
margin-left: 180px;
|
1468
|
+
}
|
1469
|
+
}
|
1470
|
+
abbr[title],
|
1471
|
+
abbr[data-original-title] {
|
1472
|
+
cursor: help;
|
1473
|
+
border-bottom: 1px dotted #777777;
|
1474
|
+
}
|
1475
|
+
.initialism {
|
1476
|
+
font-size: 90%;
|
1477
|
+
text-transform: uppercase;
|
1478
|
+
}
|
1479
|
+
blockquote {
|
1480
|
+
padding: 12px 24px;
|
1481
|
+
margin: 0 0 24px;
|
1482
|
+
font-size: 20px;
|
1483
|
+
border-left: 5px solid #eeeeee;
|
1484
|
+
}
|
1485
|
+
blockquote p:last-child,
|
1486
|
+
blockquote ul:last-child,
|
1487
|
+
blockquote ol:last-child {
|
1488
|
+
margin-bottom: 0;
|
1489
|
+
}
|
1490
|
+
blockquote footer,
|
1491
|
+
blockquote small,
|
1492
|
+
blockquote .small {
|
1493
|
+
display: block;
|
1494
|
+
font-size: 80%;
|
1495
|
+
line-height: 1.5;
|
1496
|
+
color: #777777;
|
1497
|
+
}
|
1498
|
+
blockquote footer:before,
|
1499
|
+
blockquote small:before,
|
1500
|
+
blockquote .small:before {
|
1501
|
+
content: '\2014 \00A0';
|
1502
|
+
}
|
1503
|
+
.blockquote-reverse,
|
1504
|
+
blockquote.pull-right {
|
1505
|
+
padding-right: 15px;
|
1506
|
+
padding-left: 0;
|
1507
|
+
border-right: 5px solid #eeeeee;
|
1508
|
+
border-left: 0;
|
1509
|
+
text-align: right;
|
1510
|
+
}
|
1511
|
+
.blockquote-reverse footer:before,
|
1512
|
+
blockquote.pull-right footer:before,
|
1513
|
+
.blockquote-reverse small:before,
|
1514
|
+
blockquote.pull-right small:before,
|
1515
|
+
.blockquote-reverse .small:before,
|
1516
|
+
blockquote.pull-right .small:before {
|
1517
|
+
content: '';
|
1518
|
+
}
|
1519
|
+
.blockquote-reverse footer:after,
|
1520
|
+
blockquote.pull-right footer:after,
|
1521
|
+
.blockquote-reverse small:after,
|
1522
|
+
blockquote.pull-right small:after,
|
1523
|
+
.blockquote-reverse .small:after,
|
1524
|
+
blockquote.pull-right .small:after {
|
1525
|
+
content: '\00A0 \2014';
|
1526
|
+
}
|
1527
|
+
address {
|
1528
|
+
margin-bottom: 24px;
|
1529
|
+
font-style: normal;
|
1530
|
+
line-height: 1.5;
|
1531
|
+
}
|
1532
|
+
code,
|
1533
|
+
kbd,
|
1534
|
+
pre,
|
1535
|
+
samp {
|
1536
|
+
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
1537
|
+
}
|
1538
|
+
code {
|
1539
|
+
padding: 2px 4px;
|
1540
|
+
font-size: 90%;
|
1541
|
+
color: #c7254e;
|
1542
|
+
background-color: #f9f2f4;
|
1543
|
+
border-radius: 0px;
|
1544
|
+
}
|
1545
|
+
kbd {
|
1546
|
+
padding: 2px 4px;
|
1547
|
+
font-size: 90%;
|
1548
|
+
color: #ffffff;
|
1549
|
+
background-color: #333333;
|
1550
|
+
border-radius: 0px;
|
1551
|
+
-webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1552
|
+
box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
|
1553
|
+
}
|
1554
|
+
kbd kbd {
|
1555
|
+
padding: 0;
|
1556
|
+
font-size: 100%;
|
1557
|
+
font-weight: bold;
|
1558
|
+
-webkit-box-shadow: none;
|
1559
|
+
box-shadow: none;
|
1560
|
+
}
|
1561
|
+
pre {
|
1562
|
+
display: block;
|
1563
|
+
padding: 11.5px;
|
1564
|
+
margin: 0 0 12px;
|
1565
|
+
font-size: 15px;
|
1566
|
+
line-height: 1.5;
|
1567
|
+
word-break: break-all;
|
1568
|
+
word-wrap: break-word;
|
1569
|
+
color: #333333;
|
1570
|
+
background-color: #f5f5f5;
|
1571
|
+
border: 1px solid #cccccc;
|
1572
|
+
border-radius: 0px;
|
1573
|
+
}
|
1574
|
+
pre code {
|
1575
|
+
padding: 0;
|
1576
|
+
font-size: inherit;
|
1577
|
+
color: inherit;
|
1578
|
+
white-space: pre-wrap;
|
1579
|
+
background-color: transparent;
|
1580
|
+
border-radius: 0;
|
1581
|
+
}
|
1582
|
+
.pre-scrollable {
|
1583
|
+
max-height: 340px;
|
1584
|
+
overflow-y: scroll;
|
1585
|
+
}
|
1586
|
+
.container {
|
1587
|
+
margin-right: auto;
|
1588
|
+
margin-left: auto;
|
1589
|
+
padding-left: 30px;
|
1590
|
+
padding-right: 30px;
|
1591
|
+
}
|
1592
|
+
@media (min-width: 768px) {
|
1593
|
+
.container {
|
1594
|
+
width: 780px;
|
1595
|
+
}
|
1596
|
+
}
|
1597
|
+
@media (min-width: 992px) {
|
1598
|
+
.container {
|
1599
|
+
width: 1000px;
|
1600
|
+
}
|
1601
|
+
}
|
1602
|
+
@media (min-width: 1200px) {
|
1603
|
+
.container {
|
1604
|
+
width: 1000px;
|
1605
|
+
}
|
1606
|
+
}
|
1607
|
+
.container-fluid {
|
1608
|
+
margin-right: auto;
|
1609
|
+
margin-left: auto;
|
1610
|
+
padding-left: 30px;
|
1611
|
+
padding-right: 30px;
|
1612
|
+
}
|
1613
|
+
.row {
|
1614
|
+
margin-left: -30px;
|
1615
|
+
margin-right: -30px;
|
1616
|
+
}
|
1617
|
+
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
|
1618
|
+
position: relative;
|
1619
|
+
min-height: 1px;
|
1620
|
+
padding-left: 30px;
|
1621
|
+
padding-right: 30px;
|
1622
|
+
}
|
1623
|
+
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
|
1624
|
+
float: left;
|
1625
|
+
}
|
1626
|
+
.col-xs-12 {
|
1627
|
+
width: 100%;
|
1628
|
+
}
|
1629
|
+
.col-xs-11 {
|
1630
|
+
width: 91.66666667%;
|
1631
|
+
}
|
1632
|
+
.col-xs-10 {
|
1633
|
+
width: 83.33333333%;
|
1634
|
+
}
|
1635
|
+
.col-xs-9 {
|
1636
|
+
width: 75%;
|
1637
|
+
}
|
1638
|
+
.col-xs-8 {
|
1639
|
+
width: 66.66666667%;
|
1640
|
+
}
|
1641
|
+
.col-xs-7 {
|
1642
|
+
width: 58.33333333%;
|
1643
|
+
}
|
1644
|
+
.col-xs-6 {
|
1645
|
+
width: 50%;
|
1646
|
+
}
|
1647
|
+
.col-xs-5 {
|
1648
|
+
width: 41.66666667%;
|
1649
|
+
}
|
1650
|
+
.col-xs-4 {
|
1651
|
+
width: 33.33333333%;
|
1652
|
+
}
|
1653
|
+
.col-xs-3 {
|
1654
|
+
width: 25%;
|
1655
|
+
}
|
1656
|
+
.col-xs-2 {
|
1657
|
+
width: 16.66666667%;
|
1658
|
+
}
|
1659
|
+
.col-xs-1 {
|
1660
|
+
width: 8.33333333%;
|
1661
|
+
}
|
1662
|
+
.col-xs-pull-12 {
|
1663
|
+
right: 100%;
|
1664
|
+
}
|
1665
|
+
.col-xs-pull-11 {
|
1666
|
+
right: 91.66666667%;
|
1667
|
+
}
|
1668
|
+
.col-xs-pull-10 {
|
1669
|
+
right: 83.33333333%;
|
1670
|
+
}
|
1671
|
+
.col-xs-pull-9 {
|
1672
|
+
right: 75%;
|
1673
|
+
}
|
1674
|
+
.col-xs-pull-8 {
|
1675
|
+
right: 66.66666667%;
|
1676
|
+
}
|
1677
|
+
.col-xs-pull-7 {
|
1678
|
+
right: 58.33333333%;
|
1679
|
+
}
|
1680
|
+
.col-xs-pull-6 {
|
1681
|
+
right: 50%;
|
1682
|
+
}
|
1683
|
+
.col-xs-pull-5 {
|
1684
|
+
right: 41.66666667%;
|
1685
|
+
}
|
1686
|
+
.col-xs-pull-4 {
|
1687
|
+
right: 33.33333333%;
|
1688
|
+
}
|
1689
|
+
.col-xs-pull-3 {
|
1690
|
+
right: 25%;
|
1691
|
+
}
|
1692
|
+
.col-xs-pull-2 {
|
1693
|
+
right: 16.66666667%;
|
1694
|
+
}
|
1695
|
+
.col-xs-pull-1 {
|
1696
|
+
right: 8.33333333%;
|
1697
|
+
}
|
1698
|
+
.col-xs-pull-0 {
|
1699
|
+
right: auto;
|
1700
|
+
}
|
1701
|
+
.col-xs-push-12 {
|
1702
|
+
left: 100%;
|
1703
|
+
}
|
1704
|
+
.col-xs-push-11 {
|
1705
|
+
left: 91.66666667%;
|
1706
|
+
}
|
1707
|
+
.col-xs-push-10 {
|
1708
|
+
left: 83.33333333%;
|
1709
|
+
}
|
1710
|
+
.col-xs-push-9 {
|
1711
|
+
left: 75%;
|
1712
|
+
}
|
1713
|
+
.col-xs-push-8 {
|
1714
|
+
left: 66.66666667%;
|
1715
|
+
}
|
1716
|
+
.col-xs-push-7 {
|
1717
|
+
left: 58.33333333%;
|
1718
|
+
}
|
1719
|
+
.col-xs-push-6 {
|
1720
|
+
left: 50%;
|
1721
|
+
}
|
1722
|
+
.col-xs-push-5 {
|
1723
|
+
left: 41.66666667%;
|
1724
|
+
}
|
1725
|
+
.col-xs-push-4 {
|
1726
|
+
left: 33.33333333%;
|
1727
|
+
}
|
1728
|
+
.col-xs-push-3 {
|
1729
|
+
left: 25%;
|
1730
|
+
}
|
1731
|
+
.col-xs-push-2 {
|
1732
|
+
left: 16.66666667%;
|
1733
|
+
}
|
1734
|
+
.col-xs-push-1 {
|
1735
|
+
left: 8.33333333%;
|
1736
|
+
}
|
1737
|
+
.col-xs-push-0 {
|
1738
|
+
left: auto;
|
1739
|
+
}
|
1740
|
+
.col-xs-offset-12 {
|
1741
|
+
margin-left: 100%;
|
1742
|
+
}
|
1743
|
+
.col-xs-offset-11 {
|
1744
|
+
margin-left: 91.66666667%;
|
1745
|
+
}
|
1746
|
+
.col-xs-offset-10 {
|
1747
|
+
margin-left: 83.33333333%;
|
1748
|
+
}
|
1749
|
+
.col-xs-offset-9 {
|
1750
|
+
margin-left: 75%;
|
1751
|
+
}
|
1752
|
+
.col-xs-offset-8 {
|
1753
|
+
margin-left: 66.66666667%;
|
1754
|
+
}
|
1755
|
+
.col-xs-offset-7 {
|
1756
|
+
margin-left: 58.33333333%;
|
1757
|
+
}
|
1758
|
+
.col-xs-offset-6 {
|
1759
|
+
margin-left: 50%;
|
1760
|
+
}
|
1761
|
+
.col-xs-offset-5 {
|
1762
|
+
margin-left: 41.66666667%;
|
1763
|
+
}
|
1764
|
+
.col-xs-offset-4 {
|
1765
|
+
margin-left: 33.33333333%;
|
1766
|
+
}
|
1767
|
+
.col-xs-offset-3 {
|
1768
|
+
margin-left: 25%;
|
1769
|
+
}
|
1770
|
+
.col-xs-offset-2 {
|
1771
|
+
margin-left: 16.66666667%;
|
1772
|
+
}
|
1773
|
+
.col-xs-offset-1 {
|
1774
|
+
margin-left: 8.33333333%;
|
1775
|
+
}
|
1776
|
+
.col-xs-offset-0 {
|
1777
|
+
margin-left: 0%;
|
1778
|
+
}
|
1779
|
+
@media (min-width: 768px) {
|
1780
|
+
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
|
1781
|
+
float: left;
|
1782
|
+
}
|
1783
|
+
.col-sm-12 {
|
1784
|
+
width: 100%;
|
1785
|
+
}
|
1786
|
+
.col-sm-11 {
|
1787
|
+
width: 91.66666667%;
|
1788
|
+
}
|
1789
|
+
.col-sm-10 {
|
1790
|
+
width: 83.33333333%;
|
1791
|
+
}
|
1792
|
+
.col-sm-9 {
|
1793
|
+
width: 75%;
|
1794
|
+
}
|
1795
|
+
.col-sm-8 {
|
1796
|
+
width: 66.66666667%;
|
1797
|
+
}
|
1798
|
+
.col-sm-7 {
|
1799
|
+
width: 58.33333333%;
|
1800
|
+
}
|
1801
|
+
.col-sm-6 {
|
1802
|
+
width: 50%;
|
1803
|
+
}
|
1804
|
+
.col-sm-5 {
|
1805
|
+
width: 41.66666667%;
|
1806
|
+
}
|
1807
|
+
.col-sm-4 {
|
1808
|
+
width: 33.33333333%;
|
1809
|
+
}
|
1810
|
+
.col-sm-3 {
|
1811
|
+
width: 25%;
|
1812
|
+
}
|
1813
|
+
.col-sm-2 {
|
1814
|
+
width: 16.66666667%;
|
1815
|
+
}
|
1816
|
+
.col-sm-1 {
|
1817
|
+
width: 8.33333333%;
|
1818
|
+
}
|
1819
|
+
.col-sm-pull-12 {
|
1820
|
+
right: 100%;
|
1821
|
+
}
|
1822
|
+
.col-sm-pull-11 {
|
1823
|
+
right: 91.66666667%;
|
1824
|
+
}
|
1825
|
+
.col-sm-pull-10 {
|
1826
|
+
right: 83.33333333%;
|
1827
|
+
}
|
1828
|
+
.col-sm-pull-9 {
|
1829
|
+
right: 75%;
|
1830
|
+
}
|
1831
|
+
.col-sm-pull-8 {
|
1832
|
+
right: 66.66666667%;
|
1833
|
+
}
|
1834
|
+
.col-sm-pull-7 {
|
1835
|
+
right: 58.33333333%;
|
1836
|
+
}
|
1837
|
+
.col-sm-pull-6 {
|
1838
|
+
right: 50%;
|
1839
|
+
}
|
1840
|
+
.col-sm-pull-5 {
|
1841
|
+
right: 41.66666667%;
|
1842
|
+
}
|
1843
|
+
.col-sm-pull-4 {
|
1844
|
+
right: 33.33333333%;
|
1845
|
+
}
|
1846
|
+
.col-sm-pull-3 {
|
1847
|
+
right: 25%;
|
1848
|
+
}
|
1849
|
+
.col-sm-pull-2 {
|
1850
|
+
right: 16.66666667%;
|
1851
|
+
}
|
1852
|
+
.col-sm-pull-1 {
|
1853
|
+
right: 8.33333333%;
|
1854
|
+
}
|
1855
|
+
.col-sm-pull-0 {
|
1856
|
+
right: auto;
|
1857
|
+
}
|
1858
|
+
.col-sm-push-12 {
|
1859
|
+
left: 100%;
|
1860
|
+
}
|
1861
|
+
.col-sm-push-11 {
|
1862
|
+
left: 91.66666667%;
|
1863
|
+
}
|
1864
|
+
.col-sm-push-10 {
|
1865
|
+
left: 83.33333333%;
|
1866
|
+
}
|
1867
|
+
.col-sm-push-9 {
|
1868
|
+
left: 75%;
|
1869
|
+
}
|
1870
|
+
.col-sm-push-8 {
|
1871
|
+
left: 66.66666667%;
|
1872
|
+
}
|
1873
|
+
.col-sm-push-7 {
|
1874
|
+
left: 58.33333333%;
|
1875
|
+
}
|
1876
|
+
.col-sm-push-6 {
|
1877
|
+
left: 50%;
|
1878
|
+
}
|
1879
|
+
.col-sm-push-5 {
|
1880
|
+
left: 41.66666667%;
|
1881
|
+
}
|
1882
|
+
.col-sm-push-4 {
|
1883
|
+
left: 33.33333333%;
|
1884
|
+
}
|
1885
|
+
.col-sm-push-3 {
|
1886
|
+
left: 25%;
|
1887
|
+
}
|
1888
|
+
.col-sm-push-2 {
|
1889
|
+
left: 16.66666667%;
|
1890
|
+
}
|
1891
|
+
.col-sm-push-1 {
|
1892
|
+
left: 8.33333333%;
|
1893
|
+
}
|
1894
|
+
.col-sm-push-0 {
|
1895
|
+
left: auto;
|
1896
|
+
}
|
1897
|
+
.col-sm-offset-12 {
|
1898
|
+
margin-left: 100%;
|
1899
|
+
}
|
1900
|
+
.col-sm-offset-11 {
|
1901
|
+
margin-left: 91.66666667%;
|
1902
|
+
}
|
1903
|
+
.col-sm-offset-10 {
|
1904
|
+
margin-left: 83.33333333%;
|
1905
|
+
}
|
1906
|
+
.col-sm-offset-9 {
|
1907
|
+
margin-left: 75%;
|
1908
|
+
}
|
1909
|
+
.col-sm-offset-8 {
|
1910
|
+
margin-left: 66.66666667%;
|
1911
|
+
}
|
1912
|
+
.col-sm-offset-7 {
|
1913
|
+
margin-left: 58.33333333%;
|
1914
|
+
}
|
1915
|
+
.col-sm-offset-6 {
|
1916
|
+
margin-left: 50%;
|
1917
|
+
}
|
1918
|
+
.col-sm-offset-5 {
|
1919
|
+
margin-left: 41.66666667%;
|
1920
|
+
}
|
1921
|
+
.col-sm-offset-4 {
|
1922
|
+
margin-left: 33.33333333%;
|
1923
|
+
}
|
1924
|
+
.col-sm-offset-3 {
|
1925
|
+
margin-left: 25%;
|
1926
|
+
}
|
1927
|
+
.col-sm-offset-2 {
|
1928
|
+
margin-left: 16.66666667%;
|
1929
|
+
}
|
1930
|
+
.col-sm-offset-1 {
|
1931
|
+
margin-left: 8.33333333%;
|
1932
|
+
}
|
1933
|
+
.col-sm-offset-0 {
|
1934
|
+
margin-left: 0%;
|
1935
|
+
}
|
1936
|
+
}
|
1937
|
+
@media (min-width: 992px) {
|
1938
|
+
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
|
1939
|
+
float: left;
|
1940
|
+
}
|
1941
|
+
.col-md-12 {
|
1942
|
+
width: 100%;
|
1943
|
+
}
|
1944
|
+
.col-md-11 {
|
1945
|
+
width: 91.66666667%;
|
1946
|
+
}
|
1947
|
+
.col-md-10 {
|
1948
|
+
width: 83.33333333%;
|
1949
|
+
}
|
1950
|
+
.col-md-9 {
|
1951
|
+
width: 75%;
|
1952
|
+
}
|
1953
|
+
.col-md-8 {
|
1954
|
+
width: 66.66666667%;
|
1955
|
+
}
|
1956
|
+
.col-md-7 {
|
1957
|
+
width: 58.33333333%;
|
1958
|
+
}
|
1959
|
+
.col-md-6 {
|
1960
|
+
width: 50%;
|
1961
|
+
}
|
1962
|
+
.col-md-5 {
|
1963
|
+
width: 41.66666667%;
|
1964
|
+
}
|
1965
|
+
.col-md-4 {
|
1966
|
+
width: 33.33333333%;
|
1967
|
+
}
|
1968
|
+
.col-md-3 {
|
1969
|
+
width: 25%;
|
1970
|
+
}
|
1971
|
+
.col-md-2 {
|
1972
|
+
width: 16.66666667%;
|
1973
|
+
}
|
1974
|
+
.col-md-1 {
|
1975
|
+
width: 8.33333333%;
|
1976
|
+
}
|
1977
|
+
.col-md-pull-12 {
|
1978
|
+
right: 100%;
|
1979
|
+
}
|
1980
|
+
.col-md-pull-11 {
|
1981
|
+
right: 91.66666667%;
|
1982
|
+
}
|
1983
|
+
.col-md-pull-10 {
|
1984
|
+
right: 83.33333333%;
|
1985
|
+
}
|
1986
|
+
.col-md-pull-9 {
|
1987
|
+
right: 75%;
|
1988
|
+
}
|
1989
|
+
.col-md-pull-8 {
|
1990
|
+
right: 66.66666667%;
|
1991
|
+
}
|
1992
|
+
.col-md-pull-7 {
|
1993
|
+
right: 58.33333333%;
|
1994
|
+
}
|
1995
|
+
.col-md-pull-6 {
|
1996
|
+
right: 50%;
|
1997
|
+
}
|
1998
|
+
.col-md-pull-5 {
|
1999
|
+
right: 41.66666667%;
|
2000
|
+
}
|
2001
|
+
.col-md-pull-4 {
|
2002
|
+
right: 33.33333333%;
|
2003
|
+
}
|
2004
|
+
.col-md-pull-3 {
|
2005
|
+
right: 25%;
|
2006
|
+
}
|
2007
|
+
.col-md-pull-2 {
|
2008
|
+
right: 16.66666667%;
|
2009
|
+
}
|
2010
|
+
.col-md-pull-1 {
|
2011
|
+
right: 8.33333333%;
|
2012
|
+
}
|
2013
|
+
.col-md-pull-0 {
|
2014
|
+
right: auto;
|
2015
|
+
}
|
2016
|
+
.col-md-push-12 {
|
2017
|
+
left: 100%;
|
2018
|
+
}
|
2019
|
+
.col-md-push-11 {
|
2020
|
+
left: 91.66666667%;
|
2021
|
+
}
|
2022
|
+
.col-md-push-10 {
|
2023
|
+
left: 83.33333333%;
|
2024
|
+
}
|
2025
|
+
.col-md-push-9 {
|
2026
|
+
left: 75%;
|
2027
|
+
}
|
2028
|
+
.col-md-push-8 {
|
2029
|
+
left: 66.66666667%;
|
2030
|
+
}
|
2031
|
+
.col-md-push-7 {
|
2032
|
+
left: 58.33333333%;
|
2033
|
+
}
|
2034
|
+
.col-md-push-6 {
|
2035
|
+
left: 50%;
|
2036
|
+
}
|
2037
|
+
.col-md-push-5 {
|
2038
|
+
left: 41.66666667%;
|
2039
|
+
}
|
2040
|
+
.col-md-push-4 {
|
2041
|
+
left: 33.33333333%;
|
2042
|
+
}
|
2043
|
+
.col-md-push-3 {
|
2044
|
+
left: 25%;
|
2045
|
+
}
|
2046
|
+
.col-md-push-2 {
|
2047
|
+
left: 16.66666667%;
|
2048
|
+
}
|
2049
|
+
.col-md-push-1 {
|
2050
|
+
left: 8.33333333%;
|
2051
|
+
}
|
2052
|
+
.col-md-push-0 {
|
2053
|
+
left: auto;
|
2054
|
+
}
|
2055
|
+
.col-md-offset-12 {
|
2056
|
+
margin-left: 100%;
|
2057
|
+
}
|
2058
|
+
.col-md-offset-11 {
|
2059
|
+
margin-left: 91.66666667%;
|
2060
|
+
}
|
2061
|
+
.col-md-offset-10 {
|
2062
|
+
margin-left: 83.33333333%;
|
2063
|
+
}
|
2064
|
+
.col-md-offset-9 {
|
2065
|
+
margin-left: 75%;
|
2066
|
+
}
|
2067
|
+
.col-md-offset-8 {
|
2068
|
+
margin-left: 66.66666667%;
|
2069
|
+
}
|
2070
|
+
.col-md-offset-7 {
|
2071
|
+
margin-left: 58.33333333%;
|
2072
|
+
}
|
2073
|
+
.col-md-offset-6 {
|
2074
|
+
margin-left: 50%;
|
2075
|
+
}
|
2076
|
+
.col-md-offset-5 {
|
2077
|
+
margin-left: 41.66666667%;
|
2078
|
+
}
|
2079
|
+
.col-md-offset-4 {
|
2080
|
+
margin-left: 33.33333333%;
|
2081
|
+
}
|
2082
|
+
.col-md-offset-3 {
|
2083
|
+
margin-left: 25%;
|
2084
|
+
}
|
2085
|
+
.col-md-offset-2 {
|
2086
|
+
margin-left: 16.66666667%;
|
2087
|
+
}
|
2088
|
+
.col-md-offset-1 {
|
2089
|
+
margin-left: 8.33333333%;
|
2090
|
+
}
|
2091
|
+
.col-md-offset-0 {
|
2092
|
+
margin-left: 0%;
|
2093
|
+
}
|
2094
|
+
}
|
2095
|
+
@media (min-width: 1200px) {
|
2096
|
+
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
|
2097
|
+
float: left;
|
2098
|
+
}
|
2099
|
+
.col-lg-12 {
|
2100
|
+
width: 100%;
|
2101
|
+
}
|
2102
|
+
.col-lg-11 {
|
2103
|
+
width: 91.66666667%;
|
2104
|
+
}
|
2105
|
+
.col-lg-10 {
|
2106
|
+
width: 83.33333333%;
|
2107
|
+
}
|
2108
|
+
.col-lg-9 {
|
2109
|
+
width: 75%;
|
2110
|
+
}
|
2111
|
+
.col-lg-8 {
|
2112
|
+
width: 66.66666667%;
|
2113
|
+
}
|
2114
|
+
.col-lg-7 {
|
2115
|
+
width: 58.33333333%;
|
2116
|
+
}
|
2117
|
+
.col-lg-6 {
|
2118
|
+
width: 50%;
|
2119
|
+
}
|
2120
|
+
.col-lg-5 {
|
2121
|
+
width: 41.66666667%;
|
2122
|
+
}
|
2123
|
+
.col-lg-4 {
|
2124
|
+
width: 33.33333333%;
|
2125
|
+
}
|
2126
|
+
.col-lg-3 {
|
2127
|
+
width: 25%;
|
2128
|
+
}
|
2129
|
+
.col-lg-2 {
|
2130
|
+
width: 16.66666667%;
|
2131
|
+
}
|
2132
|
+
.col-lg-1 {
|
2133
|
+
width: 8.33333333%;
|
2134
|
+
}
|
2135
|
+
.col-lg-pull-12 {
|
2136
|
+
right: 100%;
|
2137
|
+
}
|
2138
|
+
.col-lg-pull-11 {
|
2139
|
+
right: 91.66666667%;
|
2140
|
+
}
|
2141
|
+
.col-lg-pull-10 {
|
2142
|
+
right: 83.33333333%;
|
2143
|
+
}
|
2144
|
+
.col-lg-pull-9 {
|
2145
|
+
right: 75%;
|
2146
|
+
}
|
2147
|
+
.col-lg-pull-8 {
|
2148
|
+
right: 66.66666667%;
|
2149
|
+
}
|
2150
|
+
.col-lg-pull-7 {
|
2151
|
+
right: 58.33333333%;
|
2152
|
+
}
|
2153
|
+
.col-lg-pull-6 {
|
2154
|
+
right: 50%;
|
2155
|
+
}
|
2156
|
+
.col-lg-pull-5 {
|
2157
|
+
right: 41.66666667%;
|
2158
|
+
}
|
2159
|
+
.col-lg-pull-4 {
|
2160
|
+
right: 33.33333333%;
|
2161
|
+
}
|
2162
|
+
.col-lg-pull-3 {
|
2163
|
+
right: 25%;
|
2164
|
+
}
|
2165
|
+
.col-lg-pull-2 {
|
2166
|
+
right: 16.66666667%;
|
2167
|
+
}
|
2168
|
+
.col-lg-pull-1 {
|
2169
|
+
right: 8.33333333%;
|
2170
|
+
}
|
2171
|
+
.col-lg-pull-0 {
|
2172
|
+
right: auto;
|
2173
|
+
}
|
2174
|
+
.col-lg-push-12 {
|
2175
|
+
left: 100%;
|
2176
|
+
}
|
2177
|
+
.col-lg-push-11 {
|
2178
|
+
left: 91.66666667%;
|
2179
|
+
}
|
2180
|
+
.col-lg-push-10 {
|
2181
|
+
left: 83.33333333%;
|
2182
|
+
}
|
2183
|
+
.col-lg-push-9 {
|
2184
|
+
left: 75%;
|
2185
|
+
}
|
2186
|
+
.col-lg-push-8 {
|
2187
|
+
left: 66.66666667%;
|
2188
|
+
}
|
2189
|
+
.col-lg-push-7 {
|
2190
|
+
left: 58.33333333%;
|
2191
|
+
}
|
2192
|
+
.col-lg-push-6 {
|
2193
|
+
left: 50%;
|
2194
|
+
}
|
2195
|
+
.col-lg-push-5 {
|
2196
|
+
left: 41.66666667%;
|
2197
|
+
}
|
2198
|
+
.col-lg-push-4 {
|
2199
|
+
left: 33.33333333%;
|
2200
|
+
}
|
2201
|
+
.col-lg-push-3 {
|
2202
|
+
left: 25%;
|
2203
|
+
}
|
2204
|
+
.col-lg-push-2 {
|
2205
|
+
left: 16.66666667%;
|
2206
|
+
}
|
2207
|
+
.col-lg-push-1 {
|
2208
|
+
left: 8.33333333%;
|
2209
|
+
}
|
2210
|
+
.col-lg-push-0 {
|
2211
|
+
left: auto;
|
2212
|
+
}
|
2213
|
+
.col-lg-offset-12 {
|
2214
|
+
margin-left: 100%;
|
2215
|
+
}
|
2216
|
+
.col-lg-offset-11 {
|
2217
|
+
margin-left: 91.66666667%;
|
2218
|
+
}
|
2219
|
+
.col-lg-offset-10 {
|
2220
|
+
margin-left: 83.33333333%;
|
2221
|
+
}
|
2222
|
+
.col-lg-offset-9 {
|
2223
|
+
margin-left: 75%;
|
2224
|
+
}
|
2225
|
+
.col-lg-offset-8 {
|
2226
|
+
margin-left: 66.66666667%;
|
2227
|
+
}
|
2228
|
+
.col-lg-offset-7 {
|
2229
|
+
margin-left: 58.33333333%;
|
2230
|
+
}
|
2231
|
+
.col-lg-offset-6 {
|
2232
|
+
margin-left: 50%;
|
2233
|
+
}
|
2234
|
+
.col-lg-offset-5 {
|
2235
|
+
margin-left: 41.66666667%;
|
2236
|
+
}
|
2237
|
+
.col-lg-offset-4 {
|
2238
|
+
margin-left: 33.33333333%;
|
2239
|
+
}
|
2240
|
+
.col-lg-offset-3 {
|
2241
|
+
margin-left: 25%;
|
2242
|
+
}
|
2243
|
+
.col-lg-offset-2 {
|
2244
|
+
margin-left: 16.66666667%;
|
2245
|
+
}
|
2246
|
+
.col-lg-offset-1 {
|
2247
|
+
margin-left: 8.33333333%;
|
2248
|
+
}
|
2249
|
+
.col-lg-offset-0 {
|
2250
|
+
margin-left: 0%;
|
2251
|
+
}
|
2252
|
+
}
|
2253
|
+
table {
|
2254
|
+
background-color: transparent;
|
2255
|
+
}
|
2256
|
+
caption {
|
2257
|
+
padding-top: 8px;
|
2258
|
+
padding-bottom: 8px;
|
2259
|
+
color: #777777;
|
2260
|
+
text-align: left;
|
2261
|
+
}
|
2262
|
+
th {
|
2263
|
+
text-align: left;
|
2264
|
+
}
|
2265
|
+
.table {
|
2266
|
+
width: 100%;
|
2267
|
+
max-width: 100%;
|
2268
|
+
margin-bottom: 24px;
|
2269
|
+
}
|
2270
|
+
.table > thead > tr > th,
|
2271
|
+
.table > tbody > tr > th,
|
2272
|
+
.table > tfoot > tr > th,
|
2273
|
+
.table > thead > tr > td,
|
2274
|
+
.table > tbody > tr > td,
|
2275
|
+
.table > tfoot > tr > td {
|
2276
|
+
padding: 8px;
|
2277
|
+
line-height: 1.5;
|
2278
|
+
vertical-align: top;
|
2279
|
+
border-top: 1px solid #dddddd;
|
2280
|
+
}
|
2281
|
+
.table > thead > tr > th {
|
2282
|
+
vertical-align: bottom;
|
2283
|
+
border-bottom: 2px solid #dddddd;
|
2284
|
+
}
|
2285
|
+
.table > caption + thead > tr:first-child > th,
|
2286
|
+
.table > colgroup + thead > tr:first-child > th,
|
2287
|
+
.table > thead:first-child > tr:first-child > th,
|
2288
|
+
.table > caption + thead > tr:first-child > td,
|
2289
|
+
.table > colgroup + thead > tr:first-child > td,
|
2290
|
+
.table > thead:first-child > tr:first-child > td {
|
2291
|
+
border-top: 0;
|
2292
|
+
}
|
2293
|
+
.table > tbody + tbody {
|
2294
|
+
border-top: 2px solid #dddddd;
|
2295
|
+
}
|
2296
|
+
.table .table {
|
2297
|
+
background-color: #ffffff;
|
2298
|
+
}
|
2299
|
+
.table-condensed > thead > tr > th,
|
2300
|
+
.table-condensed > tbody > tr > th,
|
2301
|
+
.table-condensed > tfoot > tr > th,
|
2302
|
+
.table-condensed > thead > tr > td,
|
2303
|
+
.table-condensed > tbody > tr > td,
|
2304
|
+
.table-condensed > tfoot > tr > td {
|
2305
|
+
padding: 5px;
|
2306
|
+
}
|
2307
|
+
.table-bordered {
|
2308
|
+
border: 1px solid #dddddd;
|
2309
|
+
}
|
2310
|
+
.table-bordered > thead > tr > th,
|
2311
|
+
.table-bordered > tbody > tr > th,
|
2312
|
+
.table-bordered > tfoot > tr > th,
|
2313
|
+
.table-bordered > thead > tr > td,
|
2314
|
+
.table-bordered > tbody > tr > td,
|
2315
|
+
.table-bordered > tfoot > tr > td {
|
2316
|
+
border: 1px solid #dddddd;
|
2317
|
+
}
|
2318
|
+
.table-bordered > thead > tr > th,
|
2319
|
+
.table-bordered > thead > tr > td {
|
2320
|
+
border-bottom-width: 2px;
|
2321
|
+
}
|
2322
|
+
.table-striped > tbody > tr:nth-of-type(odd) {
|
2323
|
+
background-color: #f9f9f9;
|
2324
|
+
}
|
2325
|
+
.table-hover > tbody > tr:hover {
|
2326
|
+
background-color: #f5f5f5;
|
2327
|
+
}
|
2328
|
+
table col[class*="col-"] {
|
2329
|
+
position: static;
|
2330
|
+
float: none;
|
2331
|
+
display: table-column;
|
2332
|
+
}
|
2333
|
+
table td[class*="col-"],
|
2334
|
+
table th[class*="col-"] {
|
2335
|
+
position: static;
|
2336
|
+
float: none;
|
2337
|
+
display: table-cell;
|
2338
|
+
}
|
2339
|
+
.table > thead > tr > td.active,
|
2340
|
+
.table > tbody > tr > td.active,
|
2341
|
+
.table > tfoot > tr > td.active,
|
2342
|
+
.table > thead > tr > th.active,
|
2343
|
+
.table > tbody > tr > th.active,
|
2344
|
+
.table > tfoot > tr > th.active,
|
2345
|
+
.table > thead > tr.active > td,
|
2346
|
+
.table > tbody > tr.active > td,
|
2347
|
+
.table > tfoot > tr.active > td,
|
2348
|
+
.table > thead > tr.active > th,
|
2349
|
+
.table > tbody > tr.active > th,
|
2350
|
+
.table > tfoot > tr.active > th {
|
2351
|
+
background-color: #f5f5f5;
|
2352
|
+
}
|
2353
|
+
.table-hover > tbody > tr > td.active:hover,
|
2354
|
+
.table-hover > tbody > tr > th.active:hover,
|
2355
|
+
.table-hover > tbody > tr.active:hover > td,
|
2356
|
+
.table-hover > tbody > tr:hover > .active,
|
2357
|
+
.table-hover > tbody > tr.active:hover > th {
|
2358
|
+
background-color: #e8e8e8;
|
2359
|
+
}
|
2360
|
+
.table > thead > tr > td.success,
|
2361
|
+
.table > tbody > tr > td.success,
|
2362
|
+
.table > tfoot > tr > td.success,
|
2363
|
+
.table > thead > tr > th.success,
|
2364
|
+
.table > tbody > tr > th.success,
|
2365
|
+
.table > tfoot > tr > th.success,
|
2366
|
+
.table > thead > tr.success > td,
|
2367
|
+
.table > tbody > tr.success > td,
|
2368
|
+
.table > tfoot > tr.success > td,
|
2369
|
+
.table > thead > tr.success > th,
|
2370
|
+
.table > tbody > tr.success > th,
|
2371
|
+
.table > tfoot > tr.success > th {
|
2372
|
+
background-color: #dff0d8;
|
2373
|
+
}
|
2374
|
+
.table-hover > tbody > tr > td.success:hover,
|
2375
|
+
.table-hover > tbody > tr > th.success:hover,
|
2376
|
+
.table-hover > tbody > tr.success:hover > td,
|
2377
|
+
.table-hover > tbody > tr:hover > .success,
|
2378
|
+
.table-hover > tbody > tr.success:hover > th {
|
2379
|
+
background-color: #d0e9c6;
|
2380
|
+
}
|
2381
|
+
.table > thead > tr > td.info,
|
2382
|
+
.table > tbody > tr > td.info,
|
2383
|
+
.table > tfoot > tr > td.info,
|
2384
|
+
.table > thead > tr > th.info,
|
2385
|
+
.table > tbody > tr > th.info,
|
2386
|
+
.table > tfoot > tr > th.info,
|
2387
|
+
.table > thead > tr.info > td,
|
2388
|
+
.table > tbody > tr.info > td,
|
2389
|
+
.table > tfoot > tr.info > td,
|
2390
|
+
.table > thead > tr.info > th,
|
2391
|
+
.table > tbody > tr.info > th,
|
2392
|
+
.table > tfoot > tr.info > th {
|
2393
|
+
background-color: #d9edf7;
|
2394
|
+
}
|
2395
|
+
.table-hover > tbody > tr > td.info:hover,
|
2396
|
+
.table-hover > tbody > tr > th.info:hover,
|
2397
|
+
.table-hover > tbody > tr.info:hover > td,
|
2398
|
+
.table-hover > tbody > tr:hover > .info,
|
2399
|
+
.table-hover > tbody > tr.info:hover > th {
|
2400
|
+
background-color: #c4e3f3;
|
2401
|
+
}
|
2402
|
+
.table > thead > tr > td.warning,
|
2403
|
+
.table > tbody > tr > td.warning,
|
2404
|
+
.table > tfoot > tr > td.warning,
|
2405
|
+
.table > thead > tr > th.warning,
|
2406
|
+
.table > tbody > tr > th.warning,
|
2407
|
+
.table > tfoot > tr > th.warning,
|
2408
|
+
.table > thead > tr.warning > td,
|
2409
|
+
.table > tbody > tr.warning > td,
|
2410
|
+
.table > tfoot > tr.warning > td,
|
2411
|
+
.table > thead > tr.warning > th,
|
2412
|
+
.table > tbody > tr.warning > th,
|
2413
|
+
.table > tfoot > tr.warning > th {
|
2414
|
+
background-color: #fcf8e3;
|
2415
|
+
}
|
2416
|
+
.table-hover > tbody > tr > td.warning:hover,
|
2417
|
+
.table-hover > tbody > tr > th.warning:hover,
|
2418
|
+
.table-hover > tbody > tr.warning:hover > td,
|
2419
|
+
.table-hover > tbody > tr:hover > .warning,
|
2420
|
+
.table-hover > tbody > tr.warning:hover > th {
|
2421
|
+
background-color: #faf2cc;
|
2422
|
+
}
|
2423
|
+
.table > thead > tr > td.danger,
|
2424
|
+
.table > tbody > tr > td.danger,
|
2425
|
+
.table > tfoot > tr > td.danger,
|
2426
|
+
.table > thead > tr > th.danger,
|
2427
|
+
.table > tbody > tr > th.danger,
|
2428
|
+
.table > tfoot > tr > th.danger,
|
2429
|
+
.table > thead > tr.danger > td,
|
2430
|
+
.table > tbody > tr.danger > td,
|
2431
|
+
.table > tfoot > tr.danger > td,
|
2432
|
+
.table > thead > tr.danger > th,
|
2433
|
+
.table > tbody > tr.danger > th,
|
2434
|
+
.table > tfoot > tr.danger > th {
|
2435
|
+
background-color: #f2dede;
|
2436
|
+
}
|
2437
|
+
.table-hover > tbody > tr > td.danger:hover,
|
2438
|
+
.table-hover > tbody > tr > th.danger:hover,
|
2439
|
+
.table-hover > tbody > tr.danger:hover > td,
|
2440
|
+
.table-hover > tbody > tr:hover > .danger,
|
2441
|
+
.table-hover > tbody > tr.danger:hover > th {
|
2442
|
+
background-color: #ebcccc;
|
2443
|
+
}
|
2444
|
+
.table-responsive {
|
2445
|
+
overflow-x: auto;
|
2446
|
+
min-height: 0.01%;
|
2447
|
+
}
|
2448
|
+
@media screen and (max-width: 767px) {
|
2449
|
+
.table-responsive {
|
2450
|
+
width: 100%;
|
2451
|
+
margin-bottom: 18px;
|
2452
|
+
overflow-y: hidden;
|
2453
|
+
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2454
|
+
border: 1px solid #dddddd;
|
2455
|
+
}
|
2456
|
+
.table-responsive > .table {
|
2457
|
+
margin-bottom: 0;
|
2458
|
+
}
|
2459
|
+
.table-responsive > .table > thead > tr > th,
|
2460
|
+
.table-responsive > .table > tbody > tr > th,
|
2461
|
+
.table-responsive > .table > tfoot > tr > th,
|
2462
|
+
.table-responsive > .table > thead > tr > td,
|
2463
|
+
.table-responsive > .table > tbody > tr > td,
|
2464
|
+
.table-responsive > .table > tfoot > tr > td {
|
2465
|
+
white-space: nowrap;
|
2466
|
+
}
|
2467
|
+
.table-responsive > .table-bordered {
|
2468
|
+
border: 0;
|
2469
|
+
}
|
2470
|
+
.table-responsive > .table-bordered > thead > tr > th:first-child,
|
2471
|
+
.table-responsive > .table-bordered > tbody > tr > th:first-child,
|
2472
|
+
.table-responsive > .table-bordered > tfoot > tr > th:first-child,
|
2473
|
+
.table-responsive > .table-bordered > thead > tr > td:first-child,
|
2474
|
+
.table-responsive > .table-bordered > tbody > tr > td:first-child,
|
2475
|
+
.table-responsive > .table-bordered > tfoot > tr > td:first-child {
|
2476
|
+
border-left: 0;
|
2477
|
+
}
|
2478
|
+
.table-responsive > .table-bordered > thead > tr > th:last-child,
|
2479
|
+
.table-responsive > .table-bordered > tbody > tr > th:last-child,
|
2480
|
+
.table-responsive > .table-bordered > tfoot > tr > th:last-child,
|
2481
|
+
.table-responsive > .table-bordered > thead > tr > td:last-child,
|
2482
|
+
.table-responsive > .table-bordered > tbody > tr > td:last-child,
|
2483
|
+
.table-responsive > .table-bordered > tfoot > tr > td:last-child {
|
2484
|
+
border-right: 0;
|
2485
|
+
}
|
2486
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > th,
|
2487
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > th,
|
2488
|
+
.table-responsive > .table-bordered > tbody > tr:last-child > td,
|
2489
|
+
.table-responsive > .table-bordered > tfoot > tr:last-child > td {
|
2490
|
+
border-bottom: 0;
|
2491
|
+
}
|
2492
|
+
}
|
2493
|
+
.btn {
|
2494
|
+
display: inline-block;
|
2495
|
+
margin-bottom: 0;
|
2496
|
+
font-weight: normal;
|
2497
|
+
text-align: center;
|
2498
|
+
vertical-align: middle;
|
2499
|
+
-ms-touch-action: manipulation;
|
2500
|
+
touch-action: manipulation;
|
2501
|
+
cursor: pointer;
|
2502
|
+
background-image: none;
|
2503
|
+
border: 1px solid transparent;
|
2504
|
+
white-space: nowrap;
|
2505
|
+
padding: 6px 12px;
|
2506
|
+
font-size: 16px;
|
2507
|
+
line-height: 1.5;
|
2508
|
+
border-radius: 0px;
|
2509
|
+
-webkit-user-select: none;
|
2510
|
+
-moz-user-select: none;
|
2511
|
+
-ms-user-select: none;
|
2512
|
+
user-select: none;
|
2513
|
+
}
|
2514
|
+
.btn:focus,
|
2515
|
+
.btn:active:focus,
|
2516
|
+
.btn.active:focus,
|
2517
|
+
.btn.focus,
|
2518
|
+
.btn:active.focus,
|
2519
|
+
.btn.active.focus {
|
2520
|
+
outline: 5px auto -webkit-focus-ring-color;
|
2521
|
+
outline-offset: -2px;
|
2522
|
+
}
|
2523
|
+
.btn:hover,
|
2524
|
+
.btn:focus,
|
2525
|
+
.btn.focus {
|
2526
|
+
color: #333333;
|
2527
|
+
text-decoration: none;
|
2528
|
+
}
|
2529
|
+
.btn:active,
|
2530
|
+
.btn.active {
|
2531
|
+
outline: 0;
|
2532
|
+
background-image: none;
|
2533
|
+
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2534
|
+
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
2535
|
+
}
|
2536
|
+
.btn.disabled,
|
2537
|
+
.btn[disabled],
|
2538
|
+
fieldset[disabled] .btn {
|
2539
|
+
cursor: not-allowed;
|
2540
|
+
opacity: 0.65;
|
2541
|
+
filter: alpha(opacity=65);
|
2542
|
+
-webkit-box-shadow: none;
|
2543
|
+
box-shadow: none;
|
2544
|
+
}
|
2545
|
+
a.btn.disabled,
|
2546
|
+
fieldset[disabled] a.btn {
|
2547
|
+
pointer-events: none;
|
2548
|
+
}
|
2549
|
+
.btn-default {
|
2550
|
+
color: #333333;
|
2551
|
+
background-color: #ffffff;
|
2552
|
+
border-color: #cccccc;
|
2553
|
+
}
|
2554
|
+
.btn-default:focus,
|
2555
|
+
.btn-default.focus {
|
2556
|
+
color: #333333;
|
2557
|
+
background-color: #e6e6e6;
|
2558
|
+
border-color: #8c8c8c;
|
2559
|
+
}
|
2560
|
+
.btn-default:hover {
|
2561
|
+
color: #333333;
|
2562
|
+
background-color: #e6e6e6;
|
2563
|
+
border-color: #adadad;
|
2564
|
+
}
|
2565
|
+
.btn-default:active,
|
2566
|
+
.btn-default.active,
|
2567
|
+
.open > .dropdown-toggle.btn-default {
|
2568
|
+
color: #333333;
|
2569
|
+
background-color: #e6e6e6;
|
2570
|
+
border-color: #adadad;
|
2571
|
+
}
|
2572
|
+
.btn-default:active:hover,
|
2573
|
+
.btn-default.active:hover,
|
2574
|
+
.open > .dropdown-toggle.btn-default:hover,
|
2575
|
+
.btn-default:active:focus,
|
2576
|
+
.btn-default.active:focus,
|
2577
|
+
.open > .dropdown-toggle.btn-default:focus,
|
2578
|
+
.btn-default:active.focus,
|
2579
|
+
.btn-default.active.focus,
|
2580
|
+
.open > .dropdown-toggle.btn-default.focus {
|
2581
|
+
color: #333333;
|
2582
|
+
background-color: #d4d4d4;
|
2583
|
+
border-color: #8c8c8c;
|
2584
|
+
}
|
2585
|
+
.btn-default:active,
|
2586
|
+
.btn-default.active,
|
2587
|
+
.open > .dropdown-toggle.btn-default {
|
2588
|
+
background-image: none;
|
2589
|
+
}
|
2590
|
+
.btn-default.disabled:hover,
|
2591
|
+
.btn-default[disabled]:hover,
|
2592
|
+
fieldset[disabled] .btn-default:hover,
|
2593
|
+
.btn-default.disabled:focus,
|
2594
|
+
.btn-default[disabled]:focus,
|
2595
|
+
fieldset[disabled] .btn-default:focus,
|
2596
|
+
.btn-default.disabled.focus,
|
2597
|
+
.btn-default[disabled].focus,
|
2598
|
+
fieldset[disabled] .btn-default.focus {
|
2599
|
+
background-color: #ffffff;
|
2600
|
+
border-color: #cccccc;
|
2601
|
+
}
|
2602
|
+
.btn-default .badge {
|
2603
|
+
color: #ffffff;
|
2604
|
+
background-color: #333333;
|
2605
|
+
}
|
2606
|
+
.btn-primary {
|
2607
|
+
color: #ffffff;
|
2608
|
+
background-color: #337ab7;
|
2609
|
+
border-color: #2e6da4;
|
2610
|
+
}
|
2611
|
+
.btn-primary:focus,
|
2612
|
+
.btn-primary.focus {
|
2613
|
+
color: #ffffff;
|
2614
|
+
background-color: #286090;
|
2615
|
+
border-color: #122b40;
|
2616
|
+
}
|
2617
|
+
.btn-primary:hover {
|
2618
|
+
color: #ffffff;
|
2619
|
+
background-color: #286090;
|
2620
|
+
border-color: #204d74;
|
2621
|
+
}
|
2622
|
+
.btn-primary:active,
|
2623
|
+
.btn-primary.active,
|
2624
|
+
.open > .dropdown-toggle.btn-primary {
|
2625
|
+
color: #ffffff;
|
2626
|
+
background-color: #286090;
|
2627
|
+
border-color: #204d74;
|
2628
|
+
}
|
2629
|
+
.btn-primary:active:hover,
|
2630
|
+
.btn-primary.active:hover,
|
2631
|
+
.open > .dropdown-toggle.btn-primary:hover,
|
2632
|
+
.btn-primary:active:focus,
|
2633
|
+
.btn-primary.active:focus,
|
2634
|
+
.open > .dropdown-toggle.btn-primary:focus,
|
2635
|
+
.btn-primary:active.focus,
|
2636
|
+
.btn-primary.active.focus,
|
2637
|
+
.open > .dropdown-toggle.btn-primary.focus {
|
2638
|
+
color: #ffffff;
|
2639
|
+
background-color: #204d74;
|
2640
|
+
border-color: #122b40;
|
2641
|
+
}
|
2642
|
+
.btn-primary:active,
|
2643
|
+
.btn-primary.active,
|
2644
|
+
.open > .dropdown-toggle.btn-primary {
|
2645
|
+
background-image: none;
|
2646
|
+
}
|
2647
|
+
.btn-primary.disabled:hover,
|
2648
|
+
.btn-primary[disabled]:hover,
|
2649
|
+
fieldset[disabled] .btn-primary:hover,
|
2650
|
+
.btn-primary.disabled:focus,
|
2651
|
+
.btn-primary[disabled]:focus,
|
2652
|
+
fieldset[disabled] .btn-primary:focus,
|
2653
|
+
.btn-primary.disabled.focus,
|
2654
|
+
.btn-primary[disabled].focus,
|
2655
|
+
fieldset[disabled] .btn-primary.focus {
|
2656
|
+
background-color: #337ab7;
|
2657
|
+
border-color: #2e6da4;
|
2658
|
+
}
|
2659
|
+
.btn-primary .badge {
|
2660
|
+
color: #337ab7;
|
2661
|
+
background-color: #ffffff;
|
2662
|
+
}
|
2663
|
+
.btn-success {
|
2664
|
+
color: #ffffff;
|
2665
|
+
background-color: #5cb85c;
|
2666
|
+
border-color: #4cae4c;
|
2667
|
+
}
|
2668
|
+
.btn-success:focus,
|
2669
|
+
.btn-success.focus {
|
2670
|
+
color: #ffffff;
|
2671
|
+
background-color: #449d44;
|
2672
|
+
border-color: #255625;
|
2673
|
+
}
|
2674
|
+
.btn-success:hover {
|
2675
|
+
color: #ffffff;
|
2676
|
+
background-color: #449d44;
|
2677
|
+
border-color: #398439;
|
2678
|
+
}
|
2679
|
+
.btn-success:active,
|
2680
|
+
.btn-success.active,
|
2681
|
+
.open > .dropdown-toggle.btn-success {
|
2682
|
+
color: #ffffff;
|
2683
|
+
background-color: #449d44;
|
2684
|
+
border-color: #398439;
|
2685
|
+
}
|
2686
|
+
.btn-success:active:hover,
|
2687
|
+
.btn-success.active:hover,
|
2688
|
+
.open > .dropdown-toggle.btn-success:hover,
|
2689
|
+
.btn-success:active:focus,
|
2690
|
+
.btn-success.active:focus,
|
2691
|
+
.open > .dropdown-toggle.btn-success:focus,
|
2692
|
+
.btn-success:active.focus,
|
2693
|
+
.btn-success.active.focus,
|
2694
|
+
.open > .dropdown-toggle.btn-success.focus {
|
2695
|
+
color: #ffffff;
|
2696
|
+
background-color: #398439;
|
2697
|
+
border-color: #255625;
|
2698
|
+
}
|
2699
|
+
.btn-success:active,
|
2700
|
+
.btn-success.active,
|
2701
|
+
.open > .dropdown-toggle.btn-success {
|
2702
|
+
background-image: none;
|
2703
|
+
}
|
2704
|
+
.btn-success.disabled:hover,
|
2705
|
+
.btn-success[disabled]:hover,
|
2706
|
+
fieldset[disabled] .btn-success:hover,
|
2707
|
+
.btn-success.disabled:focus,
|
2708
|
+
.btn-success[disabled]:focus,
|
2709
|
+
fieldset[disabled] .btn-success:focus,
|
2710
|
+
.btn-success.disabled.focus,
|
2711
|
+
.btn-success[disabled].focus,
|
2712
|
+
fieldset[disabled] .btn-success.focus {
|
2713
|
+
background-color: #5cb85c;
|
2714
|
+
border-color: #4cae4c;
|
2715
|
+
}
|
2716
|
+
.btn-success .badge {
|
2717
|
+
color: #5cb85c;
|
2718
|
+
background-color: #ffffff;
|
2719
|
+
}
|
2720
|
+
.btn-info {
|
2721
|
+
color: #ffffff;
|
2722
|
+
background-color: #5bc0de;
|
2723
|
+
border-color: #46b8da;
|
2724
|
+
}
|
2725
|
+
.btn-info:focus,
|
2726
|
+
.btn-info.focus {
|
2727
|
+
color: #ffffff;
|
2728
|
+
background-color: #31b0d5;
|
2729
|
+
border-color: #1b6d85;
|
2730
|
+
}
|
2731
|
+
.btn-info:hover {
|
2732
|
+
color: #ffffff;
|
2733
|
+
background-color: #31b0d5;
|
2734
|
+
border-color: #269abc;
|
2735
|
+
}
|
2736
|
+
.btn-info:active,
|
2737
|
+
.btn-info.active,
|
2738
|
+
.open > .dropdown-toggle.btn-info {
|
2739
|
+
color: #ffffff;
|
2740
|
+
background-color: #31b0d5;
|
2741
|
+
border-color: #269abc;
|
2742
|
+
}
|
2743
|
+
.btn-info:active:hover,
|
2744
|
+
.btn-info.active:hover,
|
2745
|
+
.open > .dropdown-toggle.btn-info:hover,
|
2746
|
+
.btn-info:active:focus,
|
2747
|
+
.btn-info.active:focus,
|
2748
|
+
.open > .dropdown-toggle.btn-info:focus,
|
2749
|
+
.btn-info:active.focus,
|
2750
|
+
.btn-info.active.focus,
|
2751
|
+
.open > .dropdown-toggle.btn-info.focus {
|
2752
|
+
color: #ffffff;
|
2753
|
+
background-color: #269abc;
|
2754
|
+
border-color: #1b6d85;
|
2755
|
+
}
|
2756
|
+
.btn-info:active,
|
2757
|
+
.btn-info.active,
|
2758
|
+
.open > .dropdown-toggle.btn-info {
|
2759
|
+
background-image: none;
|
2760
|
+
}
|
2761
|
+
.btn-info.disabled:hover,
|
2762
|
+
.btn-info[disabled]:hover,
|
2763
|
+
fieldset[disabled] .btn-info:hover,
|
2764
|
+
.btn-info.disabled:focus,
|
2765
|
+
.btn-info[disabled]:focus,
|
2766
|
+
fieldset[disabled] .btn-info:focus,
|
2767
|
+
.btn-info.disabled.focus,
|
2768
|
+
.btn-info[disabled].focus,
|
2769
|
+
fieldset[disabled] .btn-info.focus {
|
2770
|
+
background-color: #5bc0de;
|
2771
|
+
border-color: #46b8da;
|
2772
|
+
}
|
2773
|
+
.btn-info .badge {
|
2774
|
+
color: #5bc0de;
|
2775
|
+
background-color: #ffffff;
|
2776
|
+
}
|
2777
|
+
.btn-warning {
|
2778
|
+
color: #ffffff;
|
2779
|
+
background-color: #f0ad4e;
|
2780
|
+
border-color: #eea236;
|
2781
|
+
}
|
2782
|
+
.btn-warning:focus,
|
2783
|
+
.btn-warning.focus {
|
2784
|
+
color: #ffffff;
|
2785
|
+
background-color: #ec971f;
|
2786
|
+
border-color: #985f0d;
|
2787
|
+
}
|
2788
|
+
.btn-warning:hover {
|
2789
|
+
color: #ffffff;
|
2790
|
+
background-color: #ec971f;
|
2791
|
+
border-color: #d58512;
|
2792
|
+
}
|
2793
|
+
.btn-warning:active,
|
2794
|
+
.btn-warning.active,
|
2795
|
+
.open > .dropdown-toggle.btn-warning {
|
2796
|
+
color: #ffffff;
|
2797
|
+
background-color: #ec971f;
|
2798
|
+
border-color: #d58512;
|
2799
|
+
}
|
2800
|
+
.btn-warning:active:hover,
|
2801
|
+
.btn-warning.active:hover,
|
2802
|
+
.open > .dropdown-toggle.btn-warning:hover,
|
2803
|
+
.btn-warning:active:focus,
|
2804
|
+
.btn-warning.active:focus,
|
2805
|
+
.open > .dropdown-toggle.btn-warning:focus,
|
2806
|
+
.btn-warning:active.focus,
|
2807
|
+
.btn-warning.active.focus,
|
2808
|
+
.open > .dropdown-toggle.btn-warning.focus {
|
2809
|
+
color: #ffffff;
|
2810
|
+
background-color: #d58512;
|
2811
|
+
border-color: #985f0d;
|
2812
|
+
}
|
2813
|
+
.btn-warning:active,
|
2814
|
+
.btn-warning.active,
|
2815
|
+
.open > .dropdown-toggle.btn-warning {
|
2816
|
+
background-image: none;
|
2817
|
+
}
|
2818
|
+
.btn-warning.disabled:hover,
|
2819
|
+
.btn-warning[disabled]:hover,
|
2820
|
+
fieldset[disabled] .btn-warning:hover,
|
2821
|
+
.btn-warning.disabled:focus,
|
2822
|
+
.btn-warning[disabled]:focus,
|
2823
|
+
fieldset[disabled] .btn-warning:focus,
|
2824
|
+
.btn-warning.disabled.focus,
|
2825
|
+
.btn-warning[disabled].focus,
|
2826
|
+
fieldset[disabled] .btn-warning.focus {
|
2827
|
+
background-color: #f0ad4e;
|
2828
|
+
border-color: #eea236;
|
2829
|
+
}
|
2830
|
+
.btn-warning .badge {
|
2831
|
+
color: #f0ad4e;
|
2832
|
+
background-color: #ffffff;
|
2833
|
+
}
|
2834
|
+
.btn-danger {
|
2835
|
+
color: #ffffff;
|
2836
|
+
background-color: #d9534f;
|
2837
|
+
border-color: #d43f3a;
|
2838
|
+
}
|
2839
|
+
.btn-danger:focus,
|
2840
|
+
.btn-danger.focus {
|
2841
|
+
color: #ffffff;
|
2842
|
+
background-color: #c9302c;
|
2843
|
+
border-color: #761c19;
|
2844
|
+
}
|
2845
|
+
.btn-danger:hover {
|
2846
|
+
color: #ffffff;
|
2847
|
+
background-color: #c9302c;
|
2848
|
+
border-color: #ac2925;
|
2849
|
+
}
|
2850
|
+
.btn-danger:active,
|
2851
|
+
.btn-danger.active,
|
2852
|
+
.open > .dropdown-toggle.btn-danger {
|
2853
|
+
color: #ffffff;
|
2854
|
+
background-color: #c9302c;
|
2855
|
+
border-color: #ac2925;
|
2856
|
+
}
|
2857
|
+
.btn-danger:active:hover,
|
2858
|
+
.btn-danger.active:hover,
|
2859
|
+
.open > .dropdown-toggle.btn-danger:hover,
|
2860
|
+
.btn-danger:active:focus,
|
2861
|
+
.btn-danger.active:focus,
|
2862
|
+
.open > .dropdown-toggle.btn-danger:focus,
|
2863
|
+
.btn-danger:active.focus,
|
2864
|
+
.btn-danger.active.focus,
|
2865
|
+
.open > .dropdown-toggle.btn-danger.focus {
|
2866
|
+
color: #ffffff;
|
2867
|
+
background-color: #ac2925;
|
2868
|
+
border-color: #761c19;
|
2869
|
+
}
|
2870
|
+
.btn-danger:active,
|
2871
|
+
.btn-danger.active,
|
2872
|
+
.open > .dropdown-toggle.btn-danger {
|
2873
|
+
background-image: none;
|
2874
|
+
}
|
2875
|
+
.btn-danger.disabled:hover,
|
2876
|
+
.btn-danger[disabled]:hover,
|
2877
|
+
fieldset[disabled] .btn-danger:hover,
|
2878
|
+
.btn-danger.disabled:focus,
|
2879
|
+
.btn-danger[disabled]:focus,
|
2880
|
+
fieldset[disabled] .btn-danger:focus,
|
2881
|
+
.btn-danger.disabled.focus,
|
2882
|
+
.btn-danger[disabled].focus,
|
2883
|
+
fieldset[disabled] .btn-danger.focus {
|
2884
|
+
background-color: #d9534f;
|
2885
|
+
border-color: #d43f3a;
|
2886
|
+
}
|
2887
|
+
.btn-danger .badge {
|
2888
|
+
color: #d9534f;
|
2889
|
+
background-color: #ffffff;
|
2890
|
+
}
|
2891
|
+
.btn-link {
|
2892
|
+
color: #337ab7;
|
2893
|
+
font-weight: normal;
|
2894
|
+
border-radius: 0;
|
2895
|
+
}
|
2896
|
+
.btn-link,
|
2897
|
+
.btn-link:active,
|
2898
|
+
.btn-link.active,
|
2899
|
+
.btn-link[disabled],
|
2900
|
+
fieldset[disabled] .btn-link {
|
2901
|
+
background-color: transparent;
|
2902
|
+
-webkit-box-shadow: none;
|
2903
|
+
box-shadow: none;
|
2904
|
+
}
|
2905
|
+
.btn-link,
|
2906
|
+
.btn-link:hover,
|
2907
|
+
.btn-link:focus,
|
2908
|
+
.btn-link:active {
|
2909
|
+
border-color: transparent;
|
2910
|
+
}
|
2911
|
+
.btn-link:hover,
|
2912
|
+
.btn-link:focus {
|
2913
|
+
color: #23527c;
|
2914
|
+
text-decoration: underline;
|
2915
|
+
background-color: transparent;
|
2916
|
+
}
|
2917
|
+
.btn-link[disabled]:hover,
|
2918
|
+
fieldset[disabled] .btn-link:hover,
|
2919
|
+
.btn-link[disabled]:focus,
|
2920
|
+
fieldset[disabled] .btn-link:focus {
|
2921
|
+
color: #777777;
|
2922
|
+
text-decoration: none;
|
2923
|
+
}
|
2924
|
+
.btn-lg {
|
2925
|
+
padding: 10px 16px;
|
2926
|
+
font-size: 20px;
|
2927
|
+
line-height: 1.3333333;
|
2928
|
+
border-radius: 0px;
|
2929
|
+
}
|
2930
|
+
.btn-sm {
|
2931
|
+
padding: 5px 10px;
|
2932
|
+
font-size: 14px;
|
2933
|
+
line-height: 1.5;
|
2934
|
+
border-radius: 0px;
|
2935
|
+
}
|
2936
|
+
.btn-xs {
|
2937
|
+
padding: 1px 5px;
|
2938
|
+
font-size: 14px;
|
2939
|
+
line-height: 1.5;
|
2940
|
+
border-radius: 0px;
|
2941
|
+
}
|
2942
|
+
.btn-block {
|
2943
|
+
display: block;
|
2944
|
+
width: 100%;
|
2945
|
+
}
|
2946
|
+
.btn-block + .btn-block {
|
2947
|
+
margin-top: 5px;
|
2948
|
+
}
|
2949
|
+
input[type="submit"].btn-block,
|
2950
|
+
input[type="reset"].btn-block,
|
2951
|
+
input[type="button"].btn-block {
|
2952
|
+
width: 100%;
|
2953
|
+
}
|
2954
|
+
.fade {
|
2955
|
+
opacity: 0;
|
2956
|
+
-webkit-transition: opacity 0.15s linear;
|
2957
|
+
-o-transition: opacity 0.15s linear;
|
2958
|
+
transition: opacity 0.15s linear;
|
2959
|
+
}
|
2960
|
+
.fade.in {
|
2961
|
+
opacity: 1;
|
2962
|
+
}
|
2963
|
+
.collapse {
|
2964
|
+
display: none;
|
2965
|
+
}
|
2966
|
+
.collapse.in {
|
2967
|
+
display: block;
|
2968
|
+
}
|
2969
|
+
tr.collapse.in {
|
2970
|
+
display: table-row;
|
2971
|
+
}
|
2972
|
+
tbody.collapse.in {
|
2973
|
+
display: table-row-group;
|
2974
|
+
}
|
2975
|
+
.collapsing {
|
2976
|
+
position: relative;
|
2977
|
+
height: 0;
|
2978
|
+
overflow: hidden;
|
2979
|
+
-webkit-transition-property: height, visibility;
|
2980
|
+
-o-transition-property: height, visibility;
|
2981
|
+
transition-property: height, visibility;
|
2982
|
+
-webkit-transition-duration: 0.35s;
|
2983
|
+
-o-transition-duration: 0.35s;
|
2984
|
+
transition-duration: 0.35s;
|
2985
|
+
-webkit-transition-timing-function: ease;
|
2986
|
+
-o-transition-timing-function: ease;
|
2987
|
+
transition-timing-function: ease;
|
2988
|
+
}
|
2989
|
+
.nav {
|
2990
|
+
margin-bottom: 0;
|
2991
|
+
padding-left: 0;
|
2992
|
+
list-style: none;
|
2993
|
+
}
|
2994
|
+
.nav > li {
|
2995
|
+
position: relative;
|
2996
|
+
display: block;
|
2997
|
+
}
|
2998
|
+
.nav > li > a {
|
2999
|
+
position: relative;
|
3000
|
+
display: block;
|
3001
|
+
padding: 10px 15px;
|
3002
|
+
}
|
3003
|
+
.nav > li > a:hover,
|
3004
|
+
.nav > li > a:focus {
|
3005
|
+
text-decoration: none;
|
3006
|
+
background-color: #eeeeee;
|
3007
|
+
}
|
3008
|
+
.nav > li.disabled > a {
|
3009
|
+
color: #777777;
|
3010
|
+
}
|
3011
|
+
.nav > li.disabled > a:hover,
|
3012
|
+
.nav > li.disabled > a:focus {
|
3013
|
+
color: #777777;
|
3014
|
+
text-decoration: none;
|
3015
|
+
background-color: transparent;
|
3016
|
+
cursor: not-allowed;
|
3017
|
+
}
|
3018
|
+
.nav .open > a,
|
3019
|
+
.nav .open > a:hover,
|
3020
|
+
.nav .open > a:focus {
|
3021
|
+
background-color: #eeeeee;
|
3022
|
+
border-color: #337ab7;
|
3023
|
+
}
|
3024
|
+
.nav .nav-divider {
|
3025
|
+
height: 1px;
|
3026
|
+
margin: 11px 0;
|
3027
|
+
overflow: hidden;
|
3028
|
+
background-color: #e5e5e5;
|
3029
|
+
}
|
3030
|
+
.nav > li > a > img {
|
3031
|
+
max-width: none;
|
3032
|
+
}
|
3033
|
+
.nav-tabs {
|
3034
|
+
border-bottom: 1px solid #dddddd;
|
3035
|
+
}
|
3036
|
+
.nav-tabs > li {
|
3037
|
+
float: left;
|
3038
|
+
margin-bottom: -1px;
|
3039
|
+
}
|
3040
|
+
.nav-tabs > li > a {
|
3041
|
+
margin-right: 2px;
|
3042
|
+
line-height: 1.5;
|
3043
|
+
border: 1px solid transparent;
|
3044
|
+
border-radius: 0px 0px 0 0;
|
3045
|
+
}
|
3046
|
+
.nav-tabs > li > a:hover {
|
3047
|
+
border-color: #eeeeee #eeeeee #dddddd;
|
3048
|
+
}
|
3049
|
+
.nav-tabs > li.active > a,
|
3050
|
+
.nav-tabs > li.active > a:hover,
|
3051
|
+
.nav-tabs > li.active > a:focus {
|
3052
|
+
color: #555555;
|
3053
|
+
background-color: #ffffff;
|
3054
|
+
border: 1px solid #dddddd;
|
3055
|
+
border-bottom-color: transparent;
|
3056
|
+
cursor: default;
|
3057
|
+
}
|
3058
|
+
.nav-tabs.nav-justified {
|
3059
|
+
width: 100%;
|
3060
|
+
border-bottom: 0;
|
3061
|
+
}
|
3062
|
+
.nav-tabs.nav-justified > li {
|
3063
|
+
float: none;
|
3064
|
+
}
|
3065
|
+
.nav-tabs.nav-justified > li > a {
|
3066
|
+
text-align: center;
|
3067
|
+
margin-bottom: 5px;
|
3068
|
+
}
|
3069
|
+
.nav-tabs.nav-justified > .dropdown .dropdown-menu {
|
3070
|
+
top: auto;
|
3071
|
+
left: auto;
|
3072
|
+
}
|
3073
|
+
@media (min-width: 768px) {
|
3074
|
+
.nav-tabs.nav-justified > li {
|
3075
|
+
display: table-cell;
|
3076
|
+
width: 1%;
|
3077
|
+
}
|
3078
|
+
.nav-tabs.nav-justified > li > a {
|
3079
|
+
margin-bottom: 0;
|
3080
|
+
}
|
3081
|
+
}
|
3082
|
+
.nav-tabs.nav-justified > li > a {
|
3083
|
+
margin-right: 0;
|
3084
|
+
border-radius: 0px;
|
3085
|
+
}
|
3086
|
+
.nav-tabs.nav-justified > .active > a,
|
3087
|
+
.nav-tabs.nav-justified > .active > a:hover,
|
3088
|
+
.nav-tabs.nav-justified > .active > a:focus {
|
3089
|
+
border: 1px solid #dddddd;
|
3090
|
+
}
|
3091
|
+
@media (min-width: 768px) {
|
3092
|
+
.nav-tabs.nav-justified > li > a {
|
3093
|
+
border-bottom: 1px solid #dddddd;
|
3094
|
+
border-radius: 0px 0px 0 0;
|
3095
|
+
}
|
3096
|
+
.nav-tabs.nav-justified > .active > a,
|
3097
|
+
.nav-tabs.nav-justified > .active > a:hover,
|
3098
|
+
.nav-tabs.nav-justified > .active > a:focus {
|
3099
|
+
border-bottom-color: #ffffff;
|
3100
|
+
}
|
3101
|
+
}
|
3102
|
+
.nav-pills > li {
|
3103
|
+
float: left;
|
3104
|
+
}
|
3105
|
+
.nav-pills > li > a {
|
3106
|
+
border-radius: 0px;
|
3107
|
+
}
|
3108
|
+
.nav-pills > li + li {
|
3109
|
+
margin-left: 2px;
|
3110
|
+
}
|
3111
|
+
.nav-pills > li.active > a,
|
3112
|
+
.nav-pills > li.active > a:hover,
|
3113
|
+
.nav-pills > li.active > a:focus {
|
3114
|
+
color: #ffffff;
|
3115
|
+
background-color: #337ab7;
|
3116
|
+
}
|
3117
|
+
.nav-stacked > li {
|
3118
|
+
float: none;
|
3119
|
+
}
|
3120
|
+
.nav-stacked > li + li {
|
3121
|
+
margin-top: 2px;
|
3122
|
+
margin-left: 0;
|
3123
|
+
}
|
3124
|
+
.nav-justified {
|
3125
|
+
width: 100%;
|
3126
|
+
}
|
3127
|
+
.nav-justified > li {
|
3128
|
+
float: none;
|
3129
|
+
}
|
3130
|
+
.nav-justified > li > a {
|
3131
|
+
text-align: center;
|
3132
|
+
margin-bottom: 5px;
|
3133
|
+
}
|
3134
|
+
.nav-justified > .dropdown .dropdown-menu {
|
3135
|
+
top: auto;
|
3136
|
+
left: auto;
|
3137
|
+
}
|
3138
|
+
@media (min-width: 768px) {
|
3139
|
+
.nav-justified > li {
|
3140
|
+
display: table-cell;
|
3141
|
+
width: 1%;
|
3142
|
+
}
|
3143
|
+
.nav-justified > li > a {
|
3144
|
+
margin-bottom: 0;
|
3145
|
+
}
|
3146
|
+
}
|
3147
|
+
.nav-tabs-justified {
|
3148
|
+
border-bottom: 0;
|
3149
|
+
}
|
3150
|
+
.nav-tabs-justified > li > a {
|
3151
|
+
margin-right: 0;
|
3152
|
+
border-radius: 0px;
|
3153
|
+
}
|
3154
|
+
.nav-tabs-justified > .active > a,
|
3155
|
+
.nav-tabs-justified > .active > a:hover,
|
3156
|
+
.nav-tabs-justified > .active > a:focus {
|
3157
|
+
border: 1px solid #dddddd;
|
3158
|
+
}
|
3159
|
+
@media (min-width: 768px) {
|
3160
|
+
.nav-tabs-justified > li > a {
|
3161
|
+
border-bottom: 1px solid #dddddd;
|
3162
|
+
border-radius: 0px 0px 0 0;
|
3163
|
+
}
|
3164
|
+
.nav-tabs-justified > .active > a,
|
3165
|
+
.nav-tabs-justified > .active > a:hover,
|
3166
|
+
.nav-tabs-justified > .active > a:focus {
|
3167
|
+
border-bottom-color: #ffffff;
|
3168
|
+
}
|
3169
|
+
}
|
3170
|
+
.tab-content > .tab-pane {
|
3171
|
+
display: none;
|
3172
|
+
}
|
3173
|
+
.tab-content > .active {
|
3174
|
+
display: block;
|
3175
|
+
}
|
3176
|
+
.nav-tabs .dropdown-menu {
|
3177
|
+
margin-top: -1px;
|
3178
|
+
border-top-right-radius: 0;
|
3179
|
+
border-top-left-radius: 0;
|
3180
|
+
}
|
3181
|
+
.clearfix:before,
|
3182
|
+
.clearfix:after,
|
3183
|
+
.dl-horizontal dd:before,
|
3184
|
+
.dl-horizontal dd:after,
|
3185
|
+
.container:before,
|
3186
|
+
.container:after,
|
3187
|
+
.container-fluid:before,
|
3188
|
+
.container-fluid:after,
|
3189
|
+
.row:before,
|
3190
|
+
.row:after,
|
3191
|
+
.nav:before,
|
3192
|
+
.nav:after {
|
3193
|
+
content: " ";
|
3194
|
+
display: table;
|
3195
|
+
}
|
3196
|
+
.clearfix:after,
|
3197
|
+
.dl-horizontal dd:after,
|
3198
|
+
.container:after,
|
3199
|
+
.container-fluid:after,
|
3200
|
+
.row:after,
|
3201
|
+
.nav:after {
|
3202
|
+
clear: both;
|
3203
|
+
}
|
3204
|
+
.center-block {
|
3205
|
+
display: block;
|
3206
|
+
margin-left: auto;
|
3207
|
+
margin-right: auto;
|
3208
|
+
}
|
3209
|
+
.pull-right {
|
3210
|
+
float: right !important;
|
3211
|
+
}
|
3212
|
+
.pull-left {
|
3213
|
+
float: left !important;
|
3214
|
+
}
|
3215
|
+
.hide {
|
3216
|
+
display: none !important;
|
3217
|
+
}
|
3218
|
+
.show {
|
3219
|
+
display: block !important;
|
3220
|
+
}
|
3221
|
+
.invisible {
|
3222
|
+
visibility: hidden;
|
3223
|
+
}
|
3224
|
+
.text-hide {
|
3225
|
+
font: 0/0 a;
|
3226
|
+
color: transparent;
|
3227
|
+
text-shadow: none;
|
3228
|
+
background-color: transparent;
|
3229
|
+
border: 0;
|
3230
|
+
}
|
3231
|
+
.hidden {
|
3232
|
+
display: none !important;
|
3233
|
+
}
|
3234
|
+
.affix {
|
3235
|
+
position: fixed;
|
3236
|
+
}
|
3237
|
+
@-ms-viewport {
|
3238
|
+
width: device-width;
|
3239
|
+
}
|
3240
|
+
.visible-xs,
|
3241
|
+
.visible-sm,
|
3242
|
+
.visible-md,
|
3243
|
+
.visible-lg {
|
3244
|
+
display: none !important;
|
3245
|
+
}
|
3246
|
+
.visible-xs-block,
|
3247
|
+
.visible-xs-inline,
|
3248
|
+
.visible-xs-inline-block,
|
3249
|
+
.visible-sm-block,
|
3250
|
+
.visible-sm-inline,
|
3251
|
+
.visible-sm-inline-block,
|
3252
|
+
.visible-md-block,
|
3253
|
+
.visible-md-inline,
|
3254
|
+
.visible-md-inline-block,
|
3255
|
+
.visible-lg-block,
|
3256
|
+
.visible-lg-inline,
|
3257
|
+
.visible-lg-inline-block {
|
3258
|
+
display: none !important;
|
3259
|
+
}
|
3260
|
+
@media (max-width: 767px) {
|
3261
|
+
.visible-xs {
|
3262
|
+
display: block !important;
|
3263
|
+
}
|
3264
|
+
table.visible-xs {
|
3265
|
+
display: table !important;
|
3266
|
+
}
|
3267
|
+
tr.visible-xs {
|
3268
|
+
display: table-row !important;
|
3269
|
+
}
|
3270
|
+
th.visible-xs,
|
3271
|
+
td.visible-xs {
|
3272
|
+
display: table-cell !important;
|
3273
|
+
}
|
3274
|
+
}
|
3275
|
+
@media (max-width: 767px) {
|
3276
|
+
.visible-xs-block {
|
3277
|
+
display: block !important;
|
3278
|
+
}
|
3279
|
+
}
|
3280
|
+
@media (max-width: 767px) {
|
3281
|
+
.visible-xs-inline {
|
3282
|
+
display: inline !important;
|
3283
|
+
}
|
3284
|
+
}
|
3285
|
+
@media (max-width: 767px) {
|
3286
|
+
.visible-xs-inline-block {
|
3287
|
+
display: inline-block !important;
|
3288
|
+
}
|
3289
|
+
}
|
3290
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
3291
|
+
.visible-sm {
|
3292
|
+
display: block !important;
|
3293
|
+
}
|
3294
|
+
table.visible-sm {
|
3295
|
+
display: table !important;
|
3296
|
+
}
|
3297
|
+
tr.visible-sm {
|
3298
|
+
display: table-row !important;
|
3299
|
+
}
|
3300
|
+
th.visible-sm,
|
3301
|
+
td.visible-sm {
|
3302
|
+
display: table-cell !important;
|
3303
|
+
}
|
3304
|
+
}
|
3305
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
3306
|
+
.visible-sm-block {
|
3307
|
+
display: block !important;
|
3308
|
+
}
|
3309
|
+
}
|
3310
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
3311
|
+
.visible-sm-inline {
|
3312
|
+
display: inline !important;
|
3313
|
+
}
|
3314
|
+
}
|
3315
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
3316
|
+
.visible-sm-inline-block {
|
3317
|
+
display: inline-block !important;
|
3318
|
+
}
|
3319
|
+
}
|
3320
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
3321
|
+
.visible-md {
|
3322
|
+
display: block !important;
|
3323
|
+
}
|
3324
|
+
table.visible-md {
|
3325
|
+
display: table !important;
|
3326
|
+
}
|
3327
|
+
tr.visible-md {
|
3328
|
+
display: table-row !important;
|
3329
|
+
}
|
3330
|
+
th.visible-md,
|
3331
|
+
td.visible-md {
|
3332
|
+
display: table-cell !important;
|
3333
|
+
}
|
3334
|
+
}
|
3335
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
3336
|
+
.visible-md-block {
|
3337
|
+
display: block !important;
|
3338
|
+
}
|
3339
|
+
}
|
3340
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
3341
|
+
.visible-md-inline {
|
3342
|
+
display: inline !important;
|
3343
|
+
}
|
3344
|
+
}
|
3345
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
3346
|
+
.visible-md-inline-block {
|
3347
|
+
display: inline-block !important;
|
3348
|
+
}
|
3349
|
+
}
|
3350
|
+
@media (min-width: 1200px) {
|
3351
|
+
.visible-lg {
|
3352
|
+
display: block !important;
|
3353
|
+
}
|
3354
|
+
table.visible-lg {
|
3355
|
+
display: table !important;
|
3356
|
+
}
|
3357
|
+
tr.visible-lg {
|
3358
|
+
display: table-row !important;
|
3359
|
+
}
|
3360
|
+
th.visible-lg,
|
3361
|
+
td.visible-lg {
|
3362
|
+
display: table-cell !important;
|
3363
|
+
}
|
3364
|
+
}
|
3365
|
+
@media (min-width: 1200px) {
|
3366
|
+
.visible-lg-block {
|
3367
|
+
display: block !important;
|
3368
|
+
}
|
3369
|
+
}
|
3370
|
+
@media (min-width: 1200px) {
|
3371
|
+
.visible-lg-inline {
|
3372
|
+
display: inline !important;
|
3373
|
+
}
|
3374
|
+
}
|
3375
|
+
@media (min-width: 1200px) {
|
3376
|
+
.visible-lg-inline-block {
|
3377
|
+
display: inline-block !important;
|
3378
|
+
}
|
3379
|
+
}
|
3380
|
+
@media (max-width: 767px) {
|
3381
|
+
.hidden-xs {
|
3382
|
+
display: none !important;
|
3383
|
+
}
|
3384
|
+
}
|
3385
|
+
@media (min-width: 768px) and (max-width: 991px) {
|
3386
|
+
.hidden-sm {
|
3387
|
+
display: none !important;
|
3388
|
+
}
|
3389
|
+
}
|
3390
|
+
@media (min-width: 992px) and (max-width: 1199px) {
|
3391
|
+
.hidden-md {
|
3392
|
+
display: none !important;
|
3393
|
+
}
|
3394
|
+
}
|
3395
|
+
@media (min-width: 1200px) {
|
3396
|
+
.hidden-lg {
|
3397
|
+
display: none !important;
|
3398
|
+
}
|
3399
|
+
}
|
3400
|
+
.visible-print {
|
3401
|
+
display: none !important;
|
3402
|
+
}
|
3403
|
+
@media print {
|
3404
|
+
.visible-print {
|
3405
|
+
display: block !important;
|
3406
|
+
}
|
3407
|
+
table.visible-print {
|
3408
|
+
display: table !important;
|
3409
|
+
}
|
3410
|
+
tr.visible-print {
|
3411
|
+
display: table-row !important;
|
3412
|
+
}
|
3413
|
+
th.visible-print,
|
3414
|
+
td.visible-print {
|
3415
|
+
display: table-cell !important;
|
3416
|
+
}
|
3417
|
+
}
|
3418
|
+
.visible-print-block {
|
3419
|
+
display: none !important;
|
3420
|
+
}
|
3421
|
+
@media print {
|
3422
|
+
.visible-print-block {
|
3423
|
+
display: block !important;
|
3424
|
+
}
|
3425
|
+
}
|
3426
|
+
.visible-print-inline {
|
3427
|
+
display: none !important;
|
3428
|
+
}
|
3429
|
+
@media print {
|
3430
|
+
.visible-print-inline {
|
3431
|
+
display: inline !important;
|
3432
|
+
}
|
3433
|
+
}
|
3434
|
+
.visible-print-inline-block {
|
3435
|
+
display: none !important;
|
3436
|
+
}
|
3437
|
+
@media print {
|
3438
|
+
.visible-print-inline-block {
|
3439
|
+
display: inline-block !important;
|
3440
|
+
}
|
3441
|
+
}
|
3442
|
+
@media print {
|
3443
|
+
.hidden-print {
|
3444
|
+
display: none !important;
|
3445
|
+
}
|
3446
|
+
}
|