style.css 38 KB

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