apply-clients 3.2.36 → 3.2.49
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/dist-android/static/15.js +2 -2
- package/dist-android/static/23.js +2 -2
- package/index.html +1 -1
- package/package.json +5 -5
- package/src/AndroidApp.vue +10 -9
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.svg +288 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/src/android-bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- package/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/apply.js +143 -25
- package/src/applyAndroid.js +5 -3
- package/src/components/Util.js +5 -5
- package/src/components/app_apply/AppServiceView.vue +2 -2
- package/src/components/app_apply/Process/AppExplorationUser.vue +200 -310
- package/src/components/app_apply/Process/AppProgressReport.vue +84 -0
- package/src/components/app_apply/Process/AppServiceControl.vue +215 -4
- package/src/components/app_apply/ProgressReport/ProgressReportDetail.vue +64 -0
- package/src/components/app_apply/ProgressReport/ProgressReportList.vue +209 -0
- package/src/components/app_apply/Supervisory/AppProcessSupervisory.vue +12 -129
- package/src/components/image/tubiao.png +0 -0
- package/src/components/product/{ApplyCharge → Apply/ApplyCharge}/ApplyChargeList.vue +4 -8
- package/src/components/product/{ApplyCharge → Apply/ApplyCharge}/ApplyChargeSearch.vue +2 -4
- package/src/components/product/{Function → Apply/Function}/InstallFunction.vue +4 -4
- package/src/components/product/{Function → Apply/Function}/InstallInfoSelect.vue +12 -16
- package/src/components/product/{Function → Apply/Function}/Service/FunctionServiceControl.vue +0 -1
- package/src/components/product/{Function → Apply/Function}/StopApplyCrrdList.vue +0 -0
- package/src/components/product/{Function → Apply/Function}/functions/ApplyRecordCancel.vue +1 -1
- package/src/components/product/{Function → Apply/Function}/functions/StopInstall.vue +11 -25
- package/src/components/product/{Process → Apply/Process}/ExplorationSelect.vue +5 -8
- package/src/components/product/{Process → Apply/Process}/ExplorationUser.vue +3 -4
- package/src/components/product/Apply/Process/Processes/InstallationDetails.vue +478 -0
- package/src/components/product/{Process → Apply/Process}/Processes/addressAndUserinfoManagement.vue +3 -8
- package/src/components/product/{Process → Apply/Process}/Processes/chargeManagement.vue +11 -51
- package/src/components/product/{Process → Apply/Process}/Processes/supplementalAgreement.vue +1 -1
- package/src/components/product/{Process → Apply/Process}/Service/ServiceControl.vue +11 -75
- package/src/components/product/{Process → Apply/Process}/ShowBackReason.vue +0 -0
- package/src/components/product/{Supervisory → Apply/Supervisory}/Service/SupervisoryServiceControl.vue +0 -5
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryControl.vue +43 -22
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryList.vue +15 -13
- package/src/components/product/{Supervisory → Apply/Supervisory}/SupervisoryhCart.vue +1 -1
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContract.vue +156 -0
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractInformation.vue +429 -0
- package/src/components/product/Ledger/ContractManagement/OtherContract/OtherContractList.vue +267 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContract.vue +138 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractInformation.vue +715 -0
- package/src/components/product/Ledger/ContractManagement/PurchaseContract/PurchaseContractList.vue +304 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContract.vue +119 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractInformation.vue +286 -0
- package/src/components/product/Ledger/ContractManagement/RepairContract/RepairContractList.vue +258 -0
- package/src/components/product/Ledger/FacilityManagement/EmployRecord/EmployRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/EmployRecord/EmployRecordList.vue +218 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityEmployRecord.vue +124 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventory.vue +307 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryInformation.vue +583 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityInventoryList.vue +285 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/FacilityServiceRecord.vue +113 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addFacilityInformation.vue +406 -0
- package/src/components/product/Ledger/FacilityManagement/FacilityInventory/addoldFacilityInformation.vue +326 -0
- package/src/components/product/Ledger/FacilityManagement/ScrapRecord/ScrapRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/ScrapRecord/ScrapRecordList.vue +157 -0
- package/src/components/product/Ledger/FacilityManagement/ServiceRecord/ServiceRecord.vue +24 -0
- package/src/components/product/Ledger/FacilityManagement/ServiceRecord/ServiceRecordList.vue +168 -0
- package/src/components/product/Ledger/FileDownload/FileDownload.vue +42 -0
- package/src/components/product/Ledger/Function/InstallFunction.vue +118 -0
- package/src/components/product/Ledger/Function/InstallInfoSelect.vue +299 -0
- package/src/components/product/Ledger/Function/Service/FunctionServiceControl.vue +220 -0
- package/src/components/product/Ledger/Function/functions/PauseInstall.vue +92 -0
- package/src/components/product/Ledger/ImportApply/ImportApply.vue +68 -0
- package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecord.vue +24 -0
- package/src/components/product/Ledger/MaterialManagement/DeliveryRecord/DeliveryRecordList.vue +281 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformation.vue +313 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/InventoryInformationList.vue +250 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialDeliveryRecord.vue +110 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialEarlyWarning.vue +194 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialInformation.vue +186 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutStock.vue +438 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialOutboundOrder.vue +457 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/MaterialWarehousingRecord.vue +110 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseMaterial.vue +425 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/PurchaseOrder.vue +481 -0
- package/src/components/product/Ledger/MaterialManagement/InventoryInformation/ReturnMaterial.vue +321 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrder.vue +86 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderInformation.vue +327 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/OutboundOrderList.vue +304 -0
- package/src/components/product/Ledger/MaterialManagement/OutboundOrder/PrintMaterialBill.vue +139 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PrintPurchaseOrder.vue +157 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecords.vue +73 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsInformation.vue +268 -0
- package/src/components/product/Ledger/MaterialManagement/PurchaseRecords/PurchaseRecordsList.vue +261 -0
- package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecord.vue +24 -0
- package/src/components/product/Ledger/MaterialManagement/WarehousingRecord/WarehousingRecordList.vue +275 -0
- package/src/components/product/Ledger/Process/ProcessBusiness.vue +155 -0
- package/src/components/product/Ledger/Process/ProcessSelect.vue +340 -0
- package/src/components/product/Ledger/Process/Processes/ExhibitionPicture.vue +27 -0
- package/src/components/product/Ledger/Process/Processes/ProgressReport.vue +236 -0
- package/src/components/product/Ledger/Process/Processes/ProjectMaterialList.vue +77 -0
- package/src/components/product/Ledger/Process/Processes/QinhuaMaterialList.vue +72 -0
- package/src/components/product/Ledger/Process/Service/ServiceControl.vue +639 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingInformation.vue +316 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingRecord.vue +67 -0
- package/src/components/product/Ledger/QinhuaMaterial/PickingRecord/PickingRecordList.vue +194 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningInformation.vue +385 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecord.vue +70 -0
- package/src/components/product/Ledger/QinhuaMaterial/SeasoningRecord/SeasoningRecordList.vue +208 -0
- package/src/components/product/Ledger/Stop/StopApply.vue +103 -0
- package/src/components/product/Ledger/Stop/StopApplyList.vue +241 -0
- package/src/components/product/Ledger/Supervisory/ProcessSupervisory.vue +163 -0
- package/src/components/product/Ledger/Supervisory/Service/RenWuDan.vue +78 -0
- package/src/components/product/Ledger/Supervisory/Service/SupervisoryServiceControl.vue +606 -0
- package/src/components/product/Ledger/Supervisory/SupervisoryCart.vue +102 -0
- package/src/components/product/Ledger/Supervisory/SupervisoryList.vue +387 -0
- package/src/components/product/ServiceView.vue +376 -374
- package/src/components/product/VueUtils/ApplyUpload.vue +1 -3
- package/src/expandcssAndroid.less +534 -0
- package/src/main.js +2 -0
- package/static/Functions.js +91 -0
- package/static/Jsons.js +784 -0
- package/static/ManageHomePic//346/244/255/345/234/2064.png +0 -0
- package/static/ManagementControl/echarts10.png +0 -0
- package/static/ManagementControl/echarts11.png +0 -0
- package/static/ManagementControl/echarts12.png +0 -0
- package/static/ManagementControl/echarts13.png +0 -0
- package/static/ManagementControl/echarts14.png +0 -0
- package/static/ManagementControl/echarts15.png +0 -0
- package/static/ManagementControl/echarts16.png +0 -0
- package/static/ManagementControl/echarts17.png +0 -0
- package/static/ManagementControl/echarts18.png +0 -0
- package/static/ManagementControl/echarts4.png +0 -0
- package/static/ManagementControl/echarts5.png +0 -0
- package/static/ManagementControl/echarts51.png +0 -0
- package/static/ManagementControl/echarts6.png +0 -0
- package/static/ManagementControl/echarts7.png +0 -0
- package/static/ManagementControl/echarts71.png +0 -0
- package/static/ManagementControl/echarts8.png +0 -0
- package/static/ManagementControl//345/233/276/345/261/20211/346/213/267/350/264/235.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2353.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2355.png +0 -0
- package/static/ManagementControl//347/237/251/345/275/2425/346/213/267/350/264/2356.png +0 -0
- package/static/class.js +97 -0
- package/static/images/lefticon//346/226/207/344/273/266/346/250/241/345/235/227.png +0 -0
- package/static/init.js +135 -0
- package/static/jcwx.jpg +0 -0
- package/static/lefticon//345/215/241/346/234/215/345/212/241/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//345/221/274/345/217/253/347/263/273/347/273/237.png +0 -0
- package/static/lefticon//345/224/256/346/260/224/346/224/266/350/264/271.png +0 -0
- package/static/lefticon//345/233/276/345/261/2023/346/213/267/350/264/2354.png +0 -0
- package/static/lefticon//345/233/276/345/261/202577.png +0 -0
- package/static/lefticon//345/233/276/345/261/2028/346/213/267/350/264/23513.png +0 -0
- package/static/lefticon//345/256/211/346/243/200/346/237/245/347/234/213.png +0 -0
- package/static/lefticon//345/256/211/346/243/200/350/256/241/345/210/222.png +0 -0
- package/static/lefticon//345/276/256/344/277/241/346/234/215/345/212/241.png +0 -0
- package/static/lefticon//346/212/245/345/273/272/347/263/273/347/273/237.png +0 -0
- package/static/lefticon//346/212/245/350/241/250/346/237/245/350/257/242.png +0 -0
- package/static/lefticon//346/227/245/345/270/270/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//346/234/272/350/241/250/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//346/237/245/350/257/242/345/210/227/350/241/250.png +0 -0
- package/static/lefticon//346/241/243/346/241/210/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//347/211/251/350/201/224/347/275/221/350/241/250.png +0 -0
- package/static/lefticon//347/237/251/345/275/2421183.png +0 -0
- package/static/lefticon//347/263/273/347/273/237/347/256/241/347/220/206.png +0 -0
- package/static/lefticon//347/263/273/347/273/237/350/256/276/347/275/256.png +0 -0
- package/static/lefticon//347/273/217/350/220/245/347/256/241/346/216/247.png +0 -0
- package/static/lefticon//347/273/274/345/220/210/344/270/232/345/212/241.png +0 -0
- package/static/lefticon//347/273/274/345/220/210/346/237/245/350/257/242.png +0 -0
- package/static/lefticon//350/217/234/345/215/225/344/274/270/347/274/251.png +0 -0
- package/static/lefticon//351/200/200/345/207/272/347/263/273/347/273/237.png +0 -0
- package/static/loginbg1.jpg +0 -0
- package/static/loginbg_jincheng.jpg +0 -0
- package/static/loginbgmain.jpg +0 -0
- package/static/mainicon/adddevice.png +0 -0
- package/static/mainicon/addmeter.png +0 -0
- package/static/mainicon/bank.png +0 -0
- package/static/mainicon/biaopan.png +0 -0
- package/static/mainicon/cad.jpg +0 -0
- package/static/mainicon/chaobiaoyuan.png +0 -0
- package/static/mainicon/danganguanli.png +0 -0
- package/static/mainicon/deletedevice.png +0 -0
- package/static/mainicon/excel.jpg +0 -0
- package/static/mainicon/huizong.png +0 -0
- package/static/mainicon/jibiaoguanli.png +0 -0
- package/static/mainicon/jibiaoguanli2.png +0 -0
- package/static/mainicon/jiezhang.png +0 -0
- package/static/mainicon/loginbg.jpg +0 -0
- package/static/mainicon/shouqishoufei.png +0 -0
- package/static/mainicon/treeopen.png +0 -0
- package/static/mainicon/treeout.png +0 -0
- package/static/mainicon/treeset.png +0 -0
- package/static/mainicon/word.jpg +0 -0
- package/static/mainicon/wulianwang.png +0 -0
- package/static/mainicon/yingyechaxun.png +0 -0
- package/static/mainicon/zongheyewu.png +0 -0
- package/static/newStyle/loginbg-liaoyuan.gif +0 -0
- package/static/newStyle/loginbg.gif +0 -0
- package/static/newStyle/loginbg1366.gif +0 -0
- package/static/newStyle/loginbg_1.gif +0 -0
- package/static/newStyle/searchin.png +0 -0
- package/static/newStyle/searchout.png +0 -0
- package/static/newStyle//350/261/252/344/275/263/347/207/203/346/260/224.png +0 -0
- package/static/newStyle.7z +0 -0
- package/static/newStyle.zip +0 -0
- package/static/refresh.png +0 -0
- package/static/static.zip +0 -0
- package/static/tools.js +246 -0
- package/static/treeclose.png +0 -0
- package/static/wasm_exec.js +591 -0
- package/src/components/app_apply/Process/Processes/AppInstallationDetails.vue +0 -456
- package/src/components/product/ApplyCharge/ApplyChargeReport.vue +0 -107
- package/src/components/product/Process/Processes/InstallationDetails.vue +0 -515
- package/src/components/product/Process/Processes/printCharge.vue +0 -133
- package/src/components/product/Test.vue +0 -36
- 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
|
+
}
|