apply-clients 7.1.35 → 7.1.36
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.
- package/android.html +4 -0
- package/build/css-loaders.js +34 -0
- package/build/dev-client.js +8 -0
- package/build/dev-server.js +151 -0
- package/build/example-server.js +80 -0
- package/build/release.sh +28 -0
- package/build/utils.js +80 -0
- package/build/webpack.base.conf.js +123 -0
- package/build/webpack.baseandroid.conf.js +123 -0
- package/build/webpack.dev.conf.js +43 -0
- package/build/webpack.devandroid.conf.js +34 -0
- package/build/webpack.example.conf.js +49 -0
- package/build/webpack.prod.conf.js +60 -0
- package/build/webpack.prodandroid.conf.js +60 -0
- package/dist-android.7z +0 -0
- package/dist.7z +0 -0
- package/index.html +4 -1
- package/package.json +11 -7
- package/src/AndroidApp.vue +21 -14
- package/src/App.vue +18 -20
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.eot +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.svg +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.ttf +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff +0 -0
- package/{dist-android/static → src/android-bootstrap/fonts}/glyphicons-halflings-regular.woff2 +0 -0
- package/src/android-bootstrap/less/.csscomb.json +304 -0
- package/src/android-bootstrap/less/.csslintrc +19 -0
- package/src/android-bootstrap/less/alerts.less +73 -0
- package/src/android-bootstrap/less/badges.less +66 -0
- package/src/android-bootstrap/less/bootstrap.less +56 -0
- package/src/android-bootstrap/less/breadcrumbs.less +26 -0
- package/src/android-bootstrap/less/button-groups.less +247 -0
- package/src/android-bootstrap/less/buttons.less +173 -0
- package/src/android-bootstrap/less/carousel.less +269 -0
- package/src/android-bootstrap/less/close.less +34 -0
- package/src/android-bootstrap/less/code.less +69 -0
- package/src/android-bootstrap/less/component-animations.less +33 -0
- package/src/android-bootstrap/less/dropdowns.less +216 -0
- package/src/android-bootstrap/less/forms.less +626 -0
- package/src/android-bootstrap/less/glyphicons.less +305 -0
- package/src/android-bootstrap/less/grid.less +84 -0
- package/src/android-bootstrap/less/input-groups.less +167 -0
- package/src/android-bootstrap/less/jumbotron.less +52 -0
- package/src/android-bootstrap/less/labels.less +64 -0
- package/src/android-bootstrap/less/list-group.less +141 -0
- package/src/android-bootstrap/less/media.less +66 -0
- package/src/android-bootstrap/less/mixins/alerts.less +14 -0
- package/src/android-bootstrap/less/mixins/background-variant.less +9 -0
- package/src/android-bootstrap/less/mixins/border-radius.less +18 -0
- package/src/android-bootstrap/less/mixins/buttons.less +69 -0
- package/src/android-bootstrap/less/mixins/center-block.less +7 -0
- package/src/android-bootstrap/less/mixins/clearfix.less +22 -0
- package/src/android-bootstrap/less/mixins/forms.less +90 -0
- package/src/android-bootstrap/less/mixins/gradients.less +59 -0
- package/src/android-bootstrap/less/mixins/grid-framework.less +92 -0
- package/src/android-bootstrap/less/mixins/grid.less +122 -0
- package/src/android-bootstrap/less/mixins/hide-text.less +21 -0
- package/src/android-bootstrap/less/mixins/image.less +33 -0
- package/src/android-bootstrap/less/mixins/labels.less +12 -0
- package/src/android-bootstrap/less/mixins/list-group.less +30 -0
- package/src/android-bootstrap/less/mixins/nav-divider.less +10 -0
- package/src/android-bootstrap/less/mixins/nav-vertical-align.less +9 -0
- package/src/android-bootstrap/less/mixins/opacity.less +8 -0
- package/src/android-bootstrap/less/mixins/pagination.less +24 -0
- package/src/android-bootstrap/less/mixins/panels.less +24 -0
- package/src/android-bootstrap/less/mixins/progress-bar.less +10 -0
- package/src/android-bootstrap/less/mixins/reset-filter.less +8 -0
- package/src/android-bootstrap/less/mixins/reset-text.less +18 -0
- package/src/android-bootstrap/less/mixins/resize.less +6 -0
- package/src/android-bootstrap/less/mixins/responsive-visibility.less +15 -0
- package/src/android-bootstrap/less/mixins/size.less +10 -0
- package/src/android-bootstrap/less/mixins/tab-focus.less +9 -0
- package/src/android-bootstrap/less/mixins/table-row.less +44 -0
- package/src/android-bootstrap/less/mixins/text-emphasis.less +9 -0
- package/src/android-bootstrap/less/mixins/text-overflow.less +8 -0
- package/src/android-bootstrap/less/mixins/vendor-prefixes.less +227 -0
- package/src/android-bootstrap/less/mixins.less +40 -0
- package/src/android-bootstrap/less/modals.less +151 -0
- package/src/android-bootstrap/less/navbar.less +660 -0
- package/src/android-bootstrap/less/navs.less +302 -0
- package/src/android-bootstrap/less/normalize.less +424 -0
- package/src/android-bootstrap/less/pager.less +76 -0
- package/src/android-bootstrap/less/pagination.less +89 -0
- package/src/android-bootstrap/less/panels.less +274 -0
- package/src/android-bootstrap/less/popovers.less +131 -0
- package/src/android-bootstrap/less/print.less +101 -0
- package/src/android-bootstrap/less/progress-bars.less +87 -0
- package/src/android-bootstrap/less/responsive-embed.less +35 -0
- package/src/android-bootstrap/less/responsive-utilities.less +194 -0
- package/src/android-bootstrap/less/scaffolding.less +161 -0
- package/src/android-bootstrap/less/tables.less +262 -0
- package/src/android-bootstrap/less/theme.less +291 -0
- package/src/android-bootstrap/less/thumbnails.less +36 -0
- package/src/android-bootstrap/less/tooltip.less +102 -0
- package/src/android-bootstrap/less/type.less +303 -0
- package/src/android-bootstrap/less/utilities.less +55 -0
- package/src/android-bootstrap/less/variables.less +896 -0
- package/src/android-bootstrap/less/wells.less +29 -0
- package/src/android.js +7 -4
- package/src/apply.js +85 -69
- package/src/applyAndroid.js +52 -39
- package/src/assets//345/210/240/351/231/244.png +0 -0
- package/src/components/android/AppOnetomany.vue +301 -0
- package/src/components/android/AppServiceView.vue +568 -0
- package/src/components/android/AppSign.vue +169 -0
- package/src/components/android/AppTakePic.vue +142 -0
- package/src/components/android/AppUpload.vue +232 -0
- package/src/components/android/Ignition/VentilationIgnition.vue +328 -0
- package/src/components/android/Ignition/VentilationIgnitionHandle.vue +330 -0
- package/src/components/android/Process/AppExplorationUser.vue +352 -0
- package/src/components/android/Process/AppServiceControl.vue +1050 -0
- package/src/components/android/Process/Processes/AppDevicesManagement.vue +336 -0
- package/src/components/android/Process/Processes/AppInstallationDetails.vue +770 -0
- package/src/components/android/Process/Processes/SurveyUserSign.vue +56 -0
- package/src/components/android/Sign/AppSignTask.vue +182 -0
- package/src/components/android/Sign/SignProcess.vue +102 -0
- package/src/components/android/Supervisory/AppProcessSupervisory.vue +183 -0
- package/src/components/android/Supervisory/AppSupervisoryCart.vue +121 -0
- package/src/components/android/Task/Build/BuildTsak.vue +114 -0
- package/src/components/android/Task/Survey/SurveyTsak.vue +112 -0
- package/src/components/android/TaskGraph.vue +130 -0
- package/src/components/android/newPackage/customerServiceManager.vue +218 -0
- package/src/components/android/newPackage/designDrawings.vue +94 -0
- package/src/components/android/newPackage/detailedData.vue +24 -0
- package/src/components/android/newPackage/projectPrice.vue +218 -0
- package/src/components/image/dwg.png +0 -0
- package/src/components/image/dxf.png +0 -0
- package/src/components/product/ApplyCharge/ApplyChargeList.vue +141 -62
- package/src/components/product/ApplyCharge/ApplyChargeSearch.vue +2 -2
- package/src/components/product/Function/InstallFunction.vue +53 -69
- package/src/components/product/Function/InstallInfoSelect.vue +118 -105
- package/src/components/product/Function/Service/FunctionServiceControl.vue +323 -148
- package/src/components/product/Ignition/IgnitionDispatch.vue +277 -0
- package/src/components/product/Ignition/IgnitionRecord.vue +216 -0
- package/src/components/product/Onetomany.vue +377 -0
- package/src/components/product/Print/BuildOrder/buildOrderList.vue +229 -0
- package/src/components/product/Print/BuildOrder/printBuildOrder.vue +265 -0
- package/src/components/product/Process/ExplorationSelect.vue +374 -347
- package/src/components/product/Process/ExplorationUser.vue +151 -138
- package/src/components/product/Process/Processes/ApplyMapCom.vue +83 -0
- package/src/components/product/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Process/Processes/InstallationDetails.vue +823 -484
- package/src/components/product/Process/Processes/Print/img/10101.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010109.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010110.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010111.png +0 -0
- package/src/components/product/Process/Processes/Print/img/1010112.png +0 -0
- package/src/components/product/Process/Processes/Print/printCharge.vue +142 -0
- package/src/components/product/Process/Processes/addressAndUserinfoManagement.vue +59 -113
- package/src/components/product/Process/Processes/chargeManagement.vue +546 -562
- package/src/components/product/Process/Processes/devicesManagement.vue +360 -0
- package/src/components/product/Process/Processes/selectApply.vue +250 -0
- package/src/components/product/Process/Processes/selectUserinfo.vue +182 -0
- package/src/components/product/Process/Processes/supplementalAgreement.vue +182 -181
- package/src/components/product/Process/Service/ServiceControl.vue +1417 -856
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +557 -680
- package/src/components/product/Stop/StopApply.vue +105 -0
- package/src/components/product/Stop/StopApplyList.vue +224 -0
- package/src/components/product/Supervisory/NewSupervisoryhCart.vue +167 -0
- package/src/components/product/Supervisory/Service/SupervisoryServiceControl.vue +231 -199
- package/src/components/product/Supervisory/SupervisoryControl.vue +22 -33
- package/src/components/product/Supervisory/SupervisoryList.vue +258 -208
- package/src/components/product/Supervisory/SupervisoryhCart.vue +52 -36
- package/src/components/product/VueUtils/ApplyUpload.vue +279 -261
- package/src/components/product/VueUtils/HighMeter.vue +208 -0
- package/src/expandcssAndroid.less +1034 -0
- package/src/main.js +27 -23
- package/src/public/history/HistoryApplyList.vue +108 -0
- package/src/public/history/PublicHistoryApply.vue +39 -0
- package/src/public/history/PublicSupervisoryhCart.vue +72 -0
- package/src/public/order/PublicOrderApply.vue +387 -0
- package/dist-android/index.html +0 -3
- package/dist-android/static/.gitkeep +0 -0
- package/dist-android/static/0.js +0 -2
- package/dist-android/static/0.js.map +0 -1
- package/dist-android/static/1.js +0 -2
- package/dist-android/static/1.js.map +0 -1
- package/dist-android/static/10.js +0 -2
- package/dist-android/static/10.js.map +0 -1
- package/dist-android/static/100.js +0 -2
- package/dist-android/static/100.js.map +0 -1
- package/dist-android/static/11.js +0 -2
- package/dist-android/static/11.js.map +0 -1
- package/dist-android/static/12.js +0 -2
- package/dist-android/static/12.js.map +0 -1
- package/dist-android/static/13.js +0 -2
- package/dist-android/static/13.js.map +0 -1
- package/dist-android/static/14.js +0 -2
- package/dist-android/static/14.js.map +0 -1
- package/dist-android/static/15.js +0 -2
- package/dist-android/static/15.js.map +0 -1
- package/dist-android/static/16.js +0 -2
- package/dist-android/static/16.js.map +0 -1
- package/dist-android/static/17.js +0 -2
- package/dist-android/static/17.js.map +0 -1
- package/dist-android/static/18.js +0 -2
- package/dist-android/static/18.js.map +0 -1
- package/dist-android/static/19.js +0 -2
- package/dist-android/static/19.js.map +0 -1
- package/dist-android/static/2.js +0 -2
- package/dist-android/static/2.js.map +0 -1
- package/dist-android/static/20.js +0 -2
- package/dist-android/static/20.js.map +0 -1
- package/dist-android/static/21.js +0 -2
- package/dist-android/static/21.js.map +0 -1
- package/dist-android/static/22.js +0 -2
- package/dist-android/static/22.js.map +0 -1
- package/dist-android/static/23.js +0 -2
- package/dist-android/static/23.js.map +0 -1
- package/dist-android/static/24.js +0 -2
- package/dist-android/static/24.js.map +0 -1
- package/dist-android/static/25.js +0 -2
- package/dist-android/static/25.js.map +0 -1
- package/dist-android/static/26.js +0 -2
- package/dist-android/static/26.js.map +0 -1
- package/dist-android/static/27.js +0 -2
- package/dist-android/static/27.js.map +0 -1
- package/dist-android/static/28.js +0 -2
- package/dist-android/static/28.js.map +0 -1
- package/dist-android/static/29.js +0 -2
- package/dist-android/static/29.js.map +0 -1
- package/dist-android/static/3.js +0 -2
- package/dist-android/static/3.js.map +0 -1
- package/dist-android/static/30.js +0 -2
- package/dist-android/static/30.js.map +0 -1
- package/dist-android/static/31.js +0 -2
- package/dist-android/static/31.js.map +0 -1
- package/dist-android/static/32.js +0 -2
- package/dist-android/static/32.js.map +0 -1
- package/dist-android/static/33.js +0 -2
- package/dist-android/static/33.js.map +0 -1
- package/dist-android/static/34.js +0 -2
- package/dist-android/static/34.js.map +0 -1
- package/dist-android/static/35.js +0 -2
- package/dist-android/static/35.js.map +0 -1
- package/dist-android/static/36.js +0 -2
- package/dist-android/static/36.js.map +0 -1
- package/dist-android/static/37.js +0 -2
- package/dist-android/static/37.js.map +0 -1
- package/dist-android/static/38.js +0 -2
- package/dist-android/static/38.js.map +0 -1
- package/dist-android/static/39.js +0 -2
- package/dist-android/static/39.js.map +0 -1
- package/dist-android/static/4.js +0 -2
- package/dist-android/static/4.js.map +0 -1
- package/dist-android/static/40.js +0 -2
- package/dist-android/static/40.js.map +0 -1
- package/dist-android/static/41.js +0 -2
- package/dist-android/static/41.js.map +0 -1
- package/dist-android/static/42.js +0 -2
- package/dist-android/static/42.js.map +0 -1
- package/dist-android/static/43.js +0 -2
- package/dist-android/static/43.js.map +0 -1
- package/dist-android/static/44.js +0 -2
- package/dist-android/static/44.js.map +0 -1
- package/dist-android/static/45.js +0 -2
- package/dist-android/static/45.js.map +0 -1
- package/dist-android/static/46.js +0 -2
- package/dist-android/static/46.js.map +0 -1
- package/dist-android/static/47.js +0 -2
- package/dist-android/static/47.js.map +0 -1
- package/dist-android/static/48.js +0 -2
- package/dist-android/static/48.js.map +0 -1
- package/dist-android/static/49.js +0 -2
- package/dist-android/static/49.js.map +0 -1
- package/dist-android/static/5.js +0 -2
- package/dist-android/static/5.js.map +0 -1
- package/dist-android/static/50.js +0 -2
- package/dist-android/static/50.js.map +0 -1
- package/dist-android/static/51.js +0 -2
- package/dist-android/static/51.js.map +0 -1
- package/dist-android/static/52.js +0 -2
- package/dist-android/static/52.js.map +0 -1
- package/dist-android/static/53.js +0 -2
- package/dist-android/static/53.js.map +0 -1
- package/dist-android/static/54.js +0 -2
- package/dist-android/static/54.js.map +0 -1
- package/dist-android/static/55.js +0 -2
- package/dist-android/static/55.js.map +0 -1
- package/dist-android/static/56.js +0 -2
- package/dist-android/static/56.js.map +0 -1
- package/dist-android/static/57.js +0 -2
- package/dist-android/static/57.js.map +0 -1
- package/dist-android/static/58.js +0 -2
- package/dist-android/static/58.js.map +0 -1
- package/dist-android/static/59.js +0 -2
- package/dist-android/static/59.js.map +0 -1
- package/dist-android/static/6.js +0 -2
- package/dist-android/static/6.js.map +0 -1
- package/dist-android/static/60.js +0 -2
- package/dist-android/static/60.js.map +0 -1
- package/dist-android/static/61.js +0 -2
- package/dist-android/static/61.js.map +0 -1
- package/dist-android/static/62.js +0 -2
- package/dist-android/static/62.js.map +0 -1
- package/dist-android/static/63.js +0 -2
- package/dist-android/static/63.js.map +0 -1
- package/dist-android/static/64.js +0 -2
- package/dist-android/static/64.js.map +0 -1
- package/dist-android/static/65.js +0 -2
- package/dist-android/static/65.js.map +0 -1
- package/dist-android/static/66.js +0 -2
- package/dist-android/static/66.js.map +0 -1
- package/dist-android/static/67.js +0 -2
- package/dist-android/static/67.js.map +0 -1
- package/dist-android/static/68.js +0 -2
- package/dist-android/static/68.js.map +0 -1
- package/dist-android/static/69.js +0 -2
- package/dist-android/static/69.js.map +0 -1
- package/dist-android/static/7.js +0 -6
- package/dist-android/static/7.js.map +0 -1
- package/dist-android/static/70.js +0 -2
- package/dist-android/static/70.js.map +0 -1
- package/dist-android/static/71.js +0 -2
- package/dist-android/static/71.js.map +0 -1
- package/dist-android/static/72.js +0 -2
- package/dist-android/static/72.js.map +0 -1
- package/dist-android/static/73.js +0 -2
- package/dist-android/static/73.js.map +0 -1
- package/dist-android/static/74.js +0 -2
- package/dist-android/static/74.js.map +0 -1
- package/dist-android/static/75.js +0 -2
- package/dist-android/static/75.js.map +0 -1
- package/dist-android/static/76.js +0 -2
- package/dist-android/static/76.js.map +0 -1
- package/dist-android/static/77.js +0 -2
- package/dist-android/static/77.js.map +0 -1
- package/dist-android/static/78.js +0 -2
- package/dist-android/static/78.js.map +0 -1
- package/dist-android/static/79.js +0 -2
- package/dist-android/static/79.js.map +0 -1
- package/dist-android/static/8.js +0 -2
- package/dist-android/static/8.js.map +0 -1
- package/dist-android/static/80.js +0 -2
- package/dist-android/static/80.js.map +0 -1
- package/dist-android/static/81.js +0 -2
- package/dist-android/static/81.js.map +0 -1
- package/dist-android/static/82.js +0 -2
- package/dist-android/static/82.js.map +0 -1
- package/dist-android/static/83.js +0 -2
- package/dist-android/static/83.js.map +0 -1
- package/dist-android/static/84.js +0 -2
- package/dist-android/static/84.js.map +0 -1
- package/dist-android/static/85.js +0 -2
- package/dist-android/static/85.js.map +0 -1
- package/dist-android/static/86.js +0 -2
- package/dist-android/static/86.js.map +0 -1
- package/dist-android/static/87.js +0 -2
- package/dist-android/static/87.js.map +0 -1
- package/dist-android/static/88.js +0 -2
- package/dist-android/static/88.js.map +0 -1
- package/dist-android/static/89.js +0 -2
- package/dist-android/static/89.js.map +0 -1
- package/dist-android/static/9.js +0 -3
- package/dist-android/static/9.js.map +0 -1
- package/dist-android/static/90.js +0 -2
- package/dist-android/static/90.js.map +0 -1
- package/dist-android/static/91.js +0 -2
- package/dist-android/static/91.js.map +0 -1
- package/dist-android/static/92.js +0 -2
- package/dist-android/static/92.js.map +0 -1
- package/dist-android/static/93.js +0 -2
- package/dist-android/static/93.js.map +0 -1
- package/dist-android/static/94.js +0 -2
- package/dist-android/static/94.js.map +0 -1
- package/dist-android/static/95.js +0 -2
- package/dist-android/static/95.js.map +0 -1
- package/dist-android/static/96.js +0 -2
- package/dist-android/static/96.js.map +0 -1
- package/dist-android/static/97.js +0 -2
- package/dist-android/static/97.js.map +0 -1
- package/dist-android/static/98.js +0 -2
- package/dist-android/static/98.js.map +0 -1
- package/dist-android/static/99.js +0 -2
- package/dist-android/static/99.js.map +0 -1
- package/dist-android/static/app.css +0 -2
- package/dist-android/static/app.css.map +0 -1
- package/dist-android/static/app.js +0 -80
- package/dist-android/static/app.js.map +0 -1
- package/dist-android/static/batchleft.png +0 -0
- package/dist-android/static/batchright.png +0 -0
- package/dist-android/static/bluemainbg.jpg +0 -0
- package/dist-android/static/config.json +0 -7
- package/dist-android/static/denglu.png +0 -0
- package/dist-android/static/huangtengbiaozhi.png +0 -0
- package/dist-android/static/jingyin.jpg +0 -0
- package/dist-android/static/login_bg.jpg +0 -0
- package/dist-android/static/login_title.png +0 -0
- package/dist-android/static/login_title1.png +0 -0
- package/dist-android/static/loginbg.jpg +0 -0
- package/dist-android/static/loginlogo.png +0 -0
- package/dist-android/static/main_logo.png +0 -0
- package/dist-android/static/mainbg.jpg +0 -0
- package/dist-android/static/menulogo.png +0 -0
- package/dist-android/static/newmainbg.jpg +0 -0
- package/dist-android/static/psicon.png +0 -0
- package/dist-android/static/singleleft.png +0 -0
- package/dist-android/static/singleright.png +0 -0
- package/dist-android/static/treeopen.png +0 -0
- package/dist-android/static/treeout.png +0 -0
- package/dist-android/static/treeset.png +0 -0
- package/dist-android/static/usericon.png +0 -0
- package/dist-android/static/workflow_apply.json +0 -766
- package/dist-android/static/xinxi.png +0 -0
- package/dist-android/static//344/277/256/346/224/271/345/257/206/347/240/201.png +0 -0
- package/dist-android/static//345/256/211/346/243/200/345/257/274/350/210/252/347/253/226/345/261/2173.png +0 -0
- package/dist-android/static//345/257/274/345/207/272/346/225/260/346/215/256.png +0 -0
- package/dist-android/static//346/270/205/347/251/272/346/225/260/346/215/256.png +0 -0
- package/src/components/app_apply/Acceptance.vue +0 -298
- package/src/components/app_apply/ApplyApp.vue +0 -91
- package/src/components/app_apply/ApplyDownList.vue +0 -166
- package/src/components/app_apply/ApplyInfo.vue +0 -56
- package/src/components/app_apply/ApplyListUpload.vue +0 -258
- package/src/components/app_apply/ApplyToDoList.vue +0 -165
- package/src/components/app_apply/ApplyUserInfo.vue +0 -56
- package/src/components/app_apply/FieldExploration.vue +0 -267
- package/src/components/app_apply/PlaceControler.vue +0 -258
- package/src/components/app_apply/ServiceControl.vue +0 -267
- package/src/components/app_apply/ServiceView.vue +0 -355
- package/src/components/app_apply/ToolsPage.vue +0 -51
- package/src/components/app_apply/Ventilation.vue +0 -199
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Function/StopApplyCrrdList.vue +0 -176
- package/src/components/product/Function/functions/ApplyRecordCancel.vue +0 -102
- package/src/components/product/Function/functions/StopInstall.vue +0 -106
- package/src/components/product/Process/Processes/printCharge.vue +0 -126
- package/src/components/product/Process/ShowBackReason.vue +0 -32
- package/src/components/product/ReportForm/GasIgnitionSummary.vue +0 -352
- package/src/components/product/VueUtils/ToolsPage.vue +0 -51
- package/src/components/product/VueUtils/Tree.vue +0 -330
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
{
|
|
2
|
+
"always-semicolon": true,
|
|
3
|
+
"block-indent": 2,
|
|
4
|
+
"color-case": "lower",
|
|
5
|
+
"color-shorthand": true,
|
|
6
|
+
"element-case": "lower",
|
|
7
|
+
"eof-newline": true,
|
|
8
|
+
"leading-zero": false,
|
|
9
|
+
"remove-empty-rulesets": true,
|
|
10
|
+
"space-after-colon": 1,
|
|
11
|
+
"space-after-combinator": 1,
|
|
12
|
+
"space-before-selector-delimiter": 0,
|
|
13
|
+
"space-between-declarations": "\n",
|
|
14
|
+
"space-after-opening-brace": "\n",
|
|
15
|
+
"space-before-closing-brace": "\n",
|
|
16
|
+
"space-before-colon": 0,
|
|
17
|
+
"space-before-combinator": 1,
|
|
18
|
+
"space-before-opening-brace": 1,
|
|
19
|
+
"strip-spaces": true,
|
|
20
|
+
"unitless-zero": true,
|
|
21
|
+
"vendor-prefix-align": true,
|
|
22
|
+
"sort-order": [
|
|
23
|
+
[
|
|
24
|
+
"position",
|
|
25
|
+
"top",
|
|
26
|
+
"right",
|
|
27
|
+
"bottom",
|
|
28
|
+
"left",
|
|
29
|
+
"z-index",
|
|
30
|
+
"display",
|
|
31
|
+
"float",
|
|
32
|
+
"width",
|
|
33
|
+
"min-width",
|
|
34
|
+
"max-width",
|
|
35
|
+
"height",
|
|
36
|
+
"min-height",
|
|
37
|
+
"max-height",
|
|
38
|
+
"-webkit-box-sizing",
|
|
39
|
+
"-moz-box-sizing",
|
|
40
|
+
"box-sizing",
|
|
41
|
+
"-webkit-appearance",
|
|
42
|
+
"padding",
|
|
43
|
+
"padding-top",
|
|
44
|
+
"padding-right",
|
|
45
|
+
"padding-bottom",
|
|
46
|
+
"padding-left",
|
|
47
|
+
"margin",
|
|
48
|
+
"margin-top",
|
|
49
|
+
"margin-right",
|
|
50
|
+
"margin-bottom",
|
|
51
|
+
"margin-left",
|
|
52
|
+
"overflow",
|
|
53
|
+
"overflow-x",
|
|
54
|
+
"overflow-y",
|
|
55
|
+
"-webkit-overflow-scrolling",
|
|
56
|
+
"-ms-overflow-x",
|
|
57
|
+
"-ms-overflow-y",
|
|
58
|
+
"-ms-overflow-style",
|
|
59
|
+
"clip",
|
|
60
|
+
"clear",
|
|
61
|
+
"font",
|
|
62
|
+
"font-family",
|
|
63
|
+
"font-size",
|
|
64
|
+
"font-style",
|
|
65
|
+
"font-weight",
|
|
66
|
+
"font-variant",
|
|
67
|
+
"font-size-adjust",
|
|
68
|
+
"font-stretch",
|
|
69
|
+
"font-effect",
|
|
70
|
+
"font-emphasize",
|
|
71
|
+
"font-emphasize-position",
|
|
72
|
+
"font-emphasize-style",
|
|
73
|
+
"font-smooth",
|
|
74
|
+
"-webkit-hyphens",
|
|
75
|
+
"-moz-hyphens",
|
|
76
|
+
"hyphens",
|
|
77
|
+
"line-height",
|
|
78
|
+
"color",
|
|
79
|
+
"text-align",
|
|
80
|
+
"-webkit-text-align-last",
|
|
81
|
+
"-moz-text-align-last",
|
|
82
|
+
"-ms-text-align-last",
|
|
83
|
+
"text-align-last",
|
|
84
|
+
"text-emphasis",
|
|
85
|
+
"text-emphasis-color",
|
|
86
|
+
"text-emphasis-style",
|
|
87
|
+
"text-emphasis-position",
|
|
88
|
+
"text-decoration",
|
|
89
|
+
"text-indent",
|
|
90
|
+
"text-justify",
|
|
91
|
+
"text-outline",
|
|
92
|
+
"-ms-text-overflow",
|
|
93
|
+
"text-overflow",
|
|
94
|
+
"text-overflow-ellipsis",
|
|
95
|
+
"text-overflow-mode",
|
|
96
|
+
"text-shadow",
|
|
97
|
+
"text-transform",
|
|
98
|
+
"text-wrap",
|
|
99
|
+
"-webkit-text-size-adjust",
|
|
100
|
+
"-ms-text-size-adjust",
|
|
101
|
+
"letter-spacing",
|
|
102
|
+
"-ms-word-break",
|
|
103
|
+
"word-break",
|
|
104
|
+
"word-spacing",
|
|
105
|
+
"-ms-word-wrap",
|
|
106
|
+
"word-wrap",
|
|
107
|
+
"-moz-tab-size",
|
|
108
|
+
"-o-tab-size",
|
|
109
|
+
"tab-size",
|
|
110
|
+
"white-space",
|
|
111
|
+
"vertical-align",
|
|
112
|
+
"list-style",
|
|
113
|
+
"list-style-position",
|
|
114
|
+
"list-style-type",
|
|
115
|
+
"list-style-image",
|
|
116
|
+
"pointer-events",
|
|
117
|
+
"-ms-touch-action",
|
|
118
|
+
"touch-action",
|
|
119
|
+
"cursor",
|
|
120
|
+
"visibility",
|
|
121
|
+
"zoom",
|
|
122
|
+
"flex-direction",
|
|
123
|
+
"flex-order",
|
|
124
|
+
"flex-pack",
|
|
125
|
+
"flex-align",
|
|
126
|
+
"table-layout",
|
|
127
|
+
"empty-cells",
|
|
128
|
+
"caption-side",
|
|
129
|
+
"border-spacing",
|
|
130
|
+
"border-collapse",
|
|
131
|
+
"content",
|
|
132
|
+
"quotes",
|
|
133
|
+
"counter-reset",
|
|
134
|
+
"counter-increment",
|
|
135
|
+
"resize",
|
|
136
|
+
"-webkit-user-select",
|
|
137
|
+
"-moz-user-select",
|
|
138
|
+
"-ms-user-select",
|
|
139
|
+
"-o-user-select",
|
|
140
|
+
"user-select",
|
|
141
|
+
"nav-index",
|
|
142
|
+
"nav-up",
|
|
143
|
+
"nav-right",
|
|
144
|
+
"nav-down",
|
|
145
|
+
"nav-left",
|
|
146
|
+
"background",
|
|
147
|
+
"background-color",
|
|
148
|
+
"background-image",
|
|
149
|
+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.gradient",
|
|
150
|
+
"filter:progid:DXImageTransform.Microsoft.gradient",
|
|
151
|
+
"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader",
|
|
152
|
+
"filter",
|
|
153
|
+
"background-repeat",
|
|
154
|
+
"background-attachment",
|
|
155
|
+
"background-position",
|
|
156
|
+
"background-position-x",
|
|
157
|
+
"background-position-y",
|
|
158
|
+
"-webkit-background-clip",
|
|
159
|
+
"-moz-background-clip",
|
|
160
|
+
"background-clip",
|
|
161
|
+
"background-origin",
|
|
162
|
+
"-webkit-background-size",
|
|
163
|
+
"-moz-background-size",
|
|
164
|
+
"-o-background-size",
|
|
165
|
+
"background-size",
|
|
166
|
+
"border",
|
|
167
|
+
"border-color",
|
|
168
|
+
"border-style",
|
|
169
|
+
"border-width",
|
|
170
|
+
"border-top",
|
|
171
|
+
"border-top-color",
|
|
172
|
+
"border-top-style",
|
|
173
|
+
"border-top-width",
|
|
174
|
+
"border-right",
|
|
175
|
+
"border-right-color",
|
|
176
|
+
"border-right-style",
|
|
177
|
+
"border-right-width",
|
|
178
|
+
"border-bottom",
|
|
179
|
+
"border-bottom-color",
|
|
180
|
+
"border-bottom-style",
|
|
181
|
+
"border-bottom-width",
|
|
182
|
+
"border-left",
|
|
183
|
+
"border-left-color",
|
|
184
|
+
"border-left-style",
|
|
185
|
+
"border-left-width",
|
|
186
|
+
"border-radius",
|
|
187
|
+
"border-top-left-radius",
|
|
188
|
+
"border-top-right-radius",
|
|
189
|
+
"border-bottom-right-radius",
|
|
190
|
+
"border-bottom-left-radius",
|
|
191
|
+
"-webkit-border-image",
|
|
192
|
+
"-moz-border-image",
|
|
193
|
+
"-o-border-image",
|
|
194
|
+
"border-image",
|
|
195
|
+
"-webkit-border-image-source",
|
|
196
|
+
"-moz-border-image-source",
|
|
197
|
+
"-o-border-image-source",
|
|
198
|
+
"border-image-source",
|
|
199
|
+
"-webkit-border-image-slice",
|
|
200
|
+
"-moz-border-image-slice",
|
|
201
|
+
"-o-border-image-slice",
|
|
202
|
+
"border-image-slice",
|
|
203
|
+
"-webkit-border-image-width",
|
|
204
|
+
"-moz-border-image-width",
|
|
205
|
+
"-o-border-image-width",
|
|
206
|
+
"border-image-width",
|
|
207
|
+
"-webkit-border-image-outset",
|
|
208
|
+
"-moz-border-image-outset",
|
|
209
|
+
"-o-border-image-outset",
|
|
210
|
+
"border-image-outset",
|
|
211
|
+
"-webkit-border-image-repeat",
|
|
212
|
+
"-moz-border-image-repeat",
|
|
213
|
+
"-o-border-image-repeat",
|
|
214
|
+
"border-image-repeat",
|
|
215
|
+
"outline",
|
|
216
|
+
"outline-width",
|
|
217
|
+
"outline-style",
|
|
218
|
+
"outline-color",
|
|
219
|
+
"outline-offset",
|
|
220
|
+
"-webkit-box-shadow",
|
|
221
|
+
"-moz-box-shadow",
|
|
222
|
+
"box-shadow",
|
|
223
|
+
"filter:progid:DXImageTransform.Microsoft.Alpha(Opacity",
|
|
224
|
+
"-ms-filter:\\'progid:DXImageTransform.Microsoft.Alpha",
|
|
225
|
+
"opacity",
|
|
226
|
+
"-ms-interpolation-mode",
|
|
227
|
+
"-webkit-transition",
|
|
228
|
+
"-moz-transition",
|
|
229
|
+
"-ms-transition",
|
|
230
|
+
"-o-transition",
|
|
231
|
+
"transition",
|
|
232
|
+
"-webkit-transition-delay",
|
|
233
|
+
"-moz-transition-delay",
|
|
234
|
+
"-ms-transition-delay",
|
|
235
|
+
"-o-transition-delay",
|
|
236
|
+
"transition-delay",
|
|
237
|
+
"-webkit-transition-timing-function",
|
|
238
|
+
"-moz-transition-timing-function",
|
|
239
|
+
"-ms-transition-timing-function",
|
|
240
|
+
"-o-transition-timing-function",
|
|
241
|
+
"transition-timing-function",
|
|
242
|
+
"-webkit-transition-duration",
|
|
243
|
+
"-moz-transition-duration",
|
|
244
|
+
"-ms-transition-duration",
|
|
245
|
+
"-o-transition-duration",
|
|
246
|
+
"transition-duration",
|
|
247
|
+
"-webkit-transition-property",
|
|
248
|
+
"-moz-transition-property",
|
|
249
|
+
"-ms-transition-property",
|
|
250
|
+
"-o-transition-property",
|
|
251
|
+
"transition-property",
|
|
252
|
+
"-webkit-transform",
|
|
253
|
+
"-moz-transform",
|
|
254
|
+
"-ms-transform",
|
|
255
|
+
"-o-transform",
|
|
256
|
+
"transform",
|
|
257
|
+
"-webkit-transform-origin",
|
|
258
|
+
"-moz-transform-origin",
|
|
259
|
+
"-ms-transform-origin",
|
|
260
|
+
"-o-transform-origin",
|
|
261
|
+
"transform-origin",
|
|
262
|
+
"-webkit-animation",
|
|
263
|
+
"-moz-animation",
|
|
264
|
+
"-ms-animation",
|
|
265
|
+
"-o-animation",
|
|
266
|
+
"animation",
|
|
267
|
+
"-webkit-animation-name",
|
|
268
|
+
"-moz-animation-name",
|
|
269
|
+
"-ms-animation-name",
|
|
270
|
+
"-o-animation-name",
|
|
271
|
+
"animation-name",
|
|
272
|
+
"-webkit-animation-duration",
|
|
273
|
+
"-moz-animation-duration",
|
|
274
|
+
"-ms-animation-duration",
|
|
275
|
+
"-o-animation-duration",
|
|
276
|
+
"animation-duration",
|
|
277
|
+
"-webkit-animation-play-state",
|
|
278
|
+
"-moz-animation-play-state",
|
|
279
|
+
"-ms-animation-play-state",
|
|
280
|
+
"-o-animation-play-state",
|
|
281
|
+
"animation-play-state",
|
|
282
|
+
"-webkit-animation-timing-function",
|
|
283
|
+
"-moz-animation-timing-function",
|
|
284
|
+
"-ms-animation-timing-function",
|
|
285
|
+
"-o-animation-timing-function",
|
|
286
|
+
"animation-timing-function",
|
|
287
|
+
"-webkit-animation-delay",
|
|
288
|
+
"-moz-animation-delay",
|
|
289
|
+
"-ms-animation-delay",
|
|
290
|
+
"-o-animation-delay",
|
|
291
|
+
"animation-delay",
|
|
292
|
+
"-webkit-animation-iteration-count",
|
|
293
|
+
"-moz-animation-iteration-count",
|
|
294
|
+
"-ms-animation-iteration-count",
|
|
295
|
+
"-o-animation-iteration-count",
|
|
296
|
+
"animation-iteration-count",
|
|
297
|
+
"-webkit-animation-direction",
|
|
298
|
+
"-moz-animation-direction",
|
|
299
|
+
"-ms-animation-direction",
|
|
300
|
+
"-o-animation-direction",
|
|
301
|
+
"animation-direction"
|
|
302
|
+
]
|
|
303
|
+
]
|
|
304
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"adjoining-classes": false,
|
|
3
|
+
"box-sizing": false,
|
|
4
|
+
"box-model": false,
|
|
5
|
+
"compatible-vendor-prefixes": false,
|
|
6
|
+
"floats": false,
|
|
7
|
+
"font-sizes": false,
|
|
8
|
+
"gradients": false,
|
|
9
|
+
"important": false,
|
|
10
|
+
"known-properties": false,
|
|
11
|
+
"outline-none": false,
|
|
12
|
+
"qualified-headings": false,
|
|
13
|
+
"regex-selectors": false,
|
|
14
|
+
"shorthand": false,
|
|
15
|
+
"text-indent": false,
|
|
16
|
+
"unique-headings": false,
|
|
17
|
+
"universal-selector": false,
|
|
18
|
+
"unqualified-attributes": false
|
|
19
|
+
}
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Alerts
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Base styles
|
|
7
|
+
// -------------------------
|
|
8
|
+
|
|
9
|
+
.alert {
|
|
10
|
+
padding: @alert-padding;
|
|
11
|
+
margin-bottom: @line-height-computed;
|
|
12
|
+
border: 1px solid transparent;
|
|
13
|
+
border-radius: @alert-border-radius;
|
|
14
|
+
|
|
15
|
+
// Headings for larger alerts
|
|
16
|
+
h4 {
|
|
17
|
+
margin-top: 0;
|
|
18
|
+
// Specified for the h4 to prevent conflicts of changing @headings-color
|
|
19
|
+
color: inherit;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Provide class for links that match alerts
|
|
23
|
+
.alert-link {
|
|
24
|
+
font-weight: @alert-link-font-weight;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Improve alignment and spacing of inner content
|
|
28
|
+
> p,
|
|
29
|
+
> ul {
|
|
30
|
+
margin-bottom: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
> p + p {
|
|
34
|
+
margin-top: 5px;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Dismissible alerts
|
|
39
|
+
//
|
|
40
|
+
// Expand the right padding and account for the close button's positioning.
|
|
41
|
+
|
|
42
|
+
.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.
|
|
43
|
+
.alert-dismissible {
|
|
44
|
+
padding-right: (@alert-padding + 20);
|
|
45
|
+
|
|
46
|
+
// Adjust close link position
|
|
47
|
+
.close {
|
|
48
|
+
position: relative;
|
|
49
|
+
top: -2px;
|
|
50
|
+
right: -21px;
|
|
51
|
+
color: inherit;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
// Alternate styles
|
|
56
|
+
//
|
|
57
|
+
// Generate contextual modifier classes for colorizing the alert.
|
|
58
|
+
|
|
59
|
+
.alert-success {
|
|
60
|
+
.alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.alert-info {
|
|
64
|
+
.alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.alert-warning {
|
|
68
|
+
.alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.alert-danger {
|
|
72
|
+
.alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);
|
|
73
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Badges
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Base class
|
|
7
|
+
.badge {
|
|
8
|
+
display: inline-block;
|
|
9
|
+
min-width: 10px;
|
|
10
|
+
padding: 3px 7px;
|
|
11
|
+
font-size: @font-size-small;
|
|
12
|
+
font-weight: @badge-font-weight;
|
|
13
|
+
color: @badge-color;
|
|
14
|
+
line-height: @badge-line-height;
|
|
15
|
+
vertical-align: middle;
|
|
16
|
+
white-space: nowrap;
|
|
17
|
+
text-align: center;
|
|
18
|
+
background-color: @badge-bg;
|
|
19
|
+
border-radius: @badge-border-radius;
|
|
20
|
+
|
|
21
|
+
// Empty badges collapse automatically (not available in IE8)
|
|
22
|
+
&:empty {
|
|
23
|
+
display: none;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Quick fix for badges in buttons
|
|
27
|
+
.btn & {
|
|
28
|
+
position: relative;
|
|
29
|
+
top: -1px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.btn-xs &,
|
|
33
|
+
.btn-group-xs > .btn & {
|
|
34
|
+
top: 0;
|
|
35
|
+
padding: 1px 5px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Hover state, but only for links
|
|
39
|
+
a& {
|
|
40
|
+
&:hover,
|
|
41
|
+
&:focus {
|
|
42
|
+
color: @badge-link-hover-color;
|
|
43
|
+
text-decoration: none;
|
|
44
|
+
cursor: pointer;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// Account for badges in navs
|
|
49
|
+
.list-group-item.active > &,
|
|
50
|
+
.nav-pills > .active > a > & {
|
|
51
|
+
color: @badge-active-color;
|
|
52
|
+
background-color: @badge-active-bg;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.list-group-item > & {
|
|
56
|
+
float: right;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.list-group-item > & + & {
|
|
60
|
+
margin-right: 5px;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.nav-pills > li > a > & {
|
|
64
|
+
margin-left: 3px;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
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
|
+
|
|
7
|
+
// Core variables and mixins
|
|
8
|
+
@import "variables.less";
|
|
9
|
+
@import "mixins.less";
|
|
10
|
+
|
|
11
|
+
// Reset and dependencies
|
|
12
|
+
@import "normalize.less";
|
|
13
|
+
@import "print.less";
|
|
14
|
+
@import "glyphicons.less";
|
|
15
|
+
|
|
16
|
+
// Core CSS
|
|
17
|
+
@import "scaffolding.less";
|
|
18
|
+
@import "type.less";
|
|
19
|
+
@import "code.less";
|
|
20
|
+
@import "grid.less";
|
|
21
|
+
@import "tables.less";
|
|
22
|
+
@import "forms.less";
|
|
23
|
+
@import "buttons.less";
|
|
24
|
+
|
|
25
|
+
// Components
|
|
26
|
+
@import "component-animations.less";
|
|
27
|
+
@import "dropdowns.less";
|
|
28
|
+
@import "button-groups.less";
|
|
29
|
+
@import "input-groups.less";
|
|
30
|
+
@import "navs.less";
|
|
31
|
+
@import "navbar.less";
|
|
32
|
+
@import "breadcrumbs.less";
|
|
33
|
+
@import "pagination.less";
|
|
34
|
+
@import "pager.less";
|
|
35
|
+
@import "labels.less";
|
|
36
|
+
@import "badges.less";
|
|
37
|
+
@import "jumbotron.less";
|
|
38
|
+
@import "thumbnails.less";
|
|
39
|
+
@import "alerts.less";
|
|
40
|
+
@import "progress-bars.less";
|
|
41
|
+
@import "media.less";
|
|
42
|
+
@import "list-group.less";
|
|
43
|
+
@import "panels.less";
|
|
44
|
+
@import "responsive-embed.less";
|
|
45
|
+
@import "wells.less";
|
|
46
|
+
@import "close.less";
|
|
47
|
+
|
|
48
|
+
// Components w/ JavaScript
|
|
49
|
+
@import "modals.less";
|
|
50
|
+
@import "tooltip.less";
|
|
51
|
+
@import "popovers.less";
|
|
52
|
+
@import "carousel.less";
|
|
53
|
+
|
|
54
|
+
// Utility classes
|
|
55
|
+
@import "utilities.less";
|
|
56
|
+
@import "responsive-utilities.less";
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Breadcrumbs
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.breadcrumb {
|
|
7
|
+
padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;
|
|
8
|
+
margin-bottom: @line-height-computed;
|
|
9
|
+
list-style: none;
|
|
10
|
+
background-color: @breadcrumb-bg;
|
|
11
|
+
border-radius: @border-radius-base;
|
|
12
|
+
|
|
13
|
+
> li {
|
|
14
|
+
display: inline-block;
|
|
15
|
+
|
|
16
|
+
+ li:before {
|
|
17
|
+
content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space
|
|
18
|
+
padding: 0 5px;
|
|
19
|
+
color: @breadcrumb-color;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
> .active {
|
|
24
|
+
color: @breadcrumb-active-color;
|
|
25
|
+
}
|
|
26
|
+
}
|