pipe-map.css 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619
  1.  .partitionsContainer ul {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .partitionsContainer li {
  6. float: left;
  7. height: 100%;
  8. line-height: 30px;
  9. text-align: center;
  10. list-style: none;
  11. border: 1px solid gray;
  12. }
  13. table tr td {
  14. height: 50px;
  15. }
  16. .formTitle {
  17. width: 130px !important;
  18. }
  19. .checkbox-wrap {
  20. width: 100%;
  21. position: relative;
  22. margin: 0 auto;
  23. background-color: white;
  24. }
  25. input[type="checkbox"] {
  26. display: none;
  27. }
  28. input[type="checkbox"] + label {
  29. display: inline-block;
  30. width: 80%;
  31. margin-top: 10px;
  32. margin-left: 5px;
  33. text-align: left;
  34. -webkit-box-sizing: border-box;
  35. }
  36. label::before {
  37. content: "";
  38. display: inline-block;
  39. width: 20px;
  40. height: 20px;
  41. background: #4C58A4;
  42. vertical-align: middle;
  43. -webkit-border-radius: 10%;
  44. margin-right: 5px;
  45. -webkit-box-sizing: border-box;
  46. -webkit-transition: background ease-in .5s;
  47. }
  48. input[type="checkbox"]:checked + label::before {
  49. /* background-color: rgb(53, 183, 111); */
  50. content: "√";
  51. color: #fff;
  52. font-size: 20px;
  53. text-align: center;
  54. line-height: 20px;
  55. cursor: pointer;
  56. /* border: 5px #EEEEEE solid; */
  57. }
  58. .clable {
  59. font-size: 14px;
  60. color: #808080;
  61. font-weight: bold;
  62. cursor: pointer;
  63. }
  64. .ui-layout .panel-Title {
  65. border-color: #c5c5c5;
  66. background-color: #fff;
  67. color: #666;
  68. height: 80px;
  69. line-height: 80px;
  70. text-overflow: ellipsis;
  71. overflow: hidden;
  72. white-space: nowrap;
  73. font-weight: bold;
  74. border-bottom: 1px solid #ccc;
  75. text-align: center;
  76. padding-left: 0;
  77. border-bottom: none;
  78. }
  79. .pipeAreaListHome {
  80. height: 40px;
  81. line-height: 40px;
  82. font-size: 18px;
  83. color: #666;
  84. background: #f4f4f4;
  85. width: 100%;
  86. }
  87. .listItem {
  88. padding: 10px 5px 7px 5px;
  89. border-top: 1px solid #ececec;
  90. border-bottom: 1px solid #ececec;
  91. overflow: hidden;
  92. font-size: 12px;
  93. }
  94. .listItem div {
  95. padding-top: 5px;
  96. }
  97. .pipeAreaList .icon {
  98. font-size: 24px;
  99. }
  100. .pipeAreaList .icon span {
  101. font-size: 20px;
  102. color: #337ab7;
  103. padding-right: 5px;
  104. }
  105. .pipeAreaList .icon a {
  106. cursor: pointer;
  107. }
  108. .btnWrapper {
  109. box-shadow: 0 0 6px #337ab7;
  110. border: 2px solid #337ab7;
  111. border-left: none;
  112. position: absolute;
  113. top: 130px;
  114. left: 60px;
  115. z-index: 999;
  116. background: #fff;
  117. color: #59b6fc;
  118. }
  119. .btnWrapper .item {
  120. line-height: 30px;
  121. padding: 0 5px 0 36px;
  122. border-left: 2px solid #337ab7;
  123. float: left;
  124. cursor: pointer;
  125. }
  126. .btnWrapper .active {
  127. color: #337ab7;
  128. }
  129. .btnWrapper .draw {
  130. background: url(/Content/images/draw.png) no-repeat 6px center;
  131. }
  132. .btnWrapper .keep {
  133. background: url(/Content/images/operation.png) no-repeat 6px center;
  134. }
  135. .btnWrapper .save {
  136. background: url(/Content/images/save.png) no-repeat 6px center;
  137. }
  138. .rightArea {
  139. width: 225px;
  140. position: absolute;
  141. top: 80px;
  142. right: 40px;
  143. }
  144. .rightArea .w2 {
  145. letter-spacing: 2em;
  146. margin-right: -2em;
  147. }
  148. .rightArea .w3 {
  149. letter-spacing: .5em;
  150. margin-right: -.5em;
  151. }
  152. .rightArea .shadow {
  153. box-shadow: 0 0 12px #888;
  154. border-bottom-left-radius: 5px;
  155. border-bottom-right-radius: 5px;
  156. }
  157. .rightArea .pipelineEdit .rightTitle {
  158. width: 225px;
  159. height: 30px;
  160. background: #6a6a6a;
  161. opacity: .9;
  162. }
  163. .rightArea .pipelineEdit .rightTitle ul {
  164. list-style: none;
  165. margin: 0;
  166. padding: 0;
  167. }
  168. .rightArea .pipelineEdit .rightTitle ul li {
  169. width: 75px;
  170. line-height: 30px;
  171. text-align: center;
  172. color: #fff;
  173. cursor: pointer;
  174. float: left;
  175. }
  176. .rightArea .pipelineEdit .rightTitle ul li .aloneStyle {
  177. display: inline-block;
  178. width: 75px;
  179. height: 30px;
  180. border-left: 1px solid #fff;
  181. border-right: 1px solid #fff;
  182. }
  183. .rightArea .pipelineEdit .rightTitle ul .active {
  184. background: #505050;
  185. }
  186. .rightArea .pipelineEdit .right-content-attribute {
  187. width: 225px;
  188. height: 356px;
  189. background: #fff;
  190. position: relative;
  191. font-size: 12px;
  192. }
  193. .rightArea .pipelineEdit .right-content-attribute .modify-item {
  194. width: 205px;
  195. height: 52px;
  196. padding-top: 10px;
  197. margin-left: 10px;
  198. }
  199. .rightArea .pipelineEdit .right-content-attribute .modify-item .company {
  200. position: absolute;
  201. right: 20px;
  202. }
  203. .rightArea .pipelineEdit .right-content-attribute .modify-item p {
  204. line-height: 15px;
  205. margin: 0 0 2px 0;
  206. }
  207. .rightArea .pipelineEdit .right-content-attribute .modify-item p i {
  208. color: red;
  209. vertical-align: middle;
  210. margin-right: 5px;
  211. font-size: 20px;
  212. }
  213. .rightArea .pipelineEdit .right-content-attribute .modify-item input select {
  214. font-size: 12px;
  215. white-space: nowrap;
  216. text-overflow: ellipsis;
  217. overflow: hidden;
  218. }
  219. .rightArea .pipelineEdit .right-content-attribute .pipe-length span, .rightArea .pipelineEdit .right-content-attribute .pipe-line-code span {
  220. width: 205px;
  221. height: 25px;
  222. line-height: 15px;
  223. background: #eee;
  224. display: block;
  225. border: 1px solid #ccc;
  226. padding: 5px;
  227. border-radius: 5px;
  228. }
  229. .rightArea .pipelineEdit .right-content-attribute .piple-remarks {
  230. width: 205px;
  231. height: 82px;
  232. margin-top: 10px;
  233. margin-left: 10px;
  234. }
  235. .rightArea .pipelineEdit .right-content-attribute .piple-remarks p {
  236. line-height: 15px;
  237. margin: 0 0 2px 0;
  238. }
  239. .rightArea .pipelineEdit .right-content-attribute .piple-remarks textarea {
  240. font-size: 12px;
  241. }
  242. .rightArea .pipelineEdit .right-content-attribute #constructionDate[readonly] {
  243. background: #fff;
  244. cursor: pointer;
  245. }
  246. .rightArea .pipelineEdit .right-content-attribute #constructionDate[readonly][disabled] {
  247. background: #eee;
  248. }
  249. .rightArea .pipelineEdit .right-content-style {
  250. width: 225px;
  251. height: 356px;
  252. background: #fff;
  253. position: relative;
  254. }
  255. .rightArea .pipelineEdit .right-content-style .title {
  256. padding-top: 10px;
  257. margin-left: 8px;
  258. }
  259. .rightArea .pipelineEdit .right-content-style .title p {
  260. line-height: 15px;
  261. font-size: 12px;
  262. }
  263. .rightArea .pipelineEdit .right-content-style .bgcolor {
  264. width: 95px;
  265. height: 27px;
  266. margin-top: 10px;
  267. border: 1px solid #e4e4e4;
  268. }
  269. .rightArea .pipelineEdit .right-content-style .bgColorStyle {
  270. display: block;
  271. width: 64px;
  272. height: 21px;
  273. float: left;
  274. background: #59b6fc;
  275. margin: 2px;
  276. }
  277. .rightArea .pipelineEdit .right-content-style .chooseColor {
  278. display: block;
  279. width: 25px;
  280. height: 25px;
  281. float: left;
  282. cursor: pointer;
  283. background: #e4e4e4 url(/src/images/pipeline_map/triangle.png) no-repeat center;
  284. }
  285. .rightArea .pipelineEdit .right-content-style .bordercolor {
  286. width: 206px;
  287. height: 25px;
  288. margin-top: 10px;
  289. border: 1px solid #e4e4e4;
  290. }
  291. .rightArea .pipelineEdit .right-content-style .borderColorStyle {
  292. display: block;
  293. width: 106px;
  294. border: 1px solid #59b6fc;
  295. margin-top: 12px;
  296. margin-left: 20px;
  297. margin-right: 20px;
  298. float: left;
  299. }
  300. .rightArea .pipelineEdit .right-content-style .chooseStyle {
  301. display: block;
  302. width: 58px;
  303. height: 25px;
  304. background: #e4e4e4;
  305. float: left;
  306. border: none;
  307. outline: 0;
  308. cursor: pointer;
  309. }
  310. .rightArea .pipelineEdit .right-content-style .borderWidth {
  311. width: 206px;
  312. height: 25px;
  313. margin: 5px 0;
  314. background: #e4e4e4;
  315. }
  316. .rightArea .pipelineEdit .right-content-style .chooseSize {
  317. display: block;
  318. width: 60px;
  319. height: 25px;
  320. float: right;
  321. margin-top: -34px;
  322. }
  323. .rightArea .pipelineEdit .right-content-style .chooseSize input {
  324. width: 35px;
  325. margin-right: 2px;
  326. text-align: center;
  327. }
  328. .rightArea .pipelineEdit .right-content-style .preview {
  329. width: 150px;
  330. margin-top: 20px;
  331. background: #59b6fc;
  332. }
  333. .rightArea .pipelineEdit .right-content-style .scale_panel {
  334. color: #999;
  335. position: absolute;
  336. line-height: 18px;
  337. left: 10px;
  338. top: 12px;
  339. }
  340. .rightArea .pipelineEdit .right-content-style .scale_panel .r {
  341. float: right;
  342. }
  343. .rightArea .pipelineEdit .right-content-style .scale span {
  344. background: url(/src/images/pipeline_map/scroll.png) no-repeat center;
  345. width: 8px;
  346. height: 16px;
  347. position: absolute;
  348. left: 12px;
  349. top: -7px;
  350. cursor: pointer;
  351. }
  352. .rightArea .pipelineEdit .right-content-style .scale {
  353. background-repeat: repeat-x;
  354. background-position: 0 100%;
  355. background-color: #999;
  356. width: 126px;
  357. height: 3px;
  358. position: relative;
  359. font-size: 0;
  360. border-radius: 3px;
  361. box-sizing: border-box;
  362. }
  363. .rightArea .pipelineEdit .right-content-style .scale div {
  364. background-repeat: repeat-x;
  365. background-color: #59b6fc;
  366. width: 0;
  367. position: absolute;
  368. height: 3px;
  369. width: 0;
  370. left: 0;
  371. bottom: 0;
  372. width: 18px;
  373. }
  374. .rightArea .pipelineEdit .right-content-style .lanren {
  375. width: 146px;
  376. height: 25px;
  377. }
  378. .rightArea .pipelineEdit .right-content-style .lanren li {
  379. width: 146px;
  380. height: 25px;
  381. font-size: 12px;
  382. position: relative;
  383. list-style: none;
  384. }
  385. .rightArea .pipelineEdit .right-content-point {
  386. width: 225px;
  387. height: 356px;
  388. background: #fff;
  389. position: relative;
  390. }
  391. .rightArea .pipelineEdit .right-content-point .point {
  392. height: 50px;
  393. overflow: hidden;
  394. border: 2px solid #fff;
  395. border-bottom: 1px solid #e4e4e4;
  396. }
  397. .rightArea .pipelineEdit .right-content-point .point .point-left {
  398. width: 35px;
  399. line-height: 50px;
  400. text-align: center;
  401. float: left;
  402. }
  403. .rightArea .pipelineEdit .right-content-point .point .point-center {
  404. width: 140px;
  405. height: 45px;
  406. margin-top: 5px;
  407. float: left;
  408. }
  409. .rightArea .pipelineEdit .right-content-point .point .point-center p {
  410. line-height: 20px;
  411. margin: 0;
  412. white-space: nowrap;
  413. overflow: hidden;
  414. text-overflow: ellipsis;
  415. }
  416. .rightArea .pipelineEdit .right-content-point .point .point-right {
  417. width: 35px;
  418. height: 50px;
  419. float: left;
  420. cursor: pointer;
  421. background: url(/src/images/security/delete.png) no-repeat center;
  422. }
  423. .rightArea .pipelineEdit .right-content-point .point .point-right:hover {
  424. background: url(/src/images/pipeline_map/delete.png) no-repeat center;
  425. }
  426. .rightArea .pipelineEdit .right-content-point .nullData {
  427. text-align: center;
  428. padding-top: 110px;
  429. }
  430. .rightArea .pipelineEdit .right-content-point .clickpoint {
  431. background: rgba(237,247,255,.5);
  432. border: 2px solid #59b6fc;
  433. }
  434. .rightArea .pipelineEdit .left-edit-close {
  435. width: 18px;
  436. height: 18px;
  437. background: #6a6a6a;
  438. text-align: center;
  439. line-height: 18px;
  440. color: #fff;
  441. position: absolute;
  442. top: 0;
  443. right: -20px;
  444. cursor: pointer;
  445. }
  446. .rightArea .pipelineEdit .left-edit-shrink {
  447. width: 18px;
  448. height: 18px;
  449. background: #6a6a6a;
  450. text-align: center;
  451. line-height: 18px;
  452. color: #fff;
  453. position: absolute;
  454. top: 20px;
  455. right: -20px;
  456. cursor: pointer;
  457. }
  458. .rightArea .pipelineEdit .footer {
  459. width: 100%;
  460. position: absolute;
  461. height: 40px;
  462. background: #fff;
  463. border-radius: 5px;
  464. bottom: 0;
  465. text-align: center;
  466. }
  467. .rightArea .pipelineEdit .footer button {
  468. font-size: 14px;
  469. display: inline-block;
  470. width: 90px;
  471. height: 30px;
  472. border: none;
  473. outline: 0;
  474. color: #fff;
  475. margin: 5px 5px 0 5px;
  476. cursor: default;
  477. border-radius: 5px;
  478. }
  479. .rightArea .pipelineEdit .footer button.btnBgcolor {
  480. background: #59b6fc;
  481. cursor: pointer;
  482. }
  483. .rightArea input, .rightArea select {
  484. padding: 5px;
  485. width: 100%;
  486. height: 25px;
  487. font-size: 12px;
  488. white-space: nowrap;
  489. text-overflow: ellipsis;
  490. overflow: hidden;
  491. }
  492. .rightArea select {
  493. padding: 0;
  494. outline: 0;
  495. border-radius: 4px;
  496. border: 1px solid #ccc;
  497. }
  498. .rightArea textarea {
  499. padding: 5px;
  500. width: 100%;
  501. height: 60px;
  502. resize: none;
  503. }
  504. .rightArea .tablevue {
  505. height: auto !important;
  506. min-height: 274px !important;
  507. }
  508. .rightArea .modal_table .content {
  509. max-height: 294px;
  510. }
  511. .rightArea .borderRadius {
  512. border-bottom-left-radius: 5px;
  513. border-bottom-right-radius: 5px;
  514. }
  515. .rightArea .overAuto {
  516. overflow: auto;
  517. }
  518. #itemTree_line {
  519. position:relative;
  520. }
  521. .rebackBtn {
  522. position:absolute;
  523. bottom:10px;
  524. width:100%;
  525. border-top:2px solid #ececec;
  526. padding-top:10px;
  527. text-align:center;
  528. }
  529. .rebackBtn input {
  530. width:100px;
  531. }