style.css 56 KB

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