rhodes 5.5.0.3 → 5.5.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +10 -0
  3. data/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/notification/NotificationSingleton.java +20 -8
  4. data/lib/commonAPI/coreapi/ext/platform/iphone/cpp_based_impl/SystemImpl.mm +1 -2
  5. data/lib/commonAPI/coreapi/ext/system.xml +1 -1
  6. data/platform/android/build/android.rake +1 -0
  7. data/platform/iphone/Classes/AppManager/AppManager.m +44 -3
  8. data/platform/iphone/Classes/NativeView/RhoNativeViewManager.mm +4 -3
  9. data/platform/iphone/Classes/NativeView/RhoNativeViewManagerOC.h +1 -1
  10. data/platform/iphone/Classes/RhoMainView.h +8 -2
  11. data/platform/iphone/Classes/RhoUIWebView.h +75 -0
  12. data/platform/iphone/Classes/RhoUIWebView.m +142 -0
  13. data/platform/iphone/Classes/RhoWKWebView.h +87 -0
  14. data/platform/iphone/Classes/RhoWKWebView.m +187 -0
  15. data/platform/iphone/Classes/RhoWebView.h +72 -0
  16. data/platform/iphone/Classes/RhoWebViewFabrique.h +35 -0
  17. data/platform/iphone/Classes/RhoWebViewFabrique.m +87 -0
  18. data/platform/iphone/Classes/Rhodes.m +17 -6
  19. data/platform/iphone/Classes/Signature.old/SignatureDelegate.m +11 -4
  20. data/platform/iphone/Classes/Signature/SignatureDelegate.m +3 -4
  21. data/platform/iphone/Classes/SimpleMainView.h +7 -5
  22. data/platform/iphone/Classes/SimpleMainView.m +174 -179
  23. data/platform/iphone/Classes/SplitView/RightViewController.h +2 -2
  24. data/platform/iphone/Classes/SplitView/RightViewController.m +9 -10
  25. data/platform/iphone/Classes/SplitView/SplittedMainView.h +2 -3
  26. data/platform/iphone/Classes/SplitView/SplittedMainView.m +10 -7
  27. data/platform/iphone/Classes/TabbedMainView.h +2 -1
  28. data/platform/iphone/Classes/TabbedMainView.m +13 -10
  29. data/platform/iphone/Classes/URLProtocol/CRhoURLProtocol.m +21 -5
  30. data/platform/iphone/Classes/WebView.m +1 -1
  31. data/platform/iphone/RhoAppBaseLib/RhoAppBaseLib.xcodeproj/project.pbxproj +40 -3
  32. data/platform/iphone/RhoLib/RhoLib.xcodeproj/project.pbxproj +4 -0
  33. data/platform/iphone/rbuild/iphone.rake +51 -0
  34. data/platform/shared/common/RhoNativeViewManager.h +9 -9
  35. data/platform/shared/common/RhodesApp.cpp +13 -1
  36. data/platform/shared/net/HttpServer.cpp +12 -2
  37. data/platform/shared/qt/rhodes/ExternalWebView.ui +11 -2
  38. data/platform/shared/qt/rhodes/QtMainWindow.cpp +9 -7
  39. data/platform/shared/qt/rhodes/QtMainWindow.ui +13 -4
  40. data/platform/shared/qt/rhodes/qkineticscroller.cpp +1245 -0
  41. data/platform/shared/qt/rhodes/qkineticscroller.h +165 -0
  42. data/platform/shared/qt/rhodes/qkineticscroller_p.h +168 -0
  43. data/platform/shared/qt/rhodes/qtflickgesture.cpp +696 -0
  44. data/platform/shared/qt/rhodes/qtflickgesture_p.h +107 -0
  45. data/platform/shared/qt/rhodes/qtscroller.cpp +2080 -0
  46. data/platform/shared/qt/rhodes/qtscroller.h +138 -0
  47. data/platform/shared/qt/rhodes/qtscroller_p.h +205 -0
  48. data/platform/shared/qt/rhodes/qtscrollerfilter.cpp +350 -0
  49. data/platform/shared/qt/rhodes/qtscrollerfilter_p.h +110 -0
  50. data/platform/shared/qt/rhodes/qtscrollerproperties.cpp +412 -0
  51. data/platform/shared/qt/rhodes/qtscrollerproperties.h +135 -0
  52. data/platform/shared/qt/rhodes/qtscrollerproperties_p.h +90 -0
  53. data/platform/shared/qt/rhodes/qtscrollevent.cpp +190 -0
  54. data/platform/shared/qt/rhodes/qtscrollevent.h +100 -0
  55. data/platform/shared/qt/rhodes/qtscrollevent_p.h +33 -0
  56. data/platform/shared/qt/rhodes/qwebviewkineticscroller.cpp +347 -0
  57. data/platform/shared/qt/rhodes/qwebviewkineticscroller.h +90 -0
  58. data/platform/shared/qt/rhodes/qwebviewselectionsuppressor.h +113 -0
  59. data/platform/shared/qt/rhodes/rhodes.pro +19 -0
  60. data/res/generators/rhogen.rb +307 -15
  61. data/res/generators/templates/application/app/Settings/err_sync.erb +12 -6
  62. data/res/generators/templates/application/app/Settings/home.erb +32 -17
  63. data/res/generators/templates/application/app/Settings/index.erb +55 -26
  64. data/res/generators/templates/application/app/Settings/javascript_index.html +111 -0
  65. data/res/generators/templates/application/app/Settings/javascript_login.html +65 -0
  66. data/res/generators/templates/application/app/Settings/login.erb +25 -19
  67. data/res/generators/templates/application/app/Settings/reset.erb +18 -9
  68. data/res/generators/templates/application/app/Settings/wait.erb +10 -7
  69. data/res/generators/templates/application/app/index.erb +32 -20
  70. data/res/generators/templates/application/app/javascript_index.html +66 -0
  71. data/res/generators/templates/application/app/javascript_index.js +250 -0
  72. data/res/generators/templates/application/app/layout.erb +12 -67
  73. data/res/generators/templates/application/javascript_build.yml +41 -0
  74. data/res/generators/templates/application/javascript_rhoconfig.txt +123 -0
  75. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css +587 -0
  76. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.css.map +1 -0
  77. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css +6 -0
  78. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap-theme.min.css.map +1 -0
  79. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css +6757 -0
  80. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.css.map +1 -0
  81. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css +6 -0
  82. data/res/generators/templates/application/public/bootstrap-3.3.7/css/bootstrap.min.css.map +1 -0
  83. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.eot +0 -0
  84. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.svg +288 -0
  85. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.ttf +0 -0
  86. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff +0 -0
  87. data/res/generators/templates/application/public/bootstrap-3.3.7/fonts/glyphicons-halflings-regular.woff2 +0 -0
  88. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.js +2377 -0
  89. data/res/generators/templates/application/public/bootstrap-3.3.7/js/bootstrap.min.js +7 -0
  90. data/res/generators/templates/application/public/bootstrap-3.3.7/js/npm.js +13 -0
  91. data/res/generators/templates/application/public/css/style.css +3 -0
  92. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.js +4 -0
  93. data/res/generators/templates/application/public/jquery/jquery-3.1.1.min.map +1 -0
  94. data/res/generators/templates/application/rhoconfig.txt +16 -0
  95. data/res/generators/templates/iphone_project/Bremen7.xcodeproj/project.pbxproj +4 -0
  96. data/res/generators/templates/model/edit.erb +22 -21
  97. data/res/generators/templates/model/index.erb +24 -22
  98. data/res/generators/templates/model/javascript_edit.html +65 -0
  99. data/res/generators/templates/model/javascript_index.html +56 -0
  100. data/res/generators/templates/model/javascript_index.js +83 -0
  101. data/res/generators/templates/model/javascript_model.js +16 -0
  102. data/res/generators/templates/model/javascript_new.html +64 -0
  103. data/res/generators/templates/model/javascript_show.html +66 -0
  104. data/res/generators/templates/model/new.erb +22 -19
  105. data/res/generators/templates/model/show.erb +22 -14
  106. data/res/prebuild_base_app/app/index.erb +31 -18
  107. data/res/prebuild_base_app/app/layout.erb +11 -56
  108. data/version +1 -1
  109. metadata +59 -24
  110. data/res/generators/templates/application/public/css/android.css +0 -418
  111. data/res/generators/templates/application/public/css/iphone.css +0 -378
  112. data/res/generators/templates/application/public/css/jqmobile-patch.css +0 -62
  113. data/res/generators/templates/application/public/css/re_webkit.css +0 -736
  114. data/res/generators/templates/application/public/css/re_webkit_flat.css +0 -753
  115. data/res/generators/templates/application/public/css/windows_mobile.css +0 -327
  116. data/res/generators/templates/application/public/jqmobile/images/ajax-loader.gif +0 -0
  117. data/res/generators/templates/application/public/jqmobile/images/icon-search-black.png +0 -0
  118. data/res/generators/templates/application/public/jqmobile/images/icons-18-black.png +0 -0
  119. data/res/generators/templates/application/public/jqmobile/images/icons-18-white.png +0 -0
  120. data/res/generators/templates/application/public/jqmobile/images/icons-36-black.png +0 -0
  121. data/res/generators/templates/application/public/jqmobile/images/icons-36-white.png +0 -0
  122. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.css +0 -3
  123. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.js +0 -10
  124. data/res/generators/templates/application/public/jqmobile/jquery.mobile-1.4.5.min.map +0 -1
  125. data/res/generators/templates/application/public/jqmobile/jquery.mobile.structure-1.4.5.min.css +0 -3
  126. data/res/generators/templates/application/public/jqmobile/jquery.mobile.theme-1.4.5.min.css +0 -3
  127. data/res/generators/templates/application/public/jquery/jquery-1.9.1.min.js +0 -5
  128. data/res/generators/templates/application/public/jquery/jquery-1.9.1.min.map +0 -1
  129. data/res/generators/templates/application/public/js/application.js +0 -1
  130. data/res/generators/templates/application/public/js/jqmobile-patch.js +0 -466
  131. data/res/generators/templates/application/public/js/syncengine.js +0 -504
@@ -0,0 +1,41 @@
1
+ #sdk: "<%=@sdk_path%>"
2
+ sdkversion: <%=Rhodes::VERSION%>
3
+ name: <%=@app_name%>
4
+ version: 1.0
5
+ vendor: rhomobile
6
+ build: debug
7
+ applog: rholog.txt
8
+ javascript_application: true
9
+ iphone:
10
+ configuration: Release
11
+ sdk: iphonesimulator10.0
12
+ #provisionprofile:
13
+ #codesignidentity:
14
+ #entitlements:
15
+ BundleIdentifier: com.rhomobile.<%=@app_name_cleared%>
16
+ BundleURLScheme: <%=@app_name_cleared%>
17
+ production:
18
+ ipa_itunesartwork_image: "./production/iTunesArtwork.png"
19
+ # Note: Specifies the URL schemes the app is able to call using Rho.System.runApplication
20
+ #ApplicationQueriesSchemes: ["scheme1", "scheme2"]
21
+ wp8:
22
+ productid: '<%=@productid%>'
23
+ android:
24
+ #manifest_template: 'AndroidManifest.erb'
25
+ version: 4.1.0
26
+ # Note: in order to simplify debugging only app messages and system channels with priority informative and higher, and any errors are enabled by default
27
+ logcatFilter: APP:I StrictMode:I DEBUG:I *:E
28
+
29
+ wm:
30
+ #sdk: "MC3000c50b (ARMV4I)"
31
+ #sdk: "Windows Mobile 6.5.3 Professional DTK (ARMV4I)"
32
+
33
+ win32:
34
+ deployqt: 1
35
+ deploymsvc: 1
36
+
37
+ extensions: [<%=@rhoconnectclient_ext%>]
38
+
39
+ rhobundle:
40
+ exclude_items:
41
+ - thumb.db
@@ -0,0 +1,123 @@
1
+ # startup page for your application
2
+ start_path = '/app/index.html'
3
+
4
+ # path to the options page (in this case handled by javascript)
5
+ options_path = '/app/settings/index.html'
6
+
7
+ # location of bundle url (i.e. from rhohub.com); used by desktop win32 simulator
8
+ rhobundle_zip_url = '<%=zip_url%>'
9
+
10
+ # optional password to access bundle (usually not required); used by desktop win32 simulator
11
+ rhobundle_zip_pwd = nil
12
+
13
+ # Rhodes log properties
14
+ # log level
15
+ # 0-trace, 1-info(app level), 2-warnings, 3-errors
16
+ # for production set to 3
17
+ MinSeverity = 1
18
+
19
+ # enable copy log messages to standard output, useful for debugging
20
+ LogToOutput = 1
21
+
22
+ # '*' means all categories, otherwise list them : Cat1, Cat2
23
+ LogCategories = *
24
+
25
+ # what categories to exclude
26
+ ExcludeLogCategories =
27
+
28
+ # max log file size in Bytes, set 0 to unlimited size; when limit is reached, log wraps to beginning of file
29
+ MaxLogFileSize=50000
30
+
31
+ # turn on local http server traces, off by default
32
+ #net_trace = 0
33
+
34
+ # timeout of network requests in seconds (30 by default)
35
+ #net_timeout = 60
36
+
37
+ # where log will be posted by RhoConf.send_log or from the log menu
38
+ # source is also open and up on http://github.com/rhomobile/rhologs, so you can deploy your own logserver
39
+ logserver = 'http://rhologs.heroku.com'
40
+
41
+ # log file prefix - contain human-readable text
42
+ logname='<%=@app_name%>'
43
+
44
+ # Keep track of the last visited page
45
+ KeepTrackOfLastVisitedPage = 0
46
+ LastVisitedPage = ''
47
+
48
+ # sync server url, typically this will look like 'http://<hostname>:<port>'
49
+ # for example: 'http://localhost:9292'
50
+ syncserver = '<%=syncserver%>'
51
+ sync_poll_interval=0
52
+
53
+ # geo location inactivity timeout (in seconds)
54
+ #geo_location_inactivity_timeout = 30
55
+
56
+ # open rhodes app in full screen mode
57
+ # default 1 for Android up to Rhodes 2.2.5.
58
+ # on all other platforms and on Android from Rhodes >2.2.5 default 0
59
+ #full_screen = 1
60
+
61
+ # show top menu on Windows desktop in full screen mode (default is 0=don't show top menu)
62
+ #w32_fullscreen_menu = 1
63
+
64
+ # disable the Android page loading progress bar
65
+ #disable_loading_indication = 0
66
+
67
+ # Port of the local (embedded) HTTP server. This parameter is mainly for debug purposes.
68
+ # If not specified, application will use dynamically selected one.
69
+ # WARNING!!! Remove this parameter before put application to production.
70
+ #local_server_port = 8080
71
+
72
+ # Address and port of proxy server. This settings uses Network module.
73
+ # Do not include 'http://' while setting the http_proxy_host
74
+ #http_proxy_host = 'server'
75
+ #http_proxy_port = port
76
+
77
+ # Login and password for access to proxy server. Only basic authentication is supported
78
+ #http_proxy_login = 'user'
79
+ #http_proxy_password = 'password'
80
+
81
+ # CLient SSL Configuration. The path to the p12 formatted certificate file and the password used with the client certificate.
82
+ # The path to the p12 formatted certificate file used for client SSL authentication. This setting is used in any Network API calls which setting up secured SSL
83
+ # connections requiring client authentication (get, post, downloadFile, uploadFile). This setting only takes effect if `verifyPeerCertificate` is enabled.
84
+ # Therefore, if `verifyPeerCertificate` is set to fail and remote server requests the client certificate, connection will fail.
85
+ # These two settings are only supported for use on Android devices.
86
+ #clientSSLCertificate = 'certificate path'
87
+ #clientSSLCertificatePassword = 'password'
88
+
89
+ #ios_net_curl = 0
90
+ # default value is FALSE. from June 2016 iOS application should support ipv6. libCURL does not support it - so by default application use Apple's network framework.
91
+ #If true, an old libCURL-based Net request will be used. This option can be enabled for regression testing or if custom proxy support is required. Default is FALSE. To support per-app VPN (i.e. MobileIron) this option should be set to FALSE.
92
+
93
+ #ios_direct_local_requests = 1
94
+ # default value is TRUE. From June 2016 application shoudl support ipv6. So by default libCURL not used - in this case this option should be TRUE for correct work VPN etc.
95
+ #If true, request to local server will be applied directly, bypassing socket intercommunication, no network requests are involved. If false, a legacy client-server intercommunication will be made for local requests. Default is TRUE. To support per-app VPN (i.e. MobileIron) this option should be set to TRUE.
96
+
97
+ # show status bar on windows mobile. default 1
98
+ #wm_show_statusbar = 1
99
+
100
+ # disable screen rotation (enabled by default) - disable possible for ANDROID and iPhone ONLY
101
+ #disable_screen_rotation = 1
102
+
103
+ # disable close app when pressing back on home screen on blackberry
104
+ #bb_disable_closebyback = 0
105
+
106
+ # load images in background, this improve reaction speed on user actions, 0 by default
107
+ #bb_loadimages_async = 0
108
+
109
+ # set to 0 to reset the bulksync_state and trigger a bulk sync the next time rhodes synchronizes
110
+ #bulksync_state = 1
111
+
112
+ # hides forward button and animates back button transition
113
+ jqtouch_mode=1
114
+
115
+ # disables barcode on page navigation on android, default value is 1, means barcode will be disabled on page navigation
116
+ #disable_scanner_during_navigation = 1
117
+
118
+ splash_screen='zoom'
119
+
120
+ use_bb_full_browser=6
121
+
122
+ # finger scroll activation on windows XP/7/8/8.1/10
123
+ use_kinetic_scroll_on_windows = 1
@@ -0,0 +1,587 @@
1
+ /*!
2
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
3
+ * Copyright 2011-2016 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+ .btn-default,
7
+ .btn-primary,
8
+ .btn-success,
9
+ .btn-info,
10
+ .btn-warning,
11
+ .btn-danger {
12
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, .2);
13
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
14
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075);
15
+ }
16
+ .btn-default:active,
17
+ .btn-primary:active,
18
+ .btn-success:active,
19
+ .btn-info:active,
20
+ .btn-warning:active,
21
+ .btn-danger:active,
22
+ .btn-default.active,
23
+ .btn-primary.active,
24
+ .btn-success.active,
25
+ .btn-info.active,
26
+ .btn-warning.active,
27
+ .btn-danger.active {
28
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
29
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
30
+ }
31
+ .btn-default.disabled,
32
+ .btn-primary.disabled,
33
+ .btn-success.disabled,
34
+ .btn-info.disabled,
35
+ .btn-warning.disabled,
36
+ .btn-danger.disabled,
37
+ .btn-default[disabled],
38
+ .btn-primary[disabled],
39
+ .btn-success[disabled],
40
+ .btn-info[disabled],
41
+ .btn-warning[disabled],
42
+ .btn-danger[disabled],
43
+ fieldset[disabled] .btn-default,
44
+ fieldset[disabled] .btn-primary,
45
+ fieldset[disabled] .btn-success,
46
+ fieldset[disabled] .btn-info,
47
+ fieldset[disabled] .btn-warning,
48
+ fieldset[disabled] .btn-danger {
49
+ -webkit-box-shadow: none;
50
+ box-shadow: none;
51
+ }
52
+ .btn-default .badge,
53
+ .btn-primary .badge,
54
+ .btn-success .badge,
55
+ .btn-info .badge,
56
+ .btn-warning .badge,
57
+ .btn-danger .badge {
58
+ text-shadow: none;
59
+ }
60
+ .btn:active,
61
+ .btn.active {
62
+ background-image: none;
63
+ }
64
+ .btn-default {
65
+ text-shadow: 0 1px 0 #fff;
66
+ background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);
67
+ background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);
68
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0));
69
+ background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);
70
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);
71
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
72
+ background-repeat: repeat-x;
73
+ border-color: #dbdbdb;
74
+ border-color: #ccc;
75
+ }
76
+ .btn-default:hover,
77
+ .btn-default:focus {
78
+ background-color: #e0e0e0;
79
+ background-position: 0 -15px;
80
+ }
81
+ .btn-default:active,
82
+ .btn-default.active {
83
+ background-color: #e0e0e0;
84
+ border-color: #dbdbdb;
85
+ }
86
+ .btn-default.disabled,
87
+ .btn-default[disabled],
88
+ fieldset[disabled] .btn-default,
89
+ .btn-default.disabled:hover,
90
+ .btn-default[disabled]:hover,
91
+ fieldset[disabled] .btn-default:hover,
92
+ .btn-default.disabled:focus,
93
+ .btn-default[disabled]:focus,
94
+ fieldset[disabled] .btn-default:focus,
95
+ .btn-default.disabled.focus,
96
+ .btn-default[disabled].focus,
97
+ fieldset[disabled] .btn-default.focus,
98
+ .btn-default.disabled:active,
99
+ .btn-default[disabled]:active,
100
+ fieldset[disabled] .btn-default:active,
101
+ .btn-default.disabled.active,
102
+ .btn-default[disabled].active,
103
+ fieldset[disabled] .btn-default.active {
104
+ background-color: #e0e0e0;
105
+ background-image: none;
106
+ }
107
+ .btn-primary {
108
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);
109
+ background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);
110
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88));
111
+ background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);
112
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);
113
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
114
+ background-repeat: repeat-x;
115
+ border-color: #245580;
116
+ }
117
+ .btn-primary:hover,
118
+ .btn-primary:focus {
119
+ background-color: #265a88;
120
+ background-position: 0 -15px;
121
+ }
122
+ .btn-primary:active,
123
+ .btn-primary.active {
124
+ background-color: #265a88;
125
+ border-color: #245580;
126
+ }
127
+ .btn-primary.disabled,
128
+ .btn-primary[disabled],
129
+ fieldset[disabled] .btn-primary,
130
+ .btn-primary.disabled:hover,
131
+ .btn-primary[disabled]:hover,
132
+ fieldset[disabled] .btn-primary:hover,
133
+ .btn-primary.disabled:focus,
134
+ .btn-primary[disabled]:focus,
135
+ fieldset[disabled] .btn-primary:focus,
136
+ .btn-primary.disabled.focus,
137
+ .btn-primary[disabled].focus,
138
+ fieldset[disabled] .btn-primary.focus,
139
+ .btn-primary.disabled:active,
140
+ .btn-primary[disabled]:active,
141
+ fieldset[disabled] .btn-primary:active,
142
+ .btn-primary.disabled.active,
143
+ .btn-primary[disabled].active,
144
+ fieldset[disabled] .btn-primary.active {
145
+ background-color: #265a88;
146
+ background-image: none;
147
+ }
148
+ .btn-success {
149
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);
150
+ background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);
151
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641));
152
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);
153
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);
154
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
155
+ background-repeat: repeat-x;
156
+ border-color: #3e8f3e;
157
+ }
158
+ .btn-success:hover,
159
+ .btn-success:focus {
160
+ background-color: #419641;
161
+ background-position: 0 -15px;
162
+ }
163
+ .btn-success:active,
164
+ .btn-success.active {
165
+ background-color: #419641;
166
+ border-color: #3e8f3e;
167
+ }
168
+ .btn-success.disabled,
169
+ .btn-success[disabled],
170
+ fieldset[disabled] .btn-success,
171
+ .btn-success.disabled:hover,
172
+ .btn-success[disabled]:hover,
173
+ fieldset[disabled] .btn-success:hover,
174
+ .btn-success.disabled:focus,
175
+ .btn-success[disabled]:focus,
176
+ fieldset[disabled] .btn-success:focus,
177
+ .btn-success.disabled.focus,
178
+ .btn-success[disabled].focus,
179
+ fieldset[disabled] .btn-success.focus,
180
+ .btn-success.disabled:active,
181
+ .btn-success[disabled]:active,
182
+ fieldset[disabled] .btn-success:active,
183
+ .btn-success.disabled.active,
184
+ .btn-success[disabled].active,
185
+ fieldset[disabled] .btn-success.active {
186
+ background-color: #419641;
187
+ background-image: none;
188
+ }
189
+ .btn-info {
190
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
191
+ background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);
192
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2));
193
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);
194
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);
195
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
196
+ background-repeat: repeat-x;
197
+ border-color: #28a4c9;
198
+ }
199
+ .btn-info:hover,
200
+ .btn-info:focus {
201
+ background-color: #2aabd2;
202
+ background-position: 0 -15px;
203
+ }
204
+ .btn-info:active,
205
+ .btn-info.active {
206
+ background-color: #2aabd2;
207
+ border-color: #28a4c9;
208
+ }
209
+ .btn-info.disabled,
210
+ .btn-info[disabled],
211
+ fieldset[disabled] .btn-info,
212
+ .btn-info.disabled:hover,
213
+ .btn-info[disabled]:hover,
214
+ fieldset[disabled] .btn-info:hover,
215
+ .btn-info.disabled:focus,
216
+ .btn-info[disabled]:focus,
217
+ fieldset[disabled] .btn-info:focus,
218
+ .btn-info.disabled.focus,
219
+ .btn-info[disabled].focus,
220
+ fieldset[disabled] .btn-info.focus,
221
+ .btn-info.disabled:active,
222
+ .btn-info[disabled]:active,
223
+ fieldset[disabled] .btn-info:active,
224
+ .btn-info.disabled.active,
225
+ .btn-info[disabled].active,
226
+ fieldset[disabled] .btn-info.active {
227
+ background-color: #2aabd2;
228
+ background-image: none;
229
+ }
230
+ .btn-warning {
231
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
232
+ background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);
233
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316));
234
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);
235
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);
236
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
237
+ background-repeat: repeat-x;
238
+ border-color: #e38d13;
239
+ }
240
+ .btn-warning:hover,
241
+ .btn-warning:focus {
242
+ background-color: #eb9316;
243
+ background-position: 0 -15px;
244
+ }
245
+ .btn-warning:active,
246
+ .btn-warning.active {
247
+ background-color: #eb9316;
248
+ border-color: #e38d13;
249
+ }
250
+ .btn-warning.disabled,
251
+ .btn-warning[disabled],
252
+ fieldset[disabled] .btn-warning,
253
+ .btn-warning.disabled:hover,
254
+ .btn-warning[disabled]:hover,
255
+ fieldset[disabled] .btn-warning:hover,
256
+ .btn-warning.disabled:focus,
257
+ .btn-warning[disabled]:focus,
258
+ fieldset[disabled] .btn-warning:focus,
259
+ .btn-warning.disabled.focus,
260
+ .btn-warning[disabled].focus,
261
+ fieldset[disabled] .btn-warning.focus,
262
+ .btn-warning.disabled:active,
263
+ .btn-warning[disabled]:active,
264
+ fieldset[disabled] .btn-warning:active,
265
+ .btn-warning.disabled.active,
266
+ .btn-warning[disabled].active,
267
+ fieldset[disabled] .btn-warning.active {
268
+ background-color: #eb9316;
269
+ background-image: none;
270
+ }
271
+ .btn-danger {
272
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
273
+ background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);
274
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a));
275
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);
276
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);
277
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
278
+ background-repeat: repeat-x;
279
+ border-color: #b92c28;
280
+ }
281
+ .btn-danger:hover,
282
+ .btn-danger:focus {
283
+ background-color: #c12e2a;
284
+ background-position: 0 -15px;
285
+ }
286
+ .btn-danger:active,
287
+ .btn-danger.active {
288
+ background-color: #c12e2a;
289
+ border-color: #b92c28;
290
+ }
291
+ .btn-danger.disabled,
292
+ .btn-danger[disabled],
293
+ fieldset[disabled] .btn-danger,
294
+ .btn-danger.disabled:hover,
295
+ .btn-danger[disabled]:hover,
296
+ fieldset[disabled] .btn-danger:hover,
297
+ .btn-danger.disabled:focus,
298
+ .btn-danger[disabled]:focus,
299
+ fieldset[disabled] .btn-danger:focus,
300
+ .btn-danger.disabled.focus,
301
+ .btn-danger[disabled].focus,
302
+ fieldset[disabled] .btn-danger.focus,
303
+ .btn-danger.disabled:active,
304
+ .btn-danger[disabled]:active,
305
+ fieldset[disabled] .btn-danger:active,
306
+ .btn-danger.disabled.active,
307
+ .btn-danger[disabled].active,
308
+ fieldset[disabled] .btn-danger.active {
309
+ background-color: #c12e2a;
310
+ background-image: none;
311
+ }
312
+ .thumbnail,
313
+ .img-thumbnail {
314
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
315
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
316
+ }
317
+ .dropdown-menu > li > a:hover,
318
+ .dropdown-menu > li > a:focus {
319
+ background-color: #e8e8e8;
320
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
321
+ background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
322
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
323
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
324
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
325
+ background-repeat: repeat-x;
326
+ }
327
+ .dropdown-menu > .active > a,
328
+ .dropdown-menu > .active > a:hover,
329
+ .dropdown-menu > .active > a:focus {
330
+ background-color: #2e6da4;
331
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
332
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
333
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
334
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
335
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
336
+ background-repeat: repeat-x;
337
+ }
338
+ .navbar-default {
339
+ background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%);
340
+ background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%);
341
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8));
342
+ background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%);
343
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);
344
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
345
+ background-repeat: repeat-x;
346
+ border-radius: 4px;
347
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
348
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
349
+ }
350
+ .navbar-default .navbar-nav > .open > a,
351
+ .navbar-default .navbar-nav > .active > a {
352
+ background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
353
+ background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);
354
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2));
355
+ background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);
356
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);
357
+ background-repeat: repeat-x;
358
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
359
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075);
360
+ }
361
+ .navbar-brand,
362
+ .navbar-nav > li > a {
363
+ text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
364
+ }
365
+ .navbar-inverse {
366
+ background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);
367
+ background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);
368
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222));
369
+ background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);
370
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);
371
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
372
+ background-repeat: repeat-x;
373
+ border-radius: 4px;
374
+ }
375
+ .navbar-inverse .navbar-nav > .open > a,
376
+ .navbar-inverse .navbar-nav > .active > a {
377
+ background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);
378
+ background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);
379
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f));
380
+ background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);
381
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);
382
+ background-repeat: repeat-x;
383
+ -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
384
+ box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25);
385
+ }
386
+ .navbar-inverse .navbar-brand,
387
+ .navbar-inverse .navbar-nav > li > a {
388
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, .25);
389
+ }
390
+ .navbar-static-top,
391
+ .navbar-fixed-top,
392
+ .navbar-fixed-bottom {
393
+ border-radius: 0;
394
+ }
395
+ @media (max-width: 767px) {
396
+ .navbar .navbar-nav .open .dropdown-menu > .active > a,
397
+ .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,
398
+ .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {
399
+ color: #fff;
400
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
401
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
402
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
403
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
404
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
405
+ background-repeat: repeat-x;
406
+ }
407
+ }
408
+ .alert {
409
+ text-shadow: 0 1px 0 rgba(255, 255, 255, .2);
410
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
411
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05);
412
+ }
413
+ .alert-success {
414
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
415
+ background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
416
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
417
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
418
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
419
+ background-repeat: repeat-x;
420
+ border-color: #b2dba1;
421
+ }
422
+ .alert-info {
423
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
424
+ background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
425
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
426
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
427
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
428
+ background-repeat: repeat-x;
429
+ border-color: #9acfea;
430
+ }
431
+ .alert-warning {
432
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
433
+ background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
434
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
435
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
436
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
437
+ background-repeat: repeat-x;
438
+ border-color: #f5e79e;
439
+ }
440
+ .alert-danger {
441
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
442
+ background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
443
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
444
+ background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
445
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
446
+ background-repeat: repeat-x;
447
+ border-color: #dca7a7;
448
+ }
449
+ .progress {
450
+ background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
451
+ background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);
452
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5));
453
+ background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);
454
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);
455
+ background-repeat: repeat-x;
456
+ }
457
+ .progress-bar {
458
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);
459
+ background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);
460
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090));
461
+ background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);
462
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);
463
+ background-repeat: repeat-x;
464
+ }
465
+ .progress-bar-success {
466
+ background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);
467
+ background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);
468
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44));
469
+ background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);
470
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);
471
+ background-repeat: repeat-x;
472
+ }
473
+ .progress-bar-info {
474
+ background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
475
+ background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);
476
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5));
477
+ background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);
478
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);
479
+ background-repeat: repeat-x;
480
+ }
481
+ .progress-bar-warning {
482
+ background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
483
+ background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);
484
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f));
485
+ background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);
486
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);
487
+ background-repeat: repeat-x;
488
+ }
489
+ .progress-bar-danger {
490
+ background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);
491
+ background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);
492
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c));
493
+ background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);
494
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);
495
+ background-repeat: repeat-x;
496
+ }
497
+ .progress-bar-striped {
498
+ background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
499
+ background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
500
+ background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
501
+ }
502
+ .list-group {
503
+ border-radius: 4px;
504
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
505
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .075);
506
+ }
507
+ .list-group-item.active,
508
+ .list-group-item.active:hover,
509
+ .list-group-item.active:focus {
510
+ text-shadow: 0 -1px 0 #286090;
511
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);
512
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);
513
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a));
514
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);
515
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);
516
+ background-repeat: repeat-x;
517
+ border-color: #2b669a;
518
+ }
519
+ .list-group-item.active .badge,
520
+ .list-group-item.active:hover .badge,
521
+ .list-group-item.active:focus .badge {
522
+ text-shadow: none;
523
+ }
524
+ .panel {
525
+ -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
526
+ box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
527
+ }
528
+ .panel-default > .panel-heading {
529
+ background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
530
+ background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);
531
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8));
532
+ background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
533
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);
534
+ background-repeat: repeat-x;
535
+ }
536
+ .panel-primary > .panel-heading {
537
+ background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
538
+ background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
539
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
540
+ background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
541
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
542
+ background-repeat: repeat-x;
543
+ }
544
+ .panel-success > .panel-heading {
545
+ background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
546
+ background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);
547
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6));
548
+ background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);
549
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);
550
+ background-repeat: repeat-x;
551
+ }
552
+ .panel-info > .panel-heading {
553
+ background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
554
+ background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);
555
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3));
556
+ background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);
557
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);
558
+ background-repeat: repeat-x;
559
+ }
560
+ .panel-warning > .panel-heading {
561
+ background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
562
+ background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);
563
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc));
564
+ background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);
565
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);
566
+ background-repeat: repeat-x;
567
+ }
568
+ .panel-danger > .panel-heading {
569
+ background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
570
+ background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);
571
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc));
572
+ background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);
573
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);
574
+ background-repeat: repeat-x;
575
+ }
576
+ .well {
577
+ background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
578
+ background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);
579
+ background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5));
580
+ background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);
581
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);
582
+ background-repeat: repeat-x;
583
+ border-color: #dcdcdc;
584
+ -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
585
+ box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1);
586
+ }
587
+ /*# sourceMappingURL=bootstrap-theme.css.map */