style.css 47 KB

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