style.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. @font-face {
  2. font-family: electronicFont;
  3. /* src: url(../font//SourceHanSansCN-Bold.otf); */
  4. src: url(../font/SourceHanSansCN-Regular.otf)
  5. }
  6. * {
  7. font-family: electronicFont;
  8. }
  9. body a,
  10. body .link {
  11. color: #15BEC8;
  12. text-decoration: none;
  13. }
  14. body a:focus,
  15. body a:hover {
  16. color: #15BEC8;
  17. text-decoration: underline;
  18. }
  19. .ng-isolate-scope .vertical-menu {
  20. background-color: #141414 !important;
  21. }
  22. /* sidebar-menu .copyright-area>.logo img {
  23. width: 104px !important;
  24. margin-left: 10px;
  25. } */
  26. .vertical-menu .vertical-menu-heading {
  27. background-color: transparent !important;
  28. border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
  29. }
  30. .vertical-menu sidebar-menu-item.active:hover>li,
  31. .vertical-menu sidebar-menu-item.active>li {
  32. color: #15BEC8 !important;
  33. background-color: rgba(0, 0, 0, 0.5) !important;
  34. }
  35. .vertical-menu sidebar-menu-item>li:active,
  36. .vertical-menu sidebar-menu-item>li:hover {
  37. color: #15BEC8 !important;
  38. background-color: rgba(0, 0, 0, 0.5) !important;
  39. }
  40. .vertical-menu sidebar-menu-item.active>li {
  41. color: #15BEC8 !important;
  42. background-color: rgba(0, 0, 0, 0.5) !important;
  43. }
  44. .vertical-menu .panel {
  45. background-color: transparent;
  46. color: #fff;
  47. }
  48. .vertical-menu-content {
  49. background-color: transparent !important;
  50. }
  51. sidebar-menu-items-collection {
  52. background-color: transparent !important;
  53. }
  54. /* 首页导航栏 */
  55. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection>.panel-autoscroll {
  56. /* display: none !important; */
  57. }
  58. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li icon>i {
  59. padding-top: 0 !important;
  60. padding-bottom: 0 !important;
  61. text-shadow: none !important;
  62. }
  63. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li:hover icon>i {
  64. color: transparent !important;
  65. }
  66. sidebar-menu-items-collection>.panel-autoscroll {
  67. background-color: rgba(0, 0, 0, 0.5) !important;
  68. /* display: none !important; */
  69. }
  70. sidebar-menu-items-collection.active {
  71. background-color: #141414 !important;
  72. }
  73. sidebar-menu-items-collection>.panel-autoscroll>ul {
  74. background-color: transparent !important;
  75. }
  76. .ng-isolate-scope .vertical-menu .vertical-menu-heading>h3 {
  77. color: #fff;
  78. }
  79. .ng-isolate-scope sidebar-menu-item>li {
  80. color: #fff;
  81. }
  82. sidebar-menu .copyright-area {
  83. color: #fff;
  84. background-color: transparent !important;
  85. }
  86. sidebar-menu .link {
  87. color: #15BEC8;
  88. }
  89. .indoorViewer sidebar-menu>.vertical-menu>.vertical-menu-heading .back-button {
  90. color: #fff;
  91. }
  92. left-panel .threeD-overlay {
  93. margin: 10px 0 0 60px !important;
  94. position: absolute;
  95. top: 0;
  96. left: 0;
  97. z-index: 100;
  98. max-width: 300px !important;
  99. }
  100. .threeD-overlay #left-panel-pois {
  101. background: rgba(0, 0, 0, 0.8) !important;
  102. border: 1px solid rgba(255, 255, 255, .2);
  103. border-radius: 32px !important;
  104. }
  105. .search-box #searchInput.padding-left-menu-icon {
  106. background: transparent !important;
  107. /* padding-left: 20px !important; */
  108. }
  109. .search-box #searchInput {
  110. color: #fff !important;
  111. font-size: 1em !important;
  112. padding-bottom: 0 !important;
  113. }
  114. .search-box #searchInput::-webkit-input-placeholde {
  115. color: #fff !important;
  116. }
  117. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a {
  118. /* padding: 0 !important; */
  119. }
  120. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a icon i {
  121. /* height: 42px !important;
  122. width: 48px !important; */
  123. }
  124. .panel .btn-showhide-poi-details {
  125. color: #fff !important;
  126. }
  127. site-model-details .details-header {
  128. background: transparent !important;
  129. color: #fff !important;
  130. }
  131. .element-on-screen-trigger-wrapper {
  132. color: #fff !important;
  133. }
  134. .poi-btn-toolbar .btn-group button {
  135. border-right: 5px solid transparent !important;
  136. }
  137. .poi-btn-toolbar .btn-group button:hover {
  138. background-color: #15BEC8 !important;
  139. /* color: #15BEC8 !important; */
  140. border-right-color: transparent !important;
  141. }
  142. .poi-btn-toolbar button>.btn-description-mobile,
  143. .poi-btn-toolbar button>div .btn-description-mobile {
  144. color: #fff !important;
  145. }
  146. .panel .btn-showhide-poi-details:hover {
  147. background-color: transparent !important;
  148. }
  149. site-model-details .sme-pois .sme-poi:hover {
  150. background-color: #15BEC8 !important;
  151. }
  152. site-model-details .vcenter.padding-horizontal .long-title {
  153. color: #fff !important;
  154. }
  155. .panel {
  156. background: transparent !important;
  157. }
  158. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a icon {
  159. background: transparent !important;
  160. display: none !important;
  161. }
  162. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar.shadow {
  163. background: rgba(0, 0, 0, 0.8) !important;
  164. border-radius: 4px !important;
  165. }
  166. .search-box .input-group>.input-group-addon {
  167. background: transparent !important;
  168. /* background: rgba(0, 0, 0, 0.8) !important; */
  169. }
  170. .search-box #searchInput:not(.search-box-radius-poi-selected) {
  171. background: transparent !important;
  172. color: #fff;
  173. border: 1px solid transparent !important;
  174. }
  175. .search-box {
  176. background: transparent !important;
  177. }
  178. .ic_svg.clickable.border-left {
  179. border: none !important;
  180. }
  181. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-user {
  182. background-color: #333333 !important;
  183. border: 1px solid #fff;
  184. box-sizing: border-box;
  185. }
  186. sidebar-menu>.vertical-menu>.vertical-menu-heading>.root-heading>span {
  187. display: none !important;
  188. }
  189. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li {
  190. margin-bottom: 20px;
  191. }
  192. sidebar-menu-item>li icon>i.material-icons[icon-ligature="dashboard"] {
  193. background: url(../img/icon/icon_data@2x.png?4)no-repeat;
  194. background-size: 100% 100%;
  195. width: 60px;
  196. height: 60px;
  197. color: transparent;
  198. }
  199. .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="dashboard"] {
  200. background: url(../img/icon/icon_data@2_1.png?4)no-repeat;
  201. background-size: 100% 100%;
  202. }
  203. sidebar-menu-item>li icon>i.material-icons[icon-ligature="remove_red_eye"] {
  204. background: url(../img/icon/icon_eye@2x.png?4)no-repeat;
  205. background-size: 100% 100%;
  206. width: 60px;
  207. height: 60px;
  208. color: transparent;
  209. }
  210. .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="remove_red_eye"] {
  211. background: url(../img/icon/icon_eye@2x_1.png?4)no-repeat;
  212. background-size: 100% 100%;
  213. }
  214. sidebar-menu-item>li icon>i.material-icons[icon-ligature="location_on"] {
  215. background: url(../img/icon/icon_element@2x.png?4)no-repeat;
  216. background-size: 100% 100%;
  217. width: 60px;
  218. height: 60px;
  219. color: transparent;
  220. }
  221. .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="location_on"] {
  222. background: url(../img/icon/icon_element@2x_1.png?4)no-repeat;
  223. background-size: 100% 100%;
  224. }
  225. sidebar-menu-item>li icon>i.material-icons[icon-ligature="mode_edit"] {
  226. background: url(../img/icon/icon_EditMode_1.png?4)no-repeat;
  227. background-size: 100% 100%;
  228. width: 60px;
  229. height: 60px;
  230. color: transparent;
  231. }
  232. .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="mode_edit"] {
  233. background: url(../img/icon/icon_EditMode.png?4)no-repeat;
  234. background-size: 100% 100%;
  235. }
  236. sidebar-menu-item>li icon>i.material-icons[icon-ligature="straighten"] {
  237. background: url(../img/icon/icon_measure@2x.png?4)no-repeat;
  238. background-size: 100% 100%;
  239. width: 60px;
  240. height: 60px;
  241. color: transparent;
  242. }
  243. .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="straighten"] {
  244. background: url(../img/icon/icon_measure@2x_1.png)no-repeat;
  245. background-size: 100% 100%;
  246. }
  247. sidebar-menu-item>li icon>i.fa-thumb-tack[iv-tooltip="坐标"] {
  248. background: url(../img/icon/icon_location@2x.png?4)no-repeat;
  249. background-size: 100% 100%;
  250. width: 60px;
  251. height: 60px;
  252. color: transparent;
  253. }
  254. .vertical-menu sidebar-menu-item.active>li icon>i.fa-thumb-tack[iv-tooltip="坐标"] {
  255. background: url(../img/icon/icon_location@2x_1.png?4)no-repeat;
  256. background-size: 100% 100%;
  257. }
  258. sidebar-menu-item>li icon>i.fa-thumb-tack[iv-tooltip="控制点"] {
  259. background: url(../img/icon/icon_load_n.png?4)no-repeat;
  260. background-size: 100% 100%;
  261. width: 60px;
  262. height: 60px;
  263. color: transparent;
  264. }
  265. .vertical-menu sidebar-menu-item.active>li icon>i.fa-thumb-tack[iv-tooltip="控制点"] {
  266. background: url(../img/icon/icon_load_s.png?4)no-repeat;
  267. background-size: 100% 100%;
  268. }
  269. /* 数据集 */
  270. .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-alignment {
  271. display: none !important;
  272. }
  273. .multiple-dataset-selector>h4 {
  274. height: 64px;
  275. margin: 0 auto 30px;
  276. line-height: 64px;
  277. border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  278. display: flex;
  279. align-items: center;
  280. justify-content: space-between;
  281. }
  282. .multiple-dataset-selector>h4 toggle-switch {
  283. width: 50px !important;
  284. height: 24px !important;
  285. }
  286. h4 .toggle-switch {
  287. width: 50px !important;
  288. height: 24px !important;
  289. position: relative;
  290. }
  291. .toggle-switch input:checked+.slider {
  292. background-color: #15BEC8 !important;
  293. }
  294. h4 .toggle-switch .slider:before {
  295. height: 20px !important;
  296. width: 20px !important;
  297. left: 2px;
  298. bottom: 2px;
  299. content: "";
  300. background-color: #fff;
  301. border-radius: 50%;
  302. position: absolute;
  303. }
  304. .toggle-switch input:checked+.slider:before {
  305. transform: translateX(27px) !important;
  306. }
  307. .site-model-button i.collapse-expand-chevron:before {
  308. content: '';
  309. width: 10px;
  310. height: 10px;
  311. background: url(../img/icon/icon_down@2x.png)no-repeat;
  312. background-size: 100% 100%;
  313. }
  314. .site-model-tree-entity .site-model-button {
  315. height: 30px;
  316. }
  317. .site-model-button .siteModelIcon {
  318. width: 16px;
  319. height: 16px;
  320. }
  321. .site-model-button .fa-square-o:before {
  322. content: '';
  323. width: 16px;
  324. height: 16px;
  325. background: url(../img/icon/sel@2x.png)no-repeat;
  326. background-size: 100% 100%;
  327. display: inline-block;
  328. }
  329. sidebar-menu-items-collection .site-model-button .fa-check-square-o:before {
  330. content: '';
  331. width: 16px;
  332. height: 16px;
  333. background: url(../img/icon/sel@2x_1.png)no-repeat;
  334. background-size: 100% 100%;
  335. display: inline-block;
  336. }
  337. .site-model-button .glyphicon-info-sign:before {
  338. content: '';
  339. width: 16px;
  340. height: 16px;
  341. background: url(../img/icon/icon_info@2x.png)no-repeat;
  342. background-size: 100% 100%;
  343. display: inline-block;
  344. }
  345. sidebar-menu-items-collection .site-model-button .dataset-grp-toolbar {
  346. width: 50px;
  347. background: transparent;
  348. display: flex;
  349. align-items: center;
  350. justify-content: space-between;
  351. }
  352. sidebar-menu-items-collection .site-model-button .btn-borderless {
  353. width: 16px;
  354. height: 16px;
  355. padding: 0;
  356. }
  357. sidebar-menu-items-collection .site-model-button .btn-borderless:hover {
  358. background: transparent;
  359. border: 1px solid transparent;
  360. }
  361. sidebar-menu-items-collection .site-model-button .btn-default:active {
  362. background: transparent;
  363. }
  364. sidebar-menu-items-collection .site-model-button .btn-borderless:focus:focus:hover,
  365. sidebar-menu-items-collection .site-model-button .btn-borderless:focus:hover,
  366. sidebar-menu-items-collection .site-model-button .btn-borderless:hover {
  367. background: transparent;
  368. border: 1px solid transparent;
  369. }
  370. .list-group-item {
  371. background: transparent !important;
  372. color: #fff !important;
  373. }
  374. .list-group-item.active {
  375. background: #15BEC8 !important;
  376. }
  377. .list-group-item .btn-borderless {
  378. width: 16px;
  379. height: 16px;
  380. padding: 0;
  381. }
  382. .btn-borderless:hover {
  383. background: transparent !important;
  384. border: 1px solid transparent !important;
  385. }
  386. .list-group-item .glyphicon-share-alt:before {
  387. content: '' !important;
  388. width: 16px;
  389. height: 16px;
  390. background: url(../img/icon/icon_share.png)no-repeat;
  391. background-size: 100% 100%;
  392. display: inline-block;
  393. }
  394. .list-group-item .data-set-info {
  395. display: flex;
  396. align-items: self-start;
  397. justify-content: center;
  398. }
  399. .list-group-item .data-set-info .data-set-icon {
  400. padding: 6px;
  401. border: none;
  402. margin-top: 5px;
  403. }
  404. /* 查看 */
  405. sidebar-menu #view-menu>.panel-body .checkbox:hover {
  406. background: transparent !important;
  407. color: #15BEC8;
  408. }
  409. sidebar-menu .checkbox input[type=checkbox] {
  410. width: 16px;
  411. height: 16px;
  412. background: url(../img/icon/sel@2x_1.png)no-repeat !important;
  413. background-size: 100% 100%;
  414. }
  415. .panel-heading {
  416. background: transparent !important;
  417. }
  418. poi-type-group-list .panel-default>.panel-heading {
  419. border-color: transparent;
  420. }
  421. sidebar-menu-item>li icon {
  422. /* padding: 10px !important; */
  423. }
  424. /* 兴趣点 */
  425. .panel-heading .btn-group button {
  426. background: transparent;
  427. border-color: transparent;
  428. }
  429. .panel-heading .btn-group button:active {
  430. background: transparent;
  431. }
  432. .panel-heading .btn-group button:hover {
  433. background: #15BEC8;
  434. }
  435. .panel-heading .btn-group button .fa::before {
  436. color: #fff;
  437. }
  438. poi-type-list .checkbox {
  439. display: flex;
  440. align-items: center;
  441. }
  442. .list-group-item .list-group-item-heading {
  443. display: flex;
  444. align-items: center;
  445. }
  446. poi-type-list .fa-pencil:before,
  447. .list-group-item-heading .fa-pencil:before {
  448. width: 16px;
  449. height: 16px;
  450. content: '';
  451. background: url(../img/icon/icon_edit.png)no-repeat;
  452. background-size: 100% 100%;
  453. display: inline-block;
  454. }
  455. /* 弹窗 */
  456. .modal-dialog .modal-content {
  457. background: rgba(0, 0, 0, .8);
  458. color: #fff;
  459. }
  460. .modal-dialog .modal-content .form-group select {
  461. background: transparent;
  462. border: 1px solid rgba(255, 255, 255, 0.4);
  463. color: #fff;
  464. }
  465. .modal-dialog .modal-content .form-group select option {
  466. background: rgba(0, 0, 0, .8);
  467. color: #fff;
  468. }
  469. .modal-dialog .modal-content .form-group select option:hover {
  470. background: #15BEC8;
  471. }
  472. .modal-dialog .nav-pills-used-langs li>a {
  473. color: #fff;
  474. }
  475. .modal-dialog .nav-pills-used-langs li>a:hover {
  476. background: transparent;
  477. }
  478. .modal-dialog .modal-content .nav-pills>li.active>a {
  479. background: #15BEC8;
  480. }
  481. .modal-dialog .modal-body .btn-danger {
  482. border: 1px solid rgba(255, 255, 255, 0.4);
  483. background: transparent;
  484. }
  485. .modal-dialog .modal-content .glyphicon-trash:before {
  486. width: 16px;
  487. height: 16px;
  488. background: url('../img/icon/icon_del.png')no-repeat;
  489. background-size: 100% 100%;
  490. display: inline-block;
  491. content: '';
  492. }
  493. .modal-dialog .modal-body .btn-default {
  494. background-color: transparent;
  495. color: #fff;
  496. border-radius: 4px;
  497. border: 1px solid rgba(255, 255, 255, 0.4);
  498. }
  499. .modal-dialog .modal-body .btn-default:hover {
  500. color: #fff;
  501. }
  502. .modal-dialog .modal-footer .btn-default {
  503. border-radius: 4px;
  504. border: 1px solid #15BEC8;
  505. color: #15BEC8;
  506. background: transparent;
  507. }
  508. .modal-dialog .modal-footer .btn-primary:hover {
  509. color: #fff;
  510. background-color: #15BEC8;
  511. border-color: #15BEC8;
  512. }
  513. .modal-header {
  514. border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
  515. }
  516. .modal-footer {
  517. border-top: 1px solid rgba(255, 255, 255, .2) !important;
  518. }
  519. /* .modal-dialog .btn-default:hover {
  520. background: transparent;
  521. color: #15BEC8;
  522. } */
  523. .modal-dialog .btn-primary {
  524. background-color: #15BEC8;
  525. border-color: #15BEC8;
  526. }
  527. .modal-dialog .btn-primary:hover {
  528. /* opacity: 0.9; */
  529. }
  530. .modal-dialog input.form-control {
  531. background: transparent;
  532. border: 1px solid rgba(255, 255, 255, 0.4);
  533. color: #fff;
  534. }
  535. .form-group select {
  536. background: transparent !important;
  537. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  538. color: #fff !important;
  539. }
  540. .form-group select option {
  541. background: rgba(0, 0, 0, .8) !important;
  542. color: #fff !important;
  543. }
  544. .form-group select option:hover {
  545. background: #15BEC8 !important;
  546. }
  547. hr {
  548. border-top: 1px solid rgba(255, 255, 255, .2) !important;
  549. }
  550. input {
  551. background: transparent !important;
  552. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  553. color: #fff !important;
  554. }
  555. .ui-widget-content {
  556. background: transparent !important;
  557. border-color: #15BEC8 !important;
  558. }
  559. .ui-button,
  560. .ui-state-default,
  561. .ui-widget-content .ui-state-default,
  562. .ui-widget-header .ui-state-default,
  563. html .ui-button.ui-state-disabled:active,
  564. html .ui-button.ui-state-disabled:hover {
  565. background: #15BEC8 !important;
  566. border-color: #15BEC8 !important;
  567. }
  568. .glyphicon-chevron-down:before {
  569. color: #fff;
  570. }
  571. sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
  572. background: transparent !important;
  573. }
  574. sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar {
  575. width: 8px;
  576. }
  577. sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar-track {
  578. background-color: #000;
  579. -webkit-border-radius: 1em;
  580. -moz-border-radius: 1em;
  581. border-radius: 1em;
  582. }
  583. sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar-thumb {
  584. background-color: rgba(255, 255, 255, .2);
  585. -webkit-border-radius: 1em;
  586. -moz-border-radius: 1em;
  587. border-radius: 1em;
  588. }
  589. .clear-background .siteModelIcon {
  590. /* width: 24px;
  591. height: 24px; */
  592. }
  593. .border-top,
  594. left-panel .poi-extensions-box>*>* {
  595. border-top: 1px solid rgba(255, 255, 255, .2) !important;
  596. }
  597. .search-box #searchInput.padding-left-menu-icon {
  598. border-color: transparent !important;
  599. padding-left: 10px !important;
  600. }
  601. .list-group-item {
  602. border-color: rgba(255, 255, 255, .2) !important;
  603. }
  604. .panel-autoscroll sidebar-menu-item.active:active>li,
  605. .panel-autoscroll sidebar-menu-item.active:hover>li,
  606. .panel-autoscroll sidebar-menu-item.active>li,
  607. .panel-autoscroll sidebar-menu-item>li.active,
  608. .panel-autoscroll sidebar-menu-item>li.active:active,
  609. .panel-autoscroll sidebar-menu-item>li.active:hover {
  610. color: #15BEC8 !important;
  611. background-color: rgba(0, 0, 0, 0.5) !important;
  612. }
  613. /* .panel-autoscroll sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="straighten"] {
  614. background: url(../img/icon/icon_measure@2x_1.png)no-repeat;
  615. background-size: 100% 100%;
  616. width: 20px;
  617. height: 20px;
  618. color: transparent;
  619. } */
  620. navbar-menu .navbar-menu-panel #login-panel {
  621. background-color: rgba(0, 0, 0, 0.8) !important;
  622. color: #fff;
  623. }
  624. #login-panel .panel-heading {
  625. color: #fff;
  626. }
  627. #login-panel .btn-primary {
  628. background: #15BEC8;
  629. }
  630. #login-panel .panel-heading {
  631. border-color: rgba(255, 255, 255, 0.2);
  632. }
  633. #login-panel .border-bottom {
  634. border: 1px solid rgba(255, 255, 255, 0.2);
  635. }
  636. .vertical-menu .vertical-menu-heading .menu-close-button {
  637. /* width: 16px;
  638. height: 16px; */
  639. }
  640. /* 测量右侧 */
  641. .vertical-menu .expand-wrapper {
  642. background: transparent !important;
  643. border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
  644. }
  645. .vertical-menu {
  646. background-color: #141414 !important;
  647. color: #fff !important;
  648. }
  649. .vertical-menu .ng-binding {
  650. color: #fff !important;
  651. }
  652. .tool-container img.selected,
  653. .tool-container img:hover {
  654. background-color: #15BEC8 !important;
  655. }
  656. point-cloud-viewport .view-switcher__holder .btn-default {
  657. background: rgba(0, 0, 0, 0.8);
  658. border-color: transparent;
  659. }
  660. point-cloud-viewport .view-switcher__holder .btn-default svg {
  661. color: #fff;
  662. }
  663. measurement-tool {
  664. /* width: auto !important; */
  665. /* flex: none !important; */
  666. /* margin-right: 20px; */
  667. }
  668. measurement-tool>span {
  669. display: flex!important;
  670. align-items: center!important;
  671. justify-content: center!important;
  672. }
  673. measurement-tool>span>img {
  674. margin-right: 10px!important;
  675. border-radius: 50% !important;
  676. }
  677. /* 路线弹窗 */
  678. route-inputs .route-box {
  679. background: transparent;
  680. }
  681. route-inputs .border-bottom {
  682. border-bottom: 1px solid transparent;
  683. }
  684. route-inputs .route-box .btn-reverse-route,
  685. route-inputs .route-box .btn-reverse-route:hover {
  686. background: transparent;
  687. right: 27px;
  688. }
  689. /* 分享 */
  690. share-menu .form-group+.no-margin-bottom {
  691. display: none;
  692. }
  693. /* 坐标 */
  694. #coord_editor {
  695. display: none;
  696. }
  697. sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template span {
  698. color: #999999 !important;
  699. }
  700. sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template select {
  701. background: transparent !important;
  702. border: 1px solid rgba(255, 255, 255, 0.4) !important;
  703. color: #fff !important;
  704. }
  705. sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template select option {
  706. background: rgba(0, 0, 0, .8) !important;
  707. color: #fff !important;
  708. }
  709. sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-templateselect option:hover {
  710. background: #15BEC8 !important;
  711. }
  712. /* 编辑模式 */
  713. /* .panel-heading{
  714. color: #fff !important;
  715. } */
  716. .sidebar-menu-item-mode-normal {
  717. display: none!important;
  718. }
  719. h4[title="编辑模式"]+sidebar-menu-items-collection .panel-autoscroll sidebar-menu-item:nth-of-type(1) {
  720. display: none !important;
  721. }
  722. .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-vector-map {
  723. display: none;
  724. }
  725. .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-geo-reg {
  726. display: none;
  727. }
  728. site-model-collection .dataset-grp-toolbar {
  729. background: transparent;
  730. display: flex;
  731. align-items: center;
  732. justify-content: space-between;
  733. }
  734. site-model-collection .dataset-grp-toolbar .fa {
  735. color: #fff;
  736. }
  737. site-model-editor .site-model-tree-entity>[role=button].selected>dataset-group-toolbar .dataset-grp-toolbar button {
  738. color: #fff !important;
  739. }
  740. site-model-editor .btn-primary {
  741. background: #15BEC8;
  742. }
  743. site-model-editor .btn-primary:hover {
  744. background: #15BEC8;
  745. }
  746. /* 空间模型 */
  747. .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-site-model {
  748. display: none;
  749. }
  750. form[class="ng-pristine ng-valid"] .panel.panel-default {
  751. border-color: rgba(255, 255, 255, .2);
  752. }
  753. form[class="ng-pristine ng-valid"] .panel .panel-heading {
  754. color: #fff;
  755. border-color: rgba(255, 255, 255, .2);
  756. }
  757. form[class="ng-pristine ng-valid"] .panel .panel-body .add-building {
  758. background: #15BEC8;
  759. color: #fff;
  760. border-color: #15BEC8;
  761. }
  762. form[class="ng-pristine ng-valid"] .panel .panel-body .add-building:hover {
  763. background: #15BEC8;
  764. color: #fff;
  765. }
  766. form[class="ng-pristine ng-valid"] .panel .panel-body .btn-block:nth-of-type(n+2) {
  767. display: none;
  768. }
  769. form[class="ng-pristine ng-valid"] .panel .panel-body label.btn-block {
  770. display: none;
  771. }
  772. /* 点击锁 */
  773. form[class="ng-pristine ng-valid ng-submitted"] .panel.panel-default {
  774. border-color: rgba(255, 255, 255, .2);
  775. }
  776. form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-heading {
  777. color: #fff;
  778. border-color: rgba(255, 255, 255, .2);
  779. }
  780. form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .add-building {
  781. background: #15BEC8;
  782. color: #fff;
  783. border-color: #15BEC8;
  784. }
  785. form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .add-building:hover {
  786. background: #15BEC8;
  787. color: #fff;
  788. }
  789. form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .btn-block:nth-of-type(n+2) {
  790. display: none;
  791. }
  792. form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body label.btn-block {
  793. display: none;
  794. }
  795. /* 点击透视全景图勾选 */
  796. form[role="form"] .panel.panel-default {
  797. border-color: rgba(255, 255, 255, .2);
  798. }
  799. form[role="form"] .panel .panel-heading {
  800. color: #fff;
  801. border-color: rgba(255, 255, 255, .2);
  802. }
  803. form[role="form"] .panel .panel-body .add-building {
  804. background: #15BEC8;
  805. color: #fff;
  806. border-color: #15BEC8;
  807. }
  808. form[role="form"] .panel .panel-body .add-building:hover {
  809. background: #15BEC8;
  810. color: #fff;
  811. }
  812. form[role="form"] .panel .panel-body .btn-block:nth-of-type(n+2) {
  813. display: none;
  814. }
  815. form[role="form"] .panel .panel-body label.btn-block {
  816. display: none;
  817. }
  818. form[role="form"] .form-group button[ng-click="vm.save()"] {
  819. background-color: #15BEC8;
  820. }
  821. form[class="ng-valid ng-dirty ng-valid-parse"] .panel.panel-default {
  822. border-color: rgba(255, 255, 255, .2);
  823. }
  824. form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-heading {
  825. color: #fff;
  826. border-color: rgba(255, 255, 255, .2);
  827. }
  828. form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .add-building {
  829. background: #15BEC8;
  830. color: #fff;
  831. border-color: #15BEC8;
  832. }
  833. form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .add-building:hover {
  834. background: #15BEC8;
  835. color: #fff;
  836. }
  837. form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .btn-block:nth-of-type(n+2) {
  838. display: none;
  839. }
  840. form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body label.btn-block {
  841. display: none !important;
  842. }
  843. /* 空间模型结束 */
  844. .btn-group>.btn:first-child {
  845. color: #fff;
  846. }
  847. vector-map-toolbar[class="ng-isolate-scope"] .btn-toolbar .btn-default {
  848. color: #fff;
  849. }
  850. vector-map-toolbar[class="ng-isolate-scope"] .btn-toolbar .btn-default:hover {
  851. background: #15BEC8;
  852. }
  853. .form-control {
  854. background: transparent !important;
  855. color: #fff !important;
  856. }
  857. download-button .collapse-style {
  858. background-color: transparent !important;
  859. bottom: 80% !important;
  860. }
  861. .input-group-addon {
  862. background: transparent !important;
  863. }
  864. download-button .dropdown-toggle {
  865. background: transparent !important;
  866. }
  867. .vertical-menu .vertical-menu-content ul {
  868. background: transparent !important;
  869. }
  870. .dropdown-menu {
  871. background: rgba(0, 0, 0, .8) !important;
  872. }
  873. .open>.dropdown-toggle.btn-default,
  874. .open>.dropdown-toggle.btn-default:active {
  875. background: transparent !important;
  876. color: #fff !important;
  877. }
  878. .dropdown-menu>li.active,
  879. .dropdown-menu>li:focus,
  880. .dropdown-menu>li:hover {
  881. background: #15BEC8 !important;
  882. }
  883. .vertical-menu-content ul .selected {
  884. background: #15BEC8 !important;
  885. }
  886. download-button .input-group .btn-primary {
  887. background-color: #15BEC8;
  888. border-color: #15BEC8;
  889. }
  890. #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group input[placeholder="pointcloud"] {
  891. display: none !important;
  892. }
  893. #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group .input-group-addon {
  894. display: none !important;
  895. }
  896. #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group .input-group-btn button {
  897. width: 100%!important;
  898. float: right;
  899. border-radius: 4px;
  900. }
  901. #vertical-toolbox-menu .vertical-menu-content download-point-cloud reference-dataset-selection {
  902. display: none;
  903. }
  904. .route-box .btn-close:active,
  905. .route-box .btn-close:hover {
  906. background: transparent !important;
  907. }
  908. attributes-editor .form-group .btn-primary:hover {
  909. background: #15BEC8;
  910. border-color: #15BEC8;
  911. }
  912. .panel-body .panel-group .panel:nth-of-type(-n+5) {
  913. display: none;
  914. }
  915. /* 导入/导出兴趣点 */
  916. poi-export-import .collapse-style {
  917. display: none !important;
  918. }
  919. /* 第三方许可 */
  920. #third-party-licenses-button {
  921. display: none;
  922. }
  923. #floorChanger {
  924. background: rgba(0, 0, 0, 0.8) !important;
  925. }
  926. floor-changer .btn-group-vertical button[ng-repeat="floorName in vm.floorNames | reverse"] {
  927. background: transparent !important;
  928. border-radius: 4px !important;
  929. color: #15BEC8 !important;
  930. }
  931. /* 关于 */
  932. #about-modal .modal-body>div:nth-of-type(4) {
  933. display: none;
  934. }
  935. #about-modal .modal-body>div:nth-of-type(5) {
  936. display: none;
  937. }
  938. #about-modal .modal-body>div:nth-of-type(6)>span,
  939. #about-modal .modal-body>div:nth-of-type(6) ul {
  940. display: none;
  941. }
  942. #about-modal .modal-body>div:nth-of-type(6) {
  943. height: 40px;
  944. }
  945. #about-modal .modal-body>div:nth-of-type(7) {
  946. display: none;
  947. }
  948. .panel-body .text-warning {
  949. color: #fff !important;
  950. }
  951. /* 数据集校准 */
  952. button[title="导出实体"] {
  953. display: none !important;
  954. }
  955. input[readonly="readonly"] {
  956. color: #999 !important;
  957. }
  958. .modal-dialog-wide attributes-editor[key-suggestions="['external_entity_id']"] {
  959. display: none !important;
  960. }
  961. #viewConfiguration hr {
  962. /* display: none !important; */
  963. }
  964. #viewConfiguration .checkbox:nth-of-type(-n+4) {
  965. /* display: none !important; */
  966. }
  967. automatic-alignment {
  968. /* display: none !important; */
  969. }
  970. dataset-tree {
  971. display: none !important;
  972. }
  973. generate-and-save-bundle-xml {
  974. /* display: none !important; */
  975. }
  976. dataset-alignment-panel form[role="form"] .form-group.text-right.mt-10 {
  977. display: none !important;
  978. }
  979. /* 变换 */
  980. #transform-panel .panel-body .btn-default {
  981. background: transparent;
  982. color: #fff;
  983. border-color: rgba(255, 255, 255, .2) !important;
  984. }
  985. .panel-heading h3 {
  986. color: #fff !important;
  987. }
  988. #transform-panel .panel-body button:hover {
  989. background: #143537;
  990. }
  991. #transform-panel .panel-body button:focus {
  992. background: #143537;
  993. }
  994. /* 测量 */
  995. measurement-list .material-icons {
  996. color: #fff !important;
  997. }
  998. measurement-list .fa-square-o:before {
  999. color: #fff !important;
  1000. }
  1001. measurement-list .hovered {
  1002. background-color: #143537 !important;
  1003. }
  1004. measurement-list hr {
  1005. border: .5px solid rgba(255, 255, 255, .2) !important;
  1006. }
  1007. button[title="放大镜"]:hover {
  1008. background: #15BEC8 !important;
  1009. }
  1010. button[title="放大镜"].active svg {
  1011. color: #15BEC8 !important;
  1012. }
  1013. button[title="放大镜"].active:hover svg {
  1014. color: #fff !important;
  1015. }
  1016. measurement-list-toolbar .fa-check-square-o {
  1017. color: #fff;
  1018. }
  1019. .measurement-details-row .fa-check-square-o {
  1020. color: #fff;
  1021. }
  1022. .glyphicon-resize-full::before {
  1023. color: #fff !important;
  1024. }
  1025. .nav-tabs[role="tablist"] {
  1026. border-bottom: none !important;
  1027. }
  1028. .nav-tabs>li.active>a,
  1029. .nav-tabs>li.active>a:focus,
  1030. .nav-tabs>li.active>a:hover {
  1031. color: #fff !important;
  1032. background-color: #15BEC8 !important;
  1033. border-color: transparent !important;
  1034. }
  1035. .nav-tabs>li>a {
  1036. color: #fff !important;
  1037. }
  1038. .nav-tabs>li>a:focus,
  1039. .nav-tabs>li>a:hover {
  1040. background-color: #15BEC8 !important;
  1041. border-color: transparent !important;
  1042. }
  1043. .fa-pencil:before {
  1044. color: #fff !important;
  1045. }
  1046. /* left-panel .poi-extensions-box {
  1047. overflow-x: hidden;
  1048. } */
  1049. .dropdown-menu {
  1050. border-top: 1px solid transparent !important;
  1051. }
  1052. .dropdown-menu .divider {
  1053. background-color: rgba(255, 255, 255, .4) !important;
  1054. }
  1055. .open>.dropdown-toggle.btn-default {
  1056. border-color: rgba(255, 255, 255, .4) !important;
  1057. }
  1058. .dropdown-toggle {
  1059. border-color: rgba(255, 255, 255, .4) !important;
  1060. }
  1061. .btn-file:hover {
  1062. background-color: #15BEC8 !important;
  1063. }
  1064. /* 选择参考数据集 */
  1065. #referenceDatasetSelectionSetting {
  1066. border: 1px solid rgba(255, 255, 255, .2);
  1067. }
  1068. /* 搜索 */
  1069. #results-list.show {
  1070. left: 60px!important;
  1071. }
  1072. #results-list .results-heading {
  1073. background-color: transparent !important;
  1074. }
  1075. .dropdown-menu-search-results>li {}
  1076. .dropdown-menu-search-results>li {
  1077. color: #fff !important;
  1078. background: transparent !important;
  1079. }
  1080. .dropdown-menu-search-results.dropdown-menu>li.active {
  1081. background: transparent !important;
  1082. }
  1083. .dropdown-menu-search-results.dropdown-menu>li:hover {
  1084. background: #15BEC8!important;
  1085. }
  1086. #results-list .list-group .list-group-item:hover {
  1087. background: #15BEC8!important;
  1088. }
  1089. results-element .checkbox,
  1090. .radio {
  1091. color: #999999 !important;
  1092. }
  1093. .dropdown-menu-search-results.dropdown-menu.dropdown-menu-item-separators>li:not(.divider):not(:last-child) {
  1094. border-bottom: 1px solid rgba(255, 255, 255, .2);
  1095. }
  1096. /* PDF */
  1097. .cdk-overlay-container mat-dialog-container .mat-dialog-title {
  1098. color: #fff;
  1099. }
  1100. .cdk-overlay-container mat-dialog-container .body-container .link-ellipses span.ng-star-inserted {
  1101. color: #fff;
  1102. }
  1103. .cdk-overlay-container mat-dialog-container .body-container i[class="material-icons icn-small clickable"] {
  1104. color: #fff;
  1105. }
  1106. .cdk-overlay-container mat-dialog-container {
  1107. background: rgba(0, 0, 0, .8);
  1108. }
  1109. .cdk-overlay-container mat-dialog-container .measurement-container {
  1110. background: #141414 !important;
  1111. }
  1112. .cdk-overlay-container mat-dialog-container .measurement-container .flex-row {
  1113. color: #fff;
  1114. }
  1115. .cdk-overlay-container mat-dialog-container .measurement-container .flex-row .subtitle {
  1116. color: #fff;
  1117. margin-bottom: 22px;
  1118. }
  1119. .cdk-overlay-container mat-dialog-container .measurement-container .location {
  1120. color: #fff;
  1121. }
  1122. .cdk-overlay-container mat-dialog-container .measurement-container .location img {
  1123. width: 16px;
  1124. height: 16px;
  1125. margin-right: 10px;
  1126. }
  1127. .cdk-overlay-container .mat-flat-button {
  1128. border-radius: 4px;
  1129. border: 1px solid #15BEC8;
  1130. background: transparent;
  1131. color: #15BEC8;
  1132. }
  1133. .cdk-overlay-container mat-dialog-actions .mat-flat-button.mat-primary {
  1134. background: #15BEC8;
  1135. }
  1136. .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar {
  1137. width: 8px;
  1138. }
  1139. .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar-track {
  1140. background-color: #000;
  1141. -webkit-border-radius: 1em;
  1142. -moz-border-radius: 1em;
  1143. border-radius: 1em;
  1144. }
  1145. .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar-thumb {
  1146. background-color: rgba(255, 255, 255, .2);
  1147. -webkit-border-radius: 1em;
  1148. -moz-border-radius: 1em;
  1149. border-radius: 1em;
  1150. }
  1151. /* 导出XML */
  1152. #xmlExport button.form-control {
  1153. border: none;
  1154. background: #15BEC8 !important;
  1155. }
  1156. /* 右键兴趣点 */
  1157. .context-menu-list {
  1158. background: rgba(0, 0, 0, 0.5) !important;
  1159. border: none !important;
  1160. }
  1161. .context-menu-item {
  1162. background: transparent !important;
  1163. color: #fff !important;
  1164. }
  1165. .context-menu-item:nth-of-type(2) {
  1166. display: none !important;
  1167. }
  1168. .context-menu-item:nth-of-type(5) {
  1169. display: none !important;
  1170. }
  1171. .context-menu-item:hover {
  1172. background: #15BEC8 !important;
  1173. }
  1174. .context-menu-item.context-menu-icon:before {
  1175. color: #fff !important;
  1176. }
  1177. /* 多语言 */
  1178. translation-editor[selected-language="selectedLanguage"] .form-group:first-of-type {
  1179. display: none;
  1180. }
  1181. /* 控制点 */
  1182. sidebar-menu-item li h4[title="控制点"]+sidebar-menu-items-collection.active {
  1183. /* position: fixed; */
  1184. /* width: calc(100% - 62px); */
  1185. /* width: 440px;
  1186. height: calc(100% - 124px);
  1187. right: 0;
  1188. left: 60px !important;
  1189. top: 124px !important; */
  1190. }
  1191. sidebar-menu-item li h4[title="控制点"]+sidebar-menu-items-collection.active .panel-autoscroll {
  1192. overflow: hidden;
  1193. }
  1194. /* 导航栏 */
  1195. body {
  1196. background-color: #141414 !important;
  1197. }
  1198. sidebar-preview-menu>.vertical-menu>.vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item:nth-of-type(2) {
  1199. display: none;
  1200. /* 隐藏数据集 */
  1201. }
  1202. .vertical-menu .vertical-menu-heading {
  1203. background: #141414 !important;
  1204. }
  1205. .vertical-menu .vertical-menu-heading h3 {
  1206. /* background-color: rgba(0, 0, 0, 0.5) !important; */
  1207. margin: 0 0 0 0 !important;
  1208. }
  1209. sidebar-menu-items-collection.active {
  1210. left: 0 !important;
  1211. z-index: 100;
  1212. }
  1213. sidebar-menu>.vertical-menu>.vertical-menu-heading .back-button {
  1214. display: none !important;
  1215. }
  1216. .vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item>li>h4 {
  1217. opacity: 0 !important;
  1218. }
  1219. .custom-tooltip {
  1220. /* margin: 0 auto; */
  1221. }
  1222. sidebar-menu-item>li {
  1223. padding-left: 0 !important;
  1224. }
  1225. sidebar-menu .vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item>li>.custom-tooltip {
  1226. opacity: 0;
  1227. }
  1228. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection>.panel-autoscroll {
  1229. background-color: transparent!important;
  1230. }
  1231. sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li {
  1232. display: flex;
  1233. align-items: center;
  1234. justify-content: center;
  1235. margin-left: 0px !important;
  1236. }
  1237. sidebar-menu>.vertical-menu {
  1238. left: 60px!important;
  1239. max-height: 60%;
  1240. top: 62px !important;
  1241. }
  1242. sidebar-preview-menu>.vertical-menu {
  1243. height: 100% !important;
  1244. }
  1245. sidebar-menu>.vertical-menu.hide {
  1246. left: -461px!important;
  1247. }
  1248. sidebar-menu .copyright-area>.logo img {
  1249. opacity: 0 !important;
  1250. }
  1251. /* .desktop>sidebar-preview-menu>.vertical-menu>.vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll {
  1252. height: calc(100%) !important;
  1253. } */
  1254. navbar-menu .navbar-default {
  1255. height: 62px!important;
  1256. background-color: #141414 !important;
  1257. margin: 0 !important;
  1258. padding: 0!important;
  1259. border-radius: 0;
  1260. }
  1261. #insetPanel .swap-views-button {
  1262. position: fixed;
  1263. top: 6px;
  1264. right: 122px;
  1265. z-index: 999;
  1266. width: 0;
  1267. }
  1268. #insetPanel {
  1269. width: 0 !important;
  1270. height: 0 !important;
  1271. min-width: 0 !important;
  1272. min-height: 0 !important;
  1273. z-index: 1000 !important;
  1274. }
  1275. #insetPanel canvas {
  1276. display: none !important;
  1277. }
  1278. /* 登录头像 */
  1279. navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-user {
  1280. margin: 10px !important;
  1281. /* display: none; */
  1282. }
  1283. .swap-views-button .glyphicon-resize-full:before {
  1284. content: "" !important;
  1285. width: 24px;
  1286. height: 24px;
  1287. display: block;
  1288. background: url(../img/icon/icon_location_n.png)no-repeat;
  1289. background-size: 100% 100%;
  1290. }
  1291. .swap-views-button .glyphicon-resize-full.active:before {
  1292. content: "" !important;
  1293. width: 24px;
  1294. height: 24px;
  1295. display: block;
  1296. background: url(../img/icon/icon_location_s.png)no-repeat;
  1297. background-size: 100% 100%;
  1298. }
  1299. toolbox-menu>.vertical-menu {
  1300. /* height: calc(100% - 62px) !important;
  1301. top: 62px !important; */
  1302. }
  1303. point-cloud-viewport .view-switcher__holder {
  1304. top: 70px !important;
  1305. }
  1306. .uncollapse-btn {
  1307. justify-content: flex-end;
  1308. }
  1309. .uncollapse-btn .uncollapse-button-text {
  1310. display: none !important;
  1311. }
  1312. .uncollapse-btn .button-padding-left {
  1313. width: 40px;
  1314. height: 40px;
  1315. background: rgba(0, 0, 0, 0.8);
  1316. border-radius: 50%;
  1317. display: flex;
  1318. align-items: center;
  1319. justify-content: center;
  1320. }
  1321. .uncollapse-btn .button-padding-leftimg[alt="arrow_icon"] {
  1322. width: 24px;
  1323. height: 24px;
  1324. }
  1325. .vertical-viewport-separator .btn-resizer {
  1326. display: none !important;
  1327. }
  1328. .vertical-viewport-separator.resizeable {
  1329. background: #141414 !important;
  1330. }
  1331. measurement-details .measurement-details .measurement-details-row img[alt="distance_icon"] {
  1332. display: none;
  1333. }
  1334. .measurement-note-placeholder {
  1335. font-style: normal !important;
  1336. }
  1337. measurements {
  1338. padding: 0 !important;
  1339. }
  1340. measurement-tool-selection[ng-reflect-is-collapsed-view="false"] {
  1341. background: #000;
  1342. padding: 25px 20px 0;
  1343. margin-bottom: 0 !important;
  1344. }
  1345. measurement-tool-selection[ng-reflect-is-collapsed-view="true"] {
  1346. background: #000;
  1347. margin-bottom: 0 !important;
  1348. }
  1349. measurement-list {
  1350. margin: 0 !important;
  1351. }
  1352. floor-changer .btn-group-vertical {
  1353. display: none !important;
  1354. }
  1355. .measurement-list-items {
  1356. background: #000;
  1357. }
  1358. button[title="隐藏所选"] .material-icons {
  1359. background: url(../img/icon/icon_hide.png?4)no-repeat;
  1360. background-size: 100% 100%;
  1361. width: 20px;
  1362. height: 20px;
  1363. color: transparent !important;
  1364. }
  1365. button[title="分享所选"] .material-icons {
  1366. background: url(../img/icon/share.png?4)no-repeat;
  1367. background-size: 100% 100%;
  1368. width: 20px;
  1369. height: 20px;
  1370. color: transparent !important;
  1371. }
  1372. button[title="删除所选"] .material-icons {
  1373. background: url(../img/icon/icon_del.png?4)no-repeat;
  1374. background-size: 100% 100%;
  1375. width: 20px;
  1376. height: 20px;
  1377. color: transparent !important;
  1378. }
  1379. button[title="保存所选"] .material-icons {
  1380. background: url(../img/icon/icon_save.png?4)no-repeat;
  1381. background-size: 100% 100%;
  1382. width: 20px;
  1383. height: 20px;
  1384. color: transparent !important;
  1385. }
  1386. #view-menu>.panel-body>.checkbox:nth-of-type(3) {
  1387. display: none!important;
  1388. }
  1389. #collapsequality div[ui-slider] {
  1390. display: none !important;
  1391. }
  1392. .measurement-list-items::-webkit-scrollbar {
  1393. width: 8px;
  1394. }
  1395. .measurement-list-items::-webkit-scrollbar-track {
  1396. background-color: #000;
  1397. -webkit-border-radius: 1em;
  1398. -moz-border-radius: 1em;
  1399. border-radius: 1em;
  1400. }
  1401. .measurement-list-items::-webkit-scrollbar-thumb {
  1402. background-color: rgba(255, 255, 255, .2);
  1403. -webkit-border-radius: 1em;
  1404. -moz-border-radius: 1em;
  1405. border-radius: 1em;
  1406. }
  1407. .route-box .route-last-position .padding-horizontal {
  1408. color: #999 !important;
  1409. }
  1410. .route-box .route-last-position:hover {
  1411. background: transparent !important;
  1412. }
  1413. .route-box .form {
  1414. margin-left: -40px !important;
  1415. margin-top: 53px;
  1416. }
  1417. .route-box .btn-reverse-route {
  1418. right: 5px !important;
  1419. }
  1420. poi-translation-editor[selected-language="vm.selectedLanguage"] {
  1421. display: none !important;
  1422. }
  1423. optgroup {
  1424. background: rgba(0, 0, 0, .8) !important;
  1425. color: #fff !important;
  1426. }
  1427. button[title="切换到2D视图"]:hover {
  1428. background: rgba(0, 0, 0, .8) !important;
  1429. color: #15BEC8 !important;
  1430. border-color: rgba(0, 0, 0, .8) !important;
  1431. }
  1432. button[title="切换到2D视图"]:focus {
  1433. background: rgba(0, 0, 0, .8) !important;
  1434. color: #15BEC8 !important;
  1435. border-color: rgba(0, 0, 0, .8) !important;
  1436. }
  1437. button[title="切换到2D视图"].active {
  1438. background: rgba(0, 0, 0, .8) !important;
  1439. color: #15BEC8 !important;
  1440. border-color: rgba(0, 0, 0, .8) !important;
  1441. }
  1442. button[title="切换到3D视图"] {
  1443. color: #fff;
  1444. }
  1445. button[title="切换到3D视图"]:hover {
  1446. background: rgba(0, 0, 0, .8) !important;
  1447. color: #15BEC8 !important;
  1448. border-color: rgba(0, 0, 0, .8) !important;
  1449. }
  1450. button[title="切换到3D视图"]:focus {
  1451. background: rgba(0, 0, 0, .8) !important;
  1452. color: #15BEC8 !important;
  1453. border-color: rgba(0, 0, 0, .8) !important;
  1454. }
  1455. button[title="切换到3D视图"].active {
  1456. background: rgba(0, 0, 0, .8) !important;
  1457. color: #15BEC8 !important;
  1458. border-color: rgba(0, 0, 0, .8) !important;
  1459. }
  1460. #progress-wrapper {
  1461. display: none !important;
  1462. }
  1463. #editor_coord_froms {
  1464. text-align: left !important;
  1465. margin-left: 60px !important;
  1466. }
  1467. #editPoi .modal-body .poiModalForm .form-group:nth-of-type(3) {
  1468. display: none !important;
  1469. }
  1470. #editPoi .modal-body .poiModalForm permission-editor[class="ng-isolate-scope"] {
  1471. display: none !important;
  1472. }
  1473. #upload_panel .fa-upload {
  1474. display: none !important;
  1475. }
  1476. toolbox-menu>.vertical-menu.sticky-headers-enabled .vertical-menu-content {
  1477. opacity: .8;
  1478. }
  1479. route-instructions .panel .panel-body .overview .route-distance {
  1480. color: #fff !important;
  1481. }
  1482. route-instructions .panel .panel-body>:first-child {
  1483. border: none !important;
  1484. }
  1485. route-instructions .panel .panel-body .instructions-list {
  1486. border-color: rgba(255, 255, 255, .2) !important;
  1487. }
  1488. icon[icon-ligature="file_download"] {
  1489. display: none!important;
  1490. }
  1491. h4[title="裁剪和下载点云"] {
  1492. margin: 1px 10px 0 56px !important;
  1493. }
  1494. #view-menu {
  1495. padding: 0 0 0 20px !important;
  1496. }
  1497. sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
  1498. border-radius: 30%;
  1499. }
  1500. #view-menu .form-control {
  1501. border-radius: 20px !important;
  1502. }
  1503. #view-menu .ui-slider-handle {
  1504. border-radius: 50% !important;
  1505. }
  1506. sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
  1507. border-radius: 30% !important;
  1508. }
  1509. .modal-dialog .modal-footer .btn-default.move-button {
  1510. display: none!important;
  1511. }
  1512. /* option[value="+proj=tmerc +lat_0=0 +lon_0=123 +k=1 +x_0=500000 +y_0=0 +ellps=GRS80 +units=m +no_defs;"] {
  1513. display: none !important;
  1514. } */
  1515. alert-dialog .mat-stroked-button {
  1516. border-color: rgba(255, 255, 255, .2) !important;
  1517. color: #fff;
  1518. }