OpenREM 1.0.0b2__py3-none-any.whl → 1.0.0b3__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (279) hide show
  1. openrem/locale/de/LC_MESSAGES/django.po +1060 -1059
  2. openrem/locale/django.pot +973 -972
  3. openrem/locale/es_MX/LC_MESSAGES/django.po +1049 -1048
  4. openrem/locale/it/LC_MESSAGES/django.po +1044 -1043
  5. openrem/locale/lt/LC_MESSAGES/django.po +989 -988
  6. openrem/locale/nb_NO/LC_MESSAGES/django.po +985 -984
  7. openrem/locale/pt_BR/LC_MESSAGES/django.po +1003 -1002
  8. openrem/manage.py +10 -10
  9. openrem/openremproject/__init__.py +1 -1
  10. openrem/openremproject/local_settings.py.linux +128 -128
  11. openrem/openremproject/local_settings.py.windows +144 -144
  12. openrem/openremproject/local_settings.py.windows-sqlite3 +129 -129
  13. openrem/openremproject/settings.py +278 -278
  14. openrem/openremproject/urls.py +32 -32
  15. openrem/openremproject/wsgi.py.example +28 -28
  16. openrem/remapp/__init__.py +2 -2
  17. openrem/remapp/admin.py +31 -31
  18. openrem/remapp/exports/ct_export.py +780 -753
  19. openrem/remapp/exports/dx_export.py +817 -805
  20. openrem/remapp/exports/export_common.py +931 -951
  21. openrem/remapp/exports/export_common_pandas.py +2422 -0
  22. openrem/remapp/exports/exportviews.py +815 -860
  23. openrem/remapp/exports/mg_csv_nhsbsp.py +292 -292
  24. openrem/remapp/exports/mg_export.py +673 -510
  25. openrem/remapp/exports/nm_export.py +796 -575
  26. openrem/remapp/exports/rf_export.py +1418 -1431
  27. openrem/remapp/extractors/ct_philips.py +424 -414
  28. openrem/remapp/extractors/ct_toshiba.py +2116 -2108
  29. openrem/remapp/extractors/dx.py +1033 -952
  30. openrem/remapp/extractors/extract_common.py +817 -817
  31. openrem/remapp/extractors/import_views.py +426 -426
  32. openrem/remapp/extractors/mam.py +685 -672
  33. openrem/remapp/extractors/nm_image.py +439 -431
  34. openrem/remapp/extractors/ptsizecsv2db.py +368 -368
  35. openrem/remapp/extractors/rdsr.py +667 -654
  36. openrem/remapp/extractors/rdsr_methods.py +1771 -1768
  37. openrem/remapp/extractors/rrdsr_methods.py +630 -622
  38. openrem/remapp/fixtures/openskin_safelist.json +11 -11
  39. openrem/remapp/forms.py +2286 -2277
  40. openrem/remapp/interface/chart_functions.py +2412 -2393
  41. openrem/remapp/interface/mod_filters.py +1241 -1243
  42. openrem/remapp/migrations/0001_initial.py.1-0-upgrade +1043 -1043
  43. openrem/remapp/models.py +3418 -3407
  44. openrem/remapp/netdicom/dicomviews.py +681 -683
  45. openrem/remapp/netdicom/qrscu.py +2646 -2646
  46. openrem/remapp/netdicom/tools.py +134 -134
  47. openrem/remapp/static/css/bootstrap-theme.css +587 -587
  48. openrem/remapp/static/css/bootstrap-theme.min.css +4 -4
  49. openrem/remapp/static/css/bootstrap.css +6800 -6800
  50. openrem/remapp/static/css/bootstrap.min.css +4 -4
  51. openrem/remapp/static/css/datepicker3.css +790 -790
  52. openrem/remapp/static/css/jquery.qtip.min.css +2 -2
  53. openrem/remapp/static/css/openrem-extra.css +442 -442
  54. openrem/remapp/static/css/openrem.css +96 -96
  55. openrem/remapp/static/css/registration.css +34 -34
  56. openrem/remapp/static/fonts/glyphicons-halflings-regular.svg +287 -287
  57. openrem/remapp/static/js/bootstrap-datepicker.js +1671 -1671
  58. openrem/remapp/static/js/bootstrap.js +2363 -2363
  59. openrem/remapp/static/js/bootstrap.min.js +6 -6
  60. openrem/remapp/static/js/charts/chartCommonFunctions.js +75 -75
  61. openrem/remapp/static/js/charts/chartFullScreen.js +41 -41
  62. openrem/remapp/static/js/charts/ctChartAjax.js +331 -331
  63. openrem/remapp/static/js/charts/dxChartAjax.js +290 -290
  64. openrem/remapp/static/js/charts/mgChartAjax.js +144 -144
  65. openrem/remapp/static/js/charts/nmChartAjax.js +64 -64
  66. openrem/remapp/static/js/charts/plotly-2.35.2.min.js +8 -0
  67. openrem/remapp/static/js/charts/rfChartAjax.js +128 -128
  68. openrem/remapp/static/js/chroma.min.js +32 -32
  69. openrem/remapp/static/js/datepicker.js +5 -5
  70. openrem/remapp/static/js/dicom.js +115 -115
  71. openrem/remapp/static/js/django_reverse/reverse.js +13 -13
  72. openrem/remapp/static/js/formatDate.js +7 -7
  73. openrem/remapp/static/js/html5shiv.min.js +8 -8
  74. openrem/remapp/static/js/jquery-1.11.0.min.js +4 -4
  75. openrem/remapp/static/js/npm.js +12 -12
  76. openrem/remapp/static/js/respond.min.js +4 -4
  77. openrem/remapp/static/js/skin-dose-maps/jquery.qtip.min.js +4 -4
  78. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dHUDObject.js +112 -112
  79. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dObject.js +367 -367
  80. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMap3dPersonObject.js +158 -158
  81. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapColourScaleObject.js +153 -153
  82. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapObject.js +367 -367
  83. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapping.js +584 -584
  84. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMapping3d.js +255 -255
  85. openrem/remapp/static/js/skin-dose-maps/rfSkinDoseMappingAjax.js +267 -212
  86. openrem/remapp/static/js/skin-dose-maps/three.min.js +835 -835
  87. openrem/remapp/static/js/sorttable.js +495 -495
  88. openrem/remapp/templates/base.html +253 -253
  89. openrem/remapp/templates/registration/changepassword.html +25 -25
  90. openrem/remapp/templates/registration/changepassworddone.html +12 -12
  91. openrem/remapp/templates/registration/login.html +42 -42
  92. openrem/remapp/templates/remapp/backgroundtaskmaximumrows_form.html +29 -29
  93. openrem/remapp/templates/remapp/base.html +1 -1
  94. openrem/remapp/templates/remapp/ctdetail.html +235 -235
  95. openrem/remapp/templates/remapp/ctfiltered.html +310 -310
  96. openrem/remapp/templates/remapp/dicomdeletesettings_form.html +31 -31
  97. openrem/remapp/templates/remapp/dicomqr.html +147 -147
  98. openrem/remapp/templates/remapp/dicomquerydetails.html +83 -83
  99. openrem/remapp/templates/remapp/dicomqueryimages.html +49 -49
  100. openrem/remapp/templates/remapp/dicomqueryseries.html +109 -109
  101. openrem/remapp/templates/remapp/dicomquerysummary.html +48 -48
  102. openrem/remapp/templates/remapp/dicomremoteqr_confirm_delete.html +60 -60
  103. openrem/remapp/templates/remapp/dicomremoteqr_form.html +32 -32
  104. openrem/remapp/templates/remapp/dicomstorescp_confirm_delete.html +53 -53
  105. openrem/remapp/templates/remapp/dicomstorescp_form.html +48 -48
  106. openrem/remapp/templates/remapp/dicomsummary.html +257 -257
  107. openrem/remapp/templates/remapp/displaychartoptions.html +184 -184
  108. openrem/remapp/templates/remapp/displayhomepageoptions.html +57 -57
  109. openrem/remapp/templates/remapp/displayname-count.html +6 -6
  110. openrem/remapp/templates/remapp/displayname-last-date.html +3 -3
  111. openrem/remapp/templates/remapp/displayname-modality.html +86 -105
  112. openrem/remapp/templates/remapp/displayname-skinmap.html +18 -18
  113. openrem/remapp/templates/remapp/displaynameupdate.html +100 -100
  114. openrem/remapp/templates/remapp/displaynameview.html +222 -219
  115. openrem/remapp/templates/remapp/dxdetail.html +176 -176
  116. openrem/remapp/templates/remapp/dxfiltered.html +324 -324
  117. openrem/remapp/templates/remapp/exports-active.html +25 -25
  118. openrem/remapp/templates/remapp/exports-complete.html +35 -35
  119. openrem/remapp/templates/remapp/exports-error.html +26 -26
  120. openrem/remapp/templates/remapp/exports-queue.html +18 -18
  121. openrem/remapp/templates/remapp/exports.html +191 -191
  122. openrem/remapp/templates/remapp/failed_summary_list.html +27 -27
  123. openrem/remapp/templates/remapp/filteredbase.html +162 -162
  124. openrem/remapp/templates/remapp/highdosemetricalertsettings_form.html +76 -76
  125. openrem/remapp/templates/remapp/home-list-modalities.html +94 -94
  126. openrem/remapp/templates/remapp/home.html +202 -202
  127. openrem/remapp/templates/remapp/list_filters.html +24 -24
  128. openrem/remapp/templates/remapp/mgdetail.html +160 -138
  129. openrem/remapp/templates/remapp/mgfiltered.html +311 -311
  130. openrem/remapp/templates/remapp/nmdetail.html +300 -300
  131. openrem/remapp/templates/remapp/nmfiltered.html +255 -255
  132. openrem/remapp/templates/remapp/notpatient.html +190 -190
  133. openrem/remapp/templates/remapp/notpatientindicators_form_base.html +81 -81
  134. openrem/remapp/templates/remapp/notpatientindicatorsid_confirm_delete.html +54 -54
  135. openrem/remapp/templates/remapp/notpatientindicatorsid_form.html +23 -23
  136. openrem/remapp/templates/remapp/notpatientindicatorsname_confirm_delete.html +54 -54
  137. openrem/remapp/templates/remapp/notpatientindicatorsname_form.html +23 -23
  138. openrem/remapp/templates/remapp/notpatientindicatorsname_form_base.html +85 -85
  139. openrem/remapp/templates/remapp/openskinsafelist_add.html +130 -130
  140. openrem/remapp/templates/remapp/openskinsafelist_confirm_delete.html +100 -100
  141. openrem/remapp/templates/remapp/openskinsafelist_form.html +207 -207
  142. openrem/remapp/templates/remapp/patientidsettings_form.html +83 -83
  143. openrem/remapp/templates/remapp/populate_summary_progress.html +83 -83
  144. openrem/remapp/templates/remapp/populate_summary_progress_error.html +36 -36
  145. openrem/remapp/templates/remapp/review_failed_imports.html +157 -157
  146. openrem/remapp/templates/remapp/review_failed_study.html +41 -41
  147. openrem/remapp/templates/remapp/review_studies_delete_button.html +20 -20
  148. openrem/remapp/templates/remapp/review_study.html +19 -19
  149. openrem/remapp/templates/remapp/review_summary_list.html +245 -245
  150. openrem/remapp/templates/remapp/rf_dose_alert_email_template.html +14 -1
  151. openrem/remapp/templates/remapp/rfalertnotificationsview.html +59 -59
  152. openrem/remapp/templates/remapp/rfdetail.html +547 -543
  153. openrem/remapp/templates/remapp/rfdetailbase.html +18 -18
  154. openrem/remapp/templates/remapp/rffiltered.html +404 -404
  155. openrem/remapp/templates/remapp/sizeimports.html +119 -119
  156. openrem/remapp/templates/remapp/sizeprocess.html +96 -96
  157. openrem/remapp/templates/remapp/sizeupload.html +110 -110
  158. openrem/remapp/templates/remapp/skindosemapcalcsettings_form.html +28 -28
  159. openrem/remapp/templates/remapp/standardname-modality.html +69 -69
  160. openrem/remapp/templates/remapp/standardnames_confirm_delete.html +71 -71
  161. openrem/remapp/templates/remapp/standardnames_form.html +87 -87
  162. openrem/remapp/templates/remapp/standardnamesettings_form.html +41 -41
  163. openrem/remapp/templates/remapp/standardnamesrefreshall.html +92 -92
  164. openrem/remapp/templates/remapp/standardnameview.html +103 -103
  165. openrem/remapp/templates/remapp/study_confirm_delete.html +147 -147
  166. openrem/remapp/templates/remapp/task_admin.html +265 -265
  167. openrem/remapp/templates/remapp/tasks.html +76 -76
  168. openrem/remapp/templatetags/formfilters.py +13 -13
  169. openrem/remapp/templatetags/proper_paginate.py +38 -38
  170. openrem/remapp/templatetags/remappduration.py +36 -36
  171. openrem/remapp/templatetags/sigdig.py +38 -38
  172. openrem/remapp/templatetags/sort_class_property_value.py +15 -15
  173. openrem/remapp/templatetags/update_variable.py +20 -20
  174. openrem/remapp/templatetags/url_replace.py +25 -25
  175. openrem/remapp/tests/test_charts_common.py +202 -202
  176. openrem/remapp/tests/test_charts_ct.py +7111 -7111
  177. openrem/remapp/tests/test_charts_dx.py +3513 -3513
  178. openrem/remapp/tests/test_charts_mg.py +1116 -1115
  179. openrem/remapp/tests/test_dcmdatetime.py +189 -189
  180. openrem/remapp/tests/test_dicom_qr.py +2580 -2580
  181. openrem/remapp/tests/test_display_name.py +274 -274
  182. openrem/remapp/tests/test_export_ct_xlsx.py +272 -248
  183. openrem/remapp/tests/test_export_dx_xlsx.py +137 -134
  184. openrem/remapp/tests/test_export_mammo_csv.py +242 -242
  185. openrem/remapp/tests/test_export_rf_xlsx.py +246 -246
  186. openrem/remapp/tests/test_files/DX-Im-DRGEM.dcm +0 -0
  187. openrem/remapp/tests/test_files/MG-RDSR-GEPristina-2D.dcm +0 -0
  188. openrem/remapp/tests/test_files/MG-RDSR-GEPristina-DBT.dcm +0 -0
  189. openrem/remapp/tests/test_files/MG-RDSR-Giotto-DBT.dcm +0 -0
  190. openrem/remapp/tests/test_files/skin_map_alphenix.py +590 -590
  191. openrem/remapp/tests/test_files/skin_map_zee.py +354 -354
  192. openrem/remapp/tests/test_filters_ct.py +321 -321
  193. openrem/remapp/tests/test_filters_dx.py +92 -92
  194. openrem/remapp/tests/test_filters_mammo.py +183 -183
  195. openrem/remapp/tests/test_filters_rf.py +118 -118
  196. openrem/remapp/tests/test_get_values.py +72 -72
  197. openrem/remapp/tests/test_hash_id.py +65 -65
  198. openrem/remapp/tests/test_import_ct_esr_ge.py +3034 -3034
  199. openrem/remapp/tests/test_import_ct_philips_rdsr.py +42 -42
  200. openrem/remapp/tests/test_import_ct_rdsr_multiple.py +256 -256
  201. openrem/remapp/tests/test_import_ct_rdsr_siemens.py +827 -827
  202. openrem/remapp/tests/test_import_ct_rdsr_spectrumdynamics.py +91 -91
  203. openrem/remapp/tests/test_import_ct_rdsr_toshiba_dosecheck.py +67 -67
  204. openrem/remapp/tests/test_import_ct_rdsr_toshiba_multivaluesd.py +33 -33
  205. openrem/remapp/tests/test_import_ct_rdsr_toshiba_pixelmed.py +118 -118
  206. openrem/remapp/tests/test_import_ct_sc_philips.py +44 -44
  207. openrem/remapp/tests/test_import_dual_rdsr.py +110 -110
  208. openrem/remapp/tests/test_import_dx.py +1267 -1191
  209. openrem/remapp/tests/test_import_dx_rdsr.py +1250 -1253
  210. openrem/remapp/tests/test_import_mam.py +438 -438
  211. openrem/remapp/tests/test_import_mg_im_hol_proj.py +46 -46
  212. openrem/remapp/tests/test_import_mg_rdsr.py +586 -586
  213. openrem/remapp/tests/test_import_nm_image.py +420 -420
  214. openrem/remapp/tests/test_import_nm_siemens_rdsr.py +396 -396
  215. openrem/remapp/tests/test_import_px.py +161 -161
  216. openrem/remapp/tests/test_import_rf_rdsr.py +420 -418
  217. openrem/remapp/tests/test_missing_date.py +42 -42
  218. openrem/remapp/tests/test_not_patient.py +60 -60
  219. openrem/remapp/tests/test_openskin.py +272 -272
  220. openrem/remapp/tests/test_patient_id_settings.py +72 -72
  221. openrem/remapp/tests/test_pt_size_import.py +232 -232
  222. openrem/remapp/tests/test_rf_detail.py +113 -113
  223. openrem/remapp/tests/test_rf_high_dose_alert.py +361 -361
  224. openrem/remapp/tools/background.py +361 -361
  225. openrem/remapp/tools/check_standard_name_status.py +47 -0
  226. openrem/remapp/tools/check_uid.py +70 -70
  227. openrem/remapp/tools/dcmdatetime.py +248 -248
  228. openrem/remapp/tools/default_import.py +44 -47
  229. openrem/remapp/tools/get_values.py +230 -230
  230. openrem/remapp/tools/hash_id.py +58 -58
  231. openrem/remapp/tools/make_skin_map.py +448 -406
  232. openrem/remapp/tools/not_patient_indicators.py +72 -72
  233. openrem/remapp/tools/openskin/calc_exp_map.py +173 -173
  234. openrem/remapp/tools/openskin/geomclass.py +475 -475
  235. openrem/remapp/tools/openskin/geomfunc.py +433 -432
  236. openrem/remapp/tools/openskin/skinmap.py +417 -417
  237. openrem/remapp/tools/populate_summary.py +185 -193
  238. openrem/remapp/tools/save_skin_map_structure.py +73 -73
  239. openrem/remapp/tools/send_high_dose_alert_emails.py +238 -207
  240. openrem/remapp/urls.py +456 -448
  241. openrem/remapp/version.py +11 -11
  242. openrem/remapp/views.py +1147 -1052
  243. openrem/remapp/views_admin.py +3876 -3936
  244. openrem/remapp/views_charts_ct.py +2110 -2058
  245. openrem/remapp/views_charts_dx.py +1906 -1836
  246. openrem/remapp/views_charts_mg.py +1349 -1196
  247. openrem/remapp/views_charts_nm.py +535 -535
  248. openrem/remapp/views_charts_rf.py +1219 -1241
  249. openrem/remapp/views_openskin.py +379 -384
  250. openrem/sample-config/openrem-consumer.service +12 -12
  251. openrem/sample-config/openrem-gunicorn.service +13 -13
  252. openrem/sample-config/openrem-server +14 -13
  253. openrem/sample-config/openrem_orthanc_config_linux.lua +454 -454
  254. openrem/sample-config/openrem_orthanc_config_windows.lua +455 -455
  255. openrem/sample-config/queue-init.bat +73 -73
  256. openrem/scripts/openrem_ctphilips.py +25 -25
  257. openrem/scripts/openrem_cttoshiba.py +28 -28
  258. openrem/scripts/openrem_dx.py +22 -22
  259. openrem/scripts/openrem_mg.py +22 -22
  260. openrem/scripts/openrem_nm.py +22 -22
  261. openrem/scripts/openrem_ptsizecsv.py +17 -17
  262. openrem/scripts/openrem_qr.py +12 -12
  263. openrem/scripts/openrem_rdsr.py +25 -25
  264. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/METADATA +39 -29
  265. openrem-1.0.0b3.dist-info/RECORD +379 -0
  266. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/WHEEL +1 -1
  267. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info/licenses}/COPYING-GPLv3 +674 -674
  268. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info/licenses}/LICENSE +22 -22
  269. OpenREM-1.0.0b2.dist-info/RECORD +0 -373
  270. openrem/remapp/static/js/charts/plotly-2.17.1.min.js +0 -8
  271. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_ctphilips.py +0 -0
  272. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_cttoshiba.py +0 -0
  273. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_dx.py +0 -0
  274. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_mg.py +0 -0
  275. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_nm.py +0 -0
  276. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_ptsizecsv.py +0 -0
  277. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_qr.py +0 -0
  278. {OpenREM-1.0.0b2.data → openrem-1.0.0b3.data}/scripts/openrem_rdsr.py +0 -0
  279. {OpenREM-1.0.0b2.dist-info → openrem-1.0.0b3.dist-info}/top_level.txt +0 -0
@@ -1,587 +1,587 @@
1
- /*!
2
- * Bootstrap v3.3.5 (http://getbootstrap.com)
3
- * Copyright 2011-2015 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 */
1
+ /*!
2
+ * Bootstrap v3.3.5 (http://getbootstrap.com)
3
+ * Copyright 2011-2015 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 */