style.css 45 KB

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