apply-clients 7.1.33 → 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 +33 -30
- 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 +31 -15
- 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 +131 -147
- package/src/components/product/Function/InstallInfoSelect.vue +294 -281
- 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 +281 -254
- package/src/components/product/Process/ExplorationUser.vue +151 -134
- 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 +616 -277
- 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 +207 -249
- package/src/components/product/Process/Processes/chargeManagement.vue +331 -347
- 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 +1314 -753
- package/src/components/product/Process/Service/ShowBackReason.vue +33 -0
- package/src/components/product/ServiceView.vue +632 -755
- 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 +110 -121
- package/src/components/product/Supervisory/SupervisoryList.vue +98 -48
- package/src/components/product/Supervisory/SupervisoryhCart.vue +119 -103
- 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,305 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Glyphicons for Bootstrap
|
|
3
|
+
//
|
|
4
|
+
// Since icons are fonts, they can be placed anywhere text is placed and are
|
|
5
|
+
// thus automatically sized to match the surrounding child. To use, create an
|
|
6
|
+
// inline element with the appropriate classes, like so:
|
|
7
|
+
//
|
|
8
|
+
// <a href="#"> <span class="glyphicon glyphicon-star"></span> Star</a>
|
|
9
|
+
|
|
10
|
+
// Import the fonts
|
|
11
|
+
@font-face {
|
|
12
|
+
font-family: 'Glyphicons Halflings';
|
|
13
|
+
src: url('@{icon-font-path}@{icon-font-name}.eot');
|
|
14
|
+
src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
|
|
15
|
+
url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
|
|
16
|
+
url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
|
|
17
|
+
url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
|
|
18
|
+
url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// Catchall baseclass
|
|
22
|
+
.glyphicon {
|
|
23
|
+
position: relative;
|
|
24
|
+
top: 1px;
|
|
25
|
+
display: inline-block;
|
|
26
|
+
font-family: 'Glyphicons Halflings';
|
|
27
|
+
font-style: normal;
|
|
28
|
+
font-weight: normal;
|
|
29
|
+
line-height: 1;
|
|
30
|
+
-webkit-font-smoothing: antialiased;
|
|
31
|
+
-moz-osx-font-smoothing: grayscale;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Individual icons
|
|
35
|
+
.glyphicon-asterisk { &:before { content: "\2a"; } }
|
|
36
|
+
.glyphicon-plus { &:before { content: "\2b"; } }
|
|
37
|
+
.glyphicon-euro,
|
|
38
|
+
.glyphicon-eur { &:before { content: "\20ac"; } }
|
|
39
|
+
.glyphicon-minus { &:before { content: "\2212"; } }
|
|
40
|
+
.glyphicon-cloud { &:before { content: "\2601"; } }
|
|
41
|
+
.glyphicon-envelope { &:before { content: "\2709"; } }
|
|
42
|
+
.glyphicon-pencil { &:before { content: "\270f"; } }
|
|
43
|
+
.glyphicon-glass { &:before { content: "\e001"; } }
|
|
44
|
+
.glyphicon-music { &:before { content: "\e002"; } }
|
|
45
|
+
.glyphicon-search { &:before { content: "\e003"; } }
|
|
46
|
+
.glyphicon-heart { &:before { content: "\e005"; } }
|
|
47
|
+
.glyphicon-star { &:before { content: "\e006"; } }
|
|
48
|
+
.glyphicon-star-empty { &:before { content: "\e007"; } }
|
|
49
|
+
.glyphicon-user { &:before { content: "\e008"; color: @global-color; } }
|
|
50
|
+
.glyphicon-film { &:before { content: "\e009"; } }
|
|
51
|
+
.glyphicon-th-large { &:before { content: "\e010"; } }
|
|
52
|
+
.glyphicon-th { &:before { content: "\e011"; color: @global-color;} }
|
|
53
|
+
.glyphicon-th-list { &:before { content: "\e012"; } }
|
|
54
|
+
.glyphicon-ok { &:before { content: "\e013"; } }
|
|
55
|
+
.glyphicon-remove { &:before { content: "\e014"; } }
|
|
56
|
+
.glyphicon-zoom-in { &:before { content: "\e015"; } }
|
|
57
|
+
.glyphicon-zoom-out { &:before { content: "\e016"; } }
|
|
58
|
+
.glyphicon-off { &:before { content: "\e017"; } }
|
|
59
|
+
.glyphicon-signal { &:before { content: "\e018"; } }
|
|
60
|
+
.glyphicon-cog { &:before { content: "\e019"; } }
|
|
61
|
+
.glyphicon-trash { &:before { content: "\e020"; } }
|
|
62
|
+
.glyphicon-home { &:before { content: "\e021"; } }
|
|
63
|
+
.glyphicon-file { &:before { content: "\e022"; } }
|
|
64
|
+
.glyphicon-time { &:before { content: "\e023"; } }
|
|
65
|
+
.glyphicon-road { &:before { content: "\e024"; } }
|
|
66
|
+
.glyphicon-download-alt { &:before { content: "\e025"; } }
|
|
67
|
+
.glyphicon-download { &:before { content: "\e026"; } }
|
|
68
|
+
.glyphicon-upload { &:before { content: "\e027"; } }
|
|
69
|
+
.glyphicon-inbox { &:before { content: "\e028"; } }
|
|
70
|
+
.glyphicon-play-circle { &:before { content: "\e029"; } }
|
|
71
|
+
.glyphicon-repeat { &:before { content: "\e030"; } }
|
|
72
|
+
.glyphicon-refresh { &:before { content: "\e031"; } }
|
|
73
|
+
.glyphicon-list-alt { &:before { content: "\e032"; } }
|
|
74
|
+
.glyphicon-lock { &:before { content: "\e033"; } }
|
|
75
|
+
.glyphicon-flag { &:before { content: "\e034"; } }
|
|
76
|
+
.glyphicon-headphones { &:before { content: "\e035"; } }
|
|
77
|
+
.glyphicon-volume-off { &:before { content: "\e036"; } }
|
|
78
|
+
.glyphicon-volume-down { &:before { content: "\e037"; } }
|
|
79
|
+
.glyphicon-volume-up { &:before { content: "\e038"; } }
|
|
80
|
+
.glyphicon-qrcode { &:before { content: "\e039"; } }
|
|
81
|
+
.glyphicon-barcode { &:before { content: "\e040"; } }
|
|
82
|
+
.glyphicon-tag { &:before { content: "\e041"; } }
|
|
83
|
+
.glyphicon-tags { &:before { content: "\e042"; } }
|
|
84
|
+
.glyphicon-book { &:before { content: "\e043"; } }
|
|
85
|
+
.glyphicon-bookmark { &:before { content: "\e044"; } }
|
|
86
|
+
.glyphicon-print { &:before { content: "\e045"; } }
|
|
87
|
+
.glyphicon-camera { &:before { content: "\e046"; } }
|
|
88
|
+
.glyphicon-font { &:before { content: "\e047"; } }
|
|
89
|
+
.glyphicon-bold { &:before { content: "\e048"; } }
|
|
90
|
+
.glyphicon-italic { &:before { content: "\e049"; } }
|
|
91
|
+
.glyphicon-text-height { &:before { content: "\e050"; } }
|
|
92
|
+
.glyphicon-text-width { &:before { content: "\e051"; } }
|
|
93
|
+
.glyphicon-align-left { &:before { content: "\e052"; } }
|
|
94
|
+
.glyphicon-align-center { &:before { content: "\e053"; } }
|
|
95
|
+
.glyphicon-align-right { &:before { content: "\e054"; } }
|
|
96
|
+
.glyphicon-align-justify { &:before { content: "\e055"; } }
|
|
97
|
+
.glyphicon-list { &:before { content: "\e056"; } }
|
|
98
|
+
.glyphicon-indent-left { &:before { content: "\e057"; } }
|
|
99
|
+
.glyphicon-indent-right { &:before { content: "\e058"; } }
|
|
100
|
+
.glyphicon-facetime-video { &:before { content: "\e059"; } }
|
|
101
|
+
.glyphicon-picture { &:before { content: "\e060"; } }
|
|
102
|
+
.glyphicon-map-marker { &:before { content: "\e062"; } }
|
|
103
|
+
.glyphicon-adjust { &:before { content: "\e063"; } }
|
|
104
|
+
.glyphicon-tint { &:before { content: "\e064"; } }
|
|
105
|
+
.glyphicon-edit { &:before { content: "\e065"; } }
|
|
106
|
+
.glyphicon-share { &:before { content: "\e066"; } }
|
|
107
|
+
.glyphicon-check { &:before { content: "\e067"; } }
|
|
108
|
+
.glyphicon-move { &:before { content: "\e068"; } }
|
|
109
|
+
.glyphicon-step-backward { &:before { content: "\e069"; } }
|
|
110
|
+
.glyphicon-fast-backward { &:before { content: "\e070"; } }
|
|
111
|
+
.glyphicon-backward { &:before { content: "\e071"; } }
|
|
112
|
+
.glyphicon-play { &:before { content: "\e072"; } }
|
|
113
|
+
.glyphicon-pause { &:before { content: "\e073"; } }
|
|
114
|
+
.glyphicon-stop { &:before { content: "\e074"; } }
|
|
115
|
+
.glyphicon-forward { &:before { content: "\e075"; } }
|
|
116
|
+
.glyphicon-fast-forward { &:before { content: "\e076"; } }
|
|
117
|
+
.glyphicon-step-forward { &:before { content: "\e077"; } }
|
|
118
|
+
.glyphicon-eject { &:before { content: "\e078"; } }
|
|
119
|
+
.glyphicon-chevron-left { &:before { content: "\e079"; } }
|
|
120
|
+
.glyphicon-chevron-right { &:before { content: "\e080"; } }
|
|
121
|
+
.glyphicon-plus-sign { &:before { content: "\e081"; } }
|
|
122
|
+
.glyphicon-minus-sign { &:before { content: "\e082"; } }
|
|
123
|
+
.glyphicon-remove-sign { &:before { content: "\e083"; } }
|
|
124
|
+
.glyphicon-ok-sign { &:before { content: "\e084"; } }
|
|
125
|
+
.glyphicon-question-sign { &:before { content: "\e085"; } }
|
|
126
|
+
.glyphicon-info-sign { &:before { content: "\e086"; } }
|
|
127
|
+
.glyphicon-screenshot { &:before { content: "\e087"; } }
|
|
128
|
+
.glyphicon-remove-circle { &:before { content: "\e088"; } }
|
|
129
|
+
.glyphicon-ok-circle { &:before { content: "\e089"; } }
|
|
130
|
+
.glyphicon-ban-circle { &:before { content: "\e090"; } }
|
|
131
|
+
.glyphicon-arrow-left { &:before { content: "\e091"; } }
|
|
132
|
+
.glyphicon-arrow-right { &:before { content: "\e092"; } }
|
|
133
|
+
.glyphicon-arrow-up { &:before { content: "\e093"; } }
|
|
134
|
+
.glyphicon-arrow-down { &:before { content: "\e094"; } }
|
|
135
|
+
.glyphicon-share-alt { &:before { content: "\e095"; } }
|
|
136
|
+
.glyphicon-resize-full { &:before { content: "\e096"; } }
|
|
137
|
+
.glyphicon-resize-small { &:before { content: "\e097"; } }
|
|
138
|
+
.glyphicon-exclamation-sign { &:before { content: "\e101"; } }
|
|
139
|
+
.glyphicon-gift { &:before { content: "\e102"; } }
|
|
140
|
+
.glyphicon-leaf { &:before { content: "\e103"; } }
|
|
141
|
+
.glyphicon-fire { &:before { content: "\e104"; } }
|
|
142
|
+
.glyphicon-eye-open { &:before { content: "\e105"; } }
|
|
143
|
+
.glyphicon-eye-close { &:before { content: "\e106"; } }
|
|
144
|
+
.glyphicon-warning-sign { &:before { content: "\e107"; } }
|
|
145
|
+
.glyphicon-plane { &:before { content: "\e108"; } }
|
|
146
|
+
.glyphicon-calendar { &:before { content: "\e109"; } }
|
|
147
|
+
.glyphicon-random { &:before { content: "\e110"; } }
|
|
148
|
+
.glyphicon-comment { &:before { content: "\e111"; } }
|
|
149
|
+
.glyphicon-magnet { &:before { content: "\e112"; } }
|
|
150
|
+
.glyphicon-chevron-up { &:before { content: "\e113"; color: @global-color; } }
|
|
151
|
+
.glyphicon-chevron-down { &:before { content: "\e114"; } }
|
|
152
|
+
.glyphicon-retweet { &:before { content: "\e115"; } }
|
|
153
|
+
.glyphicon-shopping-cart { &:before { content: "\e116"; } }
|
|
154
|
+
.glyphicon-folder-close { &:before { content: "\e117"; } }
|
|
155
|
+
.glyphicon-folder-open { &:before { content: "\e118"; } }
|
|
156
|
+
.glyphicon-resize-vertical { &:before { content: "\e119"; } }
|
|
157
|
+
.glyphicon-resize-horizontal { &:before { content: "\e120"; } }
|
|
158
|
+
.glyphicon-hdd { &:before { content: "\e121"; } }
|
|
159
|
+
.glyphicon-bullhorn { &:before { content: "\e122"; } }
|
|
160
|
+
.glyphicon-bell { &:before { content: "\e123"; } }
|
|
161
|
+
.glyphicon-certificate { &:before { content: "\e124"; } }
|
|
162
|
+
.glyphicon-thumbs-up { &:before { content: "\e125"; } }
|
|
163
|
+
.glyphicon-thumbs-down { &:before { content: "\e126"; } }
|
|
164
|
+
.glyphicon-hand-right { &:before { content: "\e127"; } }
|
|
165
|
+
.glyphicon-hand-left { &:before { content: "\e128"; } }
|
|
166
|
+
.glyphicon-hand-up { &:before { content: "\e129"; } }
|
|
167
|
+
.glyphicon-hand-down { &:before { content: "\e130"; } }
|
|
168
|
+
.glyphicon-circle-arrow-right { &:before { content: "\e131"; } }
|
|
169
|
+
.glyphicon-circle-arrow-left { &:before { content: "\e132"; } }
|
|
170
|
+
.glyphicon-circle-arrow-up { &:before { content: "\e133"; } }
|
|
171
|
+
.glyphicon-circle-arrow-down { &:before { content: "\e134"; } }
|
|
172
|
+
.glyphicon-globe { &:before { content: "\e135"; } }
|
|
173
|
+
.glyphicon-wrench { &:before { content: "\e136"; } }
|
|
174
|
+
.glyphicon-tasks { &:before { content: "\e137"; } }
|
|
175
|
+
.glyphicon-filter { &:before { content: "\e138"; } }
|
|
176
|
+
.glyphicon-briefcase { &:before { content: "\e139"; } }
|
|
177
|
+
.glyphicon-fullscreen { &:before { content: "\e140"; } }
|
|
178
|
+
.glyphicon-dashboard { &:before { content: "\e141"; } }
|
|
179
|
+
.glyphicon-paperclip { &:before { content: "\e142"; } }
|
|
180
|
+
.glyphicon-heart-empty { &:before { content: "\e143"; } }
|
|
181
|
+
.glyphicon-link { &:before { content: "\e144"; } }
|
|
182
|
+
.glyphicon-phone { &:before { content: "\e145"; } }
|
|
183
|
+
.glyphicon-pushpin { &:before { content: "\e146"; } }
|
|
184
|
+
.glyphicon-usd { &:before { content: "\e148"; } }
|
|
185
|
+
.glyphicon-gbp { &:before { content: "\e149"; } }
|
|
186
|
+
.glyphicon-sort { &:before { content: "\e150"; } }
|
|
187
|
+
.glyphicon-sort-by-alphabet { &:before { content: "\e151"; } }
|
|
188
|
+
.glyphicon-sort-by-alphabet-alt { &:before { content: "\e152"; } }
|
|
189
|
+
.glyphicon-sort-by-order { &:before { content: "\e153"; } }
|
|
190
|
+
.glyphicon-sort-by-order-alt { &:before { content: "\e154"; } }
|
|
191
|
+
.glyphicon-sort-by-attributes { &:before { content: "\e155"; } }
|
|
192
|
+
.glyphicon-sort-by-attributes-alt { &:before { content: "\e156"; } }
|
|
193
|
+
.glyphicon-unchecked { &:before { content: "\e157"; } }
|
|
194
|
+
.glyphicon-expand { &:before { content: "\e158"; } }
|
|
195
|
+
.glyphicon-collapse-down { &:before { content: "\e159"; } }
|
|
196
|
+
.glyphicon-collapse-up { &:before { content: "\e160"; } }
|
|
197
|
+
.glyphicon-log-in { &:before { content: "\e161"; } }
|
|
198
|
+
.glyphicon-flash { &:before { content: "\e162"; } }
|
|
199
|
+
.glyphicon-log-out { &:before { content: "\e163"; color: @global-color; } }
|
|
200
|
+
.glyphicon-new-window { &:before { content: "\e164"; } }
|
|
201
|
+
.glyphicon-record { &:before { content: "\e165"; } }
|
|
202
|
+
.glyphicon-save { &:before { content: "\e166"; } }
|
|
203
|
+
.glyphicon-open { &:before { content: "\e167"; } }
|
|
204
|
+
.glyphicon-saved { &:before { content: "\e168"; } }
|
|
205
|
+
.glyphicon-import { &:before { content: "\e169"; } }
|
|
206
|
+
.glyphicon-export { &:before { content: "\e170"; } }
|
|
207
|
+
.glyphicon-send { &:before { content: "\e171"; } }
|
|
208
|
+
.glyphicon-floppy-disk { &:before { content: "\e172"; } }
|
|
209
|
+
.glyphicon-floppy-saved { &:before { content: "\e173"; } }
|
|
210
|
+
.glyphicon-floppy-remove { &:before { content: "\e174"; } }
|
|
211
|
+
.glyphicon-floppy-save { &:before { content: "\e175"; } }
|
|
212
|
+
.glyphicon-floppy-open { &:before { content: "\e176"; } }
|
|
213
|
+
.glyphicon-credit-card { &:before { content: "\e177"; } }
|
|
214
|
+
.glyphicon-transfer { &:before { content: "\e178"; } }
|
|
215
|
+
.glyphicon-cutlery { &:before { content: "\e179"; } }
|
|
216
|
+
.glyphicon-header { &:before { content: "\e180"; } }
|
|
217
|
+
.glyphicon-compressed { &:before { content: "\e181"; } }
|
|
218
|
+
.glyphicon-earphone { &:before { content: "\e182"; } }
|
|
219
|
+
.glyphicon-phone-alt { &:before { content: "\e183"; } }
|
|
220
|
+
.glyphicon-tower { &:before { content: "\e184"; } }
|
|
221
|
+
.glyphicon-stats { &:before { content: "\e185"; } }
|
|
222
|
+
.glyphicon-sd-video { &:before { content: "\e186"; } }
|
|
223
|
+
.glyphicon-hd-video { &:before { content: "\e187"; } }
|
|
224
|
+
.glyphicon-subtitles { &:before { content: "\e188"; } }
|
|
225
|
+
.glyphicon-sound-stereo { &:before { content: "\e189"; } }
|
|
226
|
+
.glyphicon-sound-dolby { &:before { content: "\e190"; } }
|
|
227
|
+
.glyphicon-sound-5-1 { &:before { content: "\e191"; } }
|
|
228
|
+
.glyphicon-sound-6-1 { &:before { content: "\e192"; } }
|
|
229
|
+
.glyphicon-sound-7-1 { &:before { content: "\e193"; } }
|
|
230
|
+
.glyphicon-copyright-mark { &:before { content: "\e194"; } }
|
|
231
|
+
.glyphicon-registration-mark { &:before { content: "\e195"; } }
|
|
232
|
+
.glyphicon-cloud-download { &:before { content: "\e197"; } }
|
|
233
|
+
.glyphicon-cloud-upload { &:before { content: "\e198"; } }
|
|
234
|
+
.glyphicon-tree-conifer { &:before { content: "\e199"; } }
|
|
235
|
+
.glyphicon-tree-deciduous { &:before { content: "\e200"; } }
|
|
236
|
+
.glyphicon-cd { &:before { content: "\e201"; } }
|
|
237
|
+
.glyphicon-save-file { &:before { content: "\e202"; } }
|
|
238
|
+
.glyphicon-open-file { &:before { content: "\e203"; } }
|
|
239
|
+
.glyphicon-level-up { &:before { content: "\e204"; } }
|
|
240
|
+
.glyphicon-copy { &:before { content: "\e205"; } }
|
|
241
|
+
.glyphicon-paste { &:before { content: "\e206"; } }
|
|
242
|
+
// The following 2 Glyphicons are omitted for the time being because
|
|
243
|
+
// they currently use Unicode codepoints that are outside the
|
|
244
|
+
// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
|
|
245
|
+
// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
|
|
246
|
+
// Notably, the bug affects some older versions of the Android Browser.
|
|
247
|
+
// More info: https://github.com/twbs/bootstrap/issues/10106
|
|
248
|
+
// .glyphicon-door { &:before { content: "\1f6aa"; } }
|
|
249
|
+
// .glyphicon-key { &:before { content: "\1f511"; } }
|
|
250
|
+
.glyphicon-alert { &:before { content: "\e209"; } }
|
|
251
|
+
.glyphicon-equalizer { &:before { content: "\e210"; } }
|
|
252
|
+
.glyphicon-king { &:before { content: "\e211"; } }
|
|
253
|
+
.glyphicon-queen { &:before { content: "\e212"; } }
|
|
254
|
+
.glyphicon-pawn { &:before { content: "\e213"; } }
|
|
255
|
+
.glyphicon-bishop { &:before { content: "\e214"; } }
|
|
256
|
+
.glyphicon-knight { &:before { content: "\e215"; } }
|
|
257
|
+
.glyphicon-baby-formula { &:before { content: "\e216"; } }
|
|
258
|
+
.glyphicon-tent { &:before { content: "\26fa"; } }
|
|
259
|
+
.glyphicon-blackboard { &:before { content: "\e218"; } }
|
|
260
|
+
.glyphicon-bed { &:before { content: "\e219"; } }
|
|
261
|
+
.glyphicon-apple { &:before { content: "\f8ff"; } }
|
|
262
|
+
.glyphicon-erase { &:before { content: "\e221"; } }
|
|
263
|
+
.glyphicon-hourglass { &:before { content: "\231b"; } }
|
|
264
|
+
.glyphicon-lamp { &:before { content: "\e223"; } }
|
|
265
|
+
.glyphicon-duplicate { &:before { content: "\e224"; } }
|
|
266
|
+
.glyphicon-piggy-bank { &:before { content: "\e225"; } }
|
|
267
|
+
.glyphicon-scissors { &:before { content: "\e226"; } }
|
|
268
|
+
.glyphicon-bitcoin { &:before { content: "\e227"; } }
|
|
269
|
+
.glyphicon-btc { &:before { content: "\e227"; } }
|
|
270
|
+
.glyphicon-xbt { &:before { content: "\e227"; } }
|
|
271
|
+
.glyphicon-yen { &:before { content: "\00a5"; } }
|
|
272
|
+
.glyphicon-jpy { &:before { content: "\00a5"; } }
|
|
273
|
+
.glyphicon-ruble { &:before { content: "\20bd"; } }
|
|
274
|
+
.glyphicon-rub { &:before { content: "\20bd"; } }
|
|
275
|
+
.glyphicon-scale { &:before { content: "\e230"; } }
|
|
276
|
+
.glyphicon-ice-lolly { &:before { content: "\e231"; } }
|
|
277
|
+
.glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
|
|
278
|
+
.glyphicon-education { &:before { content: "\e233"; } }
|
|
279
|
+
.glyphicon-option-horizontal { &:before { content: "\e234"; } }
|
|
280
|
+
.glyphicon-option-vertical { &:before { content: "\e235"; } }
|
|
281
|
+
.glyphicon-menu-hamburger { &:before { content: "\e236"; } }
|
|
282
|
+
.glyphicon-modal-window { &:before { content: "\e237"; } }
|
|
283
|
+
.glyphicon-oil { &:before { content: "\e238"; } }
|
|
284
|
+
.glyphicon-grain { &:before { content: "\e239"; } }
|
|
285
|
+
.glyphicon-sunglasses { &:before { content: "\e240"; } }
|
|
286
|
+
.glyphicon-text-size { &:before { content: "\e241"; } }
|
|
287
|
+
.glyphicon-text-color { &:before { content: "\e242"; } }
|
|
288
|
+
.glyphicon-text-background { &:before { content: "\e243"; } }
|
|
289
|
+
.glyphicon-object-align-top { &:before { content: "\e244"; } }
|
|
290
|
+
.glyphicon-object-align-bottom { &:before { content: "\e245"; } }
|
|
291
|
+
.glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
|
|
292
|
+
.glyphicon-object-align-left { &:before { content: "\e247"; } }
|
|
293
|
+
.glyphicon-object-align-vertical { &:before { content: "\e248"; } }
|
|
294
|
+
.glyphicon-object-align-right { &:before { content: "\e249"; } }
|
|
295
|
+
.glyphicon-triangle-right { &:before { content: "\e250"; } }
|
|
296
|
+
.glyphicon-triangle-left { &:before { content: "\e251"; } }
|
|
297
|
+
.glyphicon-triangle-bottom { &:before { content: "\e252"; } }
|
|
298
|
+
.glyphicon-triangle-top { &:before { content: "\e253"; } }
|
|
299
|
+
.glyphicon-console { &:before { content: "\e254"; } }
|
|
300
|
+
.glyphicon-superscript { &:before { content: "\e255"; } }
|
|
301
|
+
.glyphicon-subscript { &:before { content: "\e256"; } }
|
|
302
|
+
.glyphicon-menu-left { &:before { content: "\e257"; } }
|
|
303
|
+
.glyphicon-menu-right { &:before { content: "\e258"; } }
|
|
304
|
+
.glyphicon-menu-down { &:before { content: "\e259"; } }
|
|
305
|
+
.glyphicon-menu-up { &:before { content: "\e260"; } }
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Grid system
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// Container widths
|
|
7
|
+
//
|
|
8
|
+
// Set the container width, and override it for fixed navbars in media queries.
|
|
9
|
+
|
|
10
|
+
.container {
|
|
11
|
+
.container-fixed();
|
|
12
|
+
|
|
13
|
+
@media (min-width: @screen-sm-min) {
|
|
14
|
+
width: @container-sm;
|
|
15
|
+
}
|
|
16
|
+
@media (min-width: @screen-md-min) {
|
|
17
|
+
width: @container-md;
|
|
18
|
+
}
|
|
19
|
+
@media (min-width: @screen-lg-min) {
|
|
20
|
+
width: @container-lg;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
// Fluid container
|
|
26
|
+
//
|
|
27
|
+
// Utilizes the mixin meant for fixed width containers, but without any defined
|
|
28
|
+
// width for fluid, full width layouts.
|
|
29
|
+
|
|
30
|
+
.container-fluid {
|
|
31
|
+
.container-fixed();
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
// Row
|
|
36
|
+
//
|
|
37
|
+
// Rows contain and clear the floats of your columns.
|
|
38
|
+
|
|
39
|
+
.row {
|
|
40
|
+
.make-row();
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
// Columns
|
|
45
|
+
//
|
|
46
|
+
// Common styles for small and large grid columns
|
|
47
|
+
|
|
48
|
+
.make-grid-columns();
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
// Extra small grid
|
|
52
|
+
//
|
|
53
|
+
// Columns, offsets, pushes, and pulls for extra small devices like
|
|
54
|
+
// smartphones.
|
|
55
|
+
|
|
56
|
+
.make-grid(xs);
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
// Small grid
|
|
60
|
+
//
|
|
61
|
+
// Columns, offsets, pushes, and pulls for the small device range, from phones
|
|
62
|
+
// to tablets.
|
|
63
|
+
|
|
64
|
+
@media (min-width: @screen-sm-min) {
|
|
65
|
+
.make-grid(sm);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
// Medium grid
|
|
70
|
+
//
|
|
71
|
+
// Columns, offsets, pushes, and pulls for the desktop device range.
|
|
72
|
+
|
|
73
|
+
@media (min-width: @screen-md-min) {
|
|
74
|
+
.make-grid(md);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
// Large grid
|
|
79
|
+
//
|
|
80
|
+
// Columns, offsets, pushes, and pulls for the large desktop device range.
|
|
81
|
+
|
|
82
|
+
@media (min-width: @screen-lg-min) {
|
|
83
|
+
.make-grid(lg);
|
|
84
|
+
}
|
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Input groups
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
// Base styles
|
|
6
|
+
// -------------------------
|
|
7
|
+
.input-group {
|
|
8
|
+
position: relative; // For dropdowns
|
|
9
|
+
display: table;
|
|
10
|
+
border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table
|
|
11
|
+
|
|
12
|
+
// Undo padding and float of grid classes
|
|
13
|
+
&[class*="col-"] {
|
|
14
|
+
float: none;
|
|
15
|
+
padding-left: 0;
|
|
16
|
+
padding-right: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.form-control {
|
|
20
|
+
// Ensure that the input is always above the *appended* addon button for
|
|
21
|
+
// proper border colors.
|
|
22
|
+
position: relative;
|
|
23
|
+
z-index: 2;
|
|
24
|
+
|
|
25
|
+
// IE9 fubars the placeholder attribute in text inputs and the arrows on
|
|
26
|
+
// select elements in input groups. To fix it, we float the input. Details:
|
|
27
|
+
// https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855
|
|
28
|
+
float: left;
|
|
29
|
+
|
|
30
|
+
width: 100%;
|
|
31
|
+
margin-bottom: 0;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// Sizing options
|
|
36
|
+
//
|
|
37
|
+
// Remix the default form control sizing classes into new ones for easier
|
|
38
|
+
// manipulation.
|
|
39
|
+
|
|
40
|
+
.input-group-lg > .form-control,
|
|
41
|
+
.input-group-lg > .input-group-addon,
|
|
42
|
+
.input-group-lg > .input-group-btn > .btn {
|
|
43
|
+
.input-lg();
|
|
44
|
+
}
|
|
45
|
+
.input-group-sm > .form-control,
|
|
46
|
+
.input-group-sm > .input-group-addon,
|
|
47
|
+
.input-group-sm > .input-group-btn > .btn {
|
|
48
|
+
.input-sm();
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
// Display as table-cell
|
|
53
|
+
// -------------------------
|
|
54
|
+
.input-group-addon,
|
|
55
|
+
.input-group-btn,
|
|
56
|
+
.input-group .form-control {
|
|
57
|
+
display: table-cell;
|
|
58
|
+
|
|
59
|
+
&:not(:first-child):not(:last-child) {
|
|
60
|
+
border-radius: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
// Addon and addon wrapper for buttons
|
|
64
|
+
.input-group-addon,
|
|
65
|
+
.input-group-btn {
|
|
66
|
+
width: 1%;
|
|
67
|
+
white-space: nowrap;
|
|
68
|
+
vertical-align: middle; // Match the inputs
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// Text input groups
|
|
72
|
+
// -------------------------
|
|
73
|
+
.input-group-addon {
|
|
74
|
+
padding: @padding-base-vertical @padding-base-horizontal;
|
|
75
|
+
font-size: @font-size-base;
|
|
76
|
+
font-weight: normal;
|
|
77
|
+
line-height: 1;
|
|
78
|
+
color: @input-color;
|
|
79
|
+
text-align: center;
|
|
80
|
+
background-color: @input-group-addon-bg;
|
|
81
|
+
border: 1px solid @input-group-addon-border-color;
|
|
82
|
+
border-radius: @border-radius-base;
|
|
83
|
+
|
|
84
|
+
// Sizing
|
|
85
|
+
&.input-sm {
|
|
86
|
+
padding: @padding-small-vertical @padding-small-horizontal;
|
|
87
|
+
font-size: @font-size-small;
|
|
88
|
+
border-radius: @border-radius-small;
|
|
89
|
+
}
|
|
90
|
+
&.input-lg {
|
|
91
|
+
padding: @padding-large-vertical @padding-large-horizontal;
|
|
92
|
+
font-size: @font-size-large;
|
|
93
|
+
border-radius: @border-radius-large;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// Nuke default margins from checkboxes and radios to vertically center within.
|
|
97
|
+
input[type="radio"],
|
|
98
|
+
input[type="checkbox"] {
|
|
99
|
+
margin-top: 0;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
// Reset rounded corners
|
|
104
|
+
.input-group .form-control:first-child,
|
|
105
|
+
.input-group-addon:first-child,
|
|
106
|
+
.input-group-btn:first-child > .btn,
|
|
107
|
+
.input-group-btn:first-child > .btn-group > .btn,
|
|
108
|
+
.input-group-btn:first-child > .dropdown-toggle,
|
|
109
|
+
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
|
|
110
|
+
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
|
|
111
|
+
.border-right-radius(0);
|
|
112
|
+
}
|
|
113
|
+
.input-group-addon:first-child {
|
|
114
|
+
border-right: 0;
|
|
115
|
+
}
|
|
116
|
+
.input-group .form-control:last-child,
|
|
117
|
+
.input-group-addon:last-child,
|
|
118
|
+
.input-group-btn:last-child > .btn,
|
|
119
|
+
.input-group-btn:last-child > .btn-group > .btn,
|
|
120
|
+
.input-group-btn:last-child > .dropdown-toggle,
|
|
121
|
+
.input-group-btn:first-child > .btn:not(:first-child),
|
|
122
|
+
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
|
|
123
|
+
.border-left-radius(0);
|
|
124
|
+
}
|
|
125
|
+
.input-group-addon:last-child {
|
|
126
|
+
border-left: 0;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
// Button input groups
|
|
130
|
+
// -------------------------
|
|
131
|
+
.input-group-btn {
|
|
132
|
+
position: relative;
|
|
133
|
+
// Jankily prevent input button groups from wrapping with `white-space` and
|
|
134
|
+
// `font-size` in combination with `inline-block` on buttons.
|
|
135
|
+
font-size: 0;
|
|
136
|
+
white-space: nowrap;
|
|
137
|
+
|
|
138
|
+
// Negative margin for spacing, position for bringing hovered/focused/actived
|
|
139
|
+
// element above the siblings.
|
|
140
|
+
> .btn {
|
|
141
|
+
position: relative;
|
|
142
|
+
+ .btn {
|
|
143
|
+
margin-left: -1px;
|
|
144
|
+
}
|
|
145
|
+
// Bring the "active" button to the front
|
|
146
|
+
&:hover,
|
|
147
|
+
&:focus,
|
|
148
|
+
&:active {
|
|
149
|
+
z-index: 2;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
// Negative margin to only have a 1px border between the two
|
|
154
|
+
&:first-child {
|
|
155
|
+
> .btn,
|
|
156
|
+
> .btn-group {
|
|
157
|
+
margin-right: -1px;
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
&:last-child {
|
|
161
|
+
> .btn,
|
|
162
|
+
> .btn-group {
|
|
163
|
+
z-index: 2;
|
|
164
|
+
margin-left: -1px;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Jumbotron
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.jumbotron {
|
|
7
|
+
padding-top: @jumbotron-padding;
|
|
8
|
+
padding-bottom: @jumbotron-padding;
|
|
9
|
+
margin-bottom: @jumbotron-padding;
|
|
10
|
+
color: @jumbotron-color;
|
|
11
|
+
background-color: @jumbotron-bg;
|
|
12
|
+
|
|
13
|
+
h1,
|
|
14
|
+
.h1 {
|
|
15
|
+
color: @jumbotron-heading-color;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
p {
|
|
19
|
+
margin-bottom: (@jumbotron-padding / 2);
|
|
20
|
+
font-size: @jumbotron-font-size;
|
|
21
|
+
font-weight: 200;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
> hr {
|
|
25
|
+
border-top-color: darken(@jumbotron-bg, 10%);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.container &,
|
|
29
|
+
.container-fluid & {
|
|
30
|
+
border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.container {
|
|
34
|
+
max-width: 100%;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@media screen and (min-width: @screen-sm-min) {
|
|
38
|
+
padding-top: (@jumbotron-padding * 1.6);
|
|
39
|
+
padding-bottom: (@jumbotron-padding * 1.6);
|
|
40
|
+
|
|
41
|
+
.container &,
|
|
42
|
+
.container-fluid & {
|
|
43
|
+
padding-left: (@jumbotron-padding * 2);
|
|
44
|
+
padding-right: (@jumbotron-padding * 2);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h1,
|
|
48
|
+
.h1 {
|
|
49
|
+
font-size: @jumbotron-heading-font-size;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Labels
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
.label {
|
|
6
|
+
display: inline;
|
|
7
|
+
padding: .2em .6em .3em;
|
|
8
|
+
font-size: 75%;
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
line-height: 1;
|
|
11
|
+
color: @label-color;
|
|
12
|
+
text-align: center;
|
|
13
|
+
white-space: nowrap;
|
|
14
|
+
vertical-align: baseline;
|
|
15
|
+
border-radius: .25em;
|
|
16
|
+
|
|
17
|
+
// Add hover effects, but only for links
|
|
18
|
+
a& {
|
|
19
|
+
&:hover,
|
|
20
|
+
&:focus {
|
|
21
|
+
color: @label-link-hover-color;
|
|
22
|
+
text-decoration: none;
|
|
23
|
+
cursor: pointer;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Empty labels collapse automatically (not available in IE8)
|
|
28
|
+
&:empty {
|
|
29
|
+
display: none;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
// Quick fix for labels in buttons
|
|
33
|
+
.btn & {
|
|
34
|
+
position: relative;
|
|
35
|
+
top: -1px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Colors
|
|
40
|
+
// Contextual variations (linked labels get darker on :hover)
|
|
41
|
+
|
|
42
|
+
.label-default {
|
|
43
|
+
.label-variant(@label-default-bg);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.label-primary {
|
|
47
|
+
.label-variant(@label-primary-bg);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.label-success {
|
|
51
|
+
.label-variant(@label-success-bg);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.label-info {
|
|
55
|
+
.label-variant(@label-info-bg);
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.label-warning {
|
|
59
|
+
.label-variant(@label-warning-bg);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.label-danger {
|
|
63
|
+
.label-variant(@label-danger-bg);
|
|
64
|
+
}
|