style.css 39 KB

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