123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454 |
- @font-face {
- font-family: electronicFont;
- /* src: url(../font//SourceHanSansCN-Bold.otf); */
- src: url(../font/SourceHanSansCN-Regular.otf)
- }
- * {
- font-family: electronicFont;
- }
- body a, body .link {
- color: #15BEC8;
- text-decoration: none;
- }
- body a:focus, body a:hover {
- color: #15BEC8;
- text-decoration: underline;
- }
- .ng-isolate-scope .vertical-menu {
- background-color: #141414 !important;
- }
- /* sidebar-menu .copyright-area>.logo img {
- width: 104px !important;
- margin-left: 10px;
- } */
- .vertical-menu .vertical-menu-heading {
- background-color: transparent !important;
- border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
- }
- .vertical-menu sidebar-menu-item.active:hover>li, .vertical-menu sidebar-menu-item.active>li {
- color: #15BEC8 !important;
- background-color: rgba(0, 0, 0, 0.5) !important;
- }
- .vertical-menu sidebar-menu-item>li:active, .vertical-menu sidebar-menu-item>li:hover {
- color: #15BEC8 !important;
- background-color: rgba(0, 0, 0, 0.5) !important;
- }
- .vertical-menu sidebar-menu-item.active>li {
- color: #15BEC8 !important;
- background-color: rgba(0, 0, 0, 0.5) !important;
- }
- .vertical-menu .panel {
- background-color: transparent;
- color: #fff;
- }
- .vertical-menu-content {
- background-color: transparent !important;
- }
- sidebar-menu-items-collection {
- background-color: transparent !important;
- }
- /* 首页导航栏 */
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection>.panel-autoscroll {
- /* display: none !important; */
- }
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li icon>i {
- padding-top: 0 !important;
- padding-bottom: 0 !important;
- text-shadow: none !important;
- }
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li:hover icon>i {
- color: transparent !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll {
- background-color: rgba(0, 0, 0, 0.5) !important;
- /* display: none !important; */
- }
- sidebar-menu-items-collection.active {
- background-color: #141414 !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll>ul {
- background-color: transparent !important;
- }
- .ng-isolate-scope .vertical-menu .vertical-menu-heading>h3 {
- color: #fff;
- }
- .ng-isolate-scope sidebar-menu-item>li {
- color: #fff;
- }
- sidebar-menu .copyright-area {
- display: none;
- color: #fff;
- background-color: transparent !important;
- }
- sidebar-menu .link {
- color: #15BEC8;
- }
- .indoorViewer sidebar-menu>.vertical-menu>.vertical-menu-heading .back-button {
- color: #fff;
- }
- left-panel .threeD-overlay {
- margin: 10px 0 0 60px !important;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 100;
- max-width: 300px !important;
- }
- .threeD-overlay #left-panel-pois {
- /* background: rgba(0, 0, 0, 0.8) !important; */
- background: #141414 !important;
- border: 1px solid rgba(255, 255, 255, .2);
- border-radius: 32px !important;
- }
- .search-box #searchInput.padding-left-menu-icon {
- background: transparent !important;
- /* padding-left: 20px !important; */
- }
- .search-box #searchInput {
- color: #fff !important;
- font-size: 1em !important;
- padding-bottom: 0 !important;
- }
- .search-box #searchInput::-webkit-input-placeholde {
- color: #fff !important;
- }
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a {
- /* padding: 0 !important; */
- }
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a icon i {
- /* height: 42px !important;
- width: 48px !important; */
- }
- .panel .btn-showhide-poi-details {
- color: #fff !important;
- }
- site-model-details .details-header {
- background: transparent !important;
- color: #fff !important;
- }
- .element-on-screen-trigger-wrapper {
- color: #fff !important;
- }
- poi-details .vcenter.padding-horizontal .long-title {
- color: #fff;
- }
- .poi-btn-toolbar .btn-group button {
- border-right: 5px solid transparent !important;
- }
- .poi-btn-toolbar .btn-group button:hover {
- background-color: #15BEC8 !important;
- /* color: #15BEC8 !important; */
- border-right-color: transparent !important;
- }
- .poi-btn-toolbar button>.btn-description-mobile, .poi-btn-toolbar button>div .btn-description-mobile {
- color: #fff !important;
- }
- .panel .btn-showhide-poi-details:hover {
- background-color: transparent !important;
- }
- site-model-details .sme-pois .sme-poi:hover {
- background-color: #15BEC8 !important;
- }
- site-model-details .vcenter.padding-horizontal .long-title {
- color: #fff !important;
- }
- .panel {
- background: transparent !important;
- }
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar>a icon {
- background: transparent !important;
- display: none !important;
- }
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-sidebar.shadow {
- background: rgba(0, 0, 0, 0.8) !important;
- border-radius: 4px !important;
- }
- .search-box .input-group>.input-group-addon {
- background: transparent !important;
- /* background: rgba(0, 0, 0, 0.8) !important; */
- }
- .search-box #searchInput:not(.search-box-radius-poi-selected) {
- background: transparent !important;
- color: #fff;
- border: 1px solid transparent !important;
- }
- .search-box {
- background: transparent !important;
- }
- .ic_svg.clickable.border-left {
- border: none !important;
- }
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-user {
- background-color: #333333 !important;
- border: 1px solid #fff;
- box-sizing: border-box;
- }
- sidebar-menu>.vertical-menu>.vertical-menu-heading>.root-heading>span {
- display: none !important;
- }
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li {
- margin-bottom: 20px;
- }
- sidebar-menu-item>li icon>i.material-icons[icon-ligature="dashboard"] {
- background: url(../img/icon/icon_data@2x.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="dashboard"] {
- background: url(../img/icon/icon_data@2_1.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.material-icons[icon-ligature="remove_red_eye"] {
- background: url(../img/icon/icon_eye@2x.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="remove_red_eye"] {
- background: url(../img/icon/icon_eye@2x_1.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.material-icons[icon-ligature="location_on"] {
- background: url(../img/icon/icon_element@2x.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="location_on"] {
- background: url(../img/icon/icon_element@2x_1.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.material-icons[icon-ligature="mode_edit"] {
- background: url(../img/icon/icon_EditMode_1.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="mode_edit"] {
- background: url(../img/icon/icon_EditMode.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.material-icons[icon-ligature="straighten"] {
- background: url(../img/icon/icon_measure@2x.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="straighten"] {
- background: url(../img/icon/icon_measure@2x_1.svg)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.fa-thumb-tack[iv-tooltip="坐标"] {
- background: url(../img/icon/icon_location@2x.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.fa-thumb-tack[iv-tooltip="坐标"] {
- background: url(../img/icon/icon_location@2x_1.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- sidebar-menu-item>li icon>i.fa-thumb-tack[iv-tooltip="设置"] {
- background: url(../img/icon/icon_load_n.svg?5)no-repeat;
- background-size: 100% 100%;
- width: 60px;
- height: 60px;
- color: transparent;
- }
- .vertical-menu sidebar-menu-item.active>li icon>i.fa-thumb-tack[iv-tooltip="设置"] {
- background: url(../img/icon/icon_load_s.svg?5)no-repeat;
- background-size: 100% 100%;
- }
- /* 数据集 */
- button[ng-click="vm.setResourceToEdit()"] {
- display: none !important;
- }
- .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-alignment {
- /* display: none !important; */
- }
- .multiple-dataset-selector>h4 {
- height: 64px;
- margin: 0 auto 30px;
- line-height: 64px;
- border-bottom: 1px solid rgba(255, 255, 255, 0.2);
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .multiple-dataset-selector>h4 toggle-switch {
- width: 50px !important;
- height: 24px !important;
- }
- h4 .toggle-switch {
- width: 50px !important;
- height: 24px !important;
- position: relative;
- }
- .toggle-switch input:checked+.slider {
- background-color: #15BEC8 !important;
- }
- h4 .toggle-switch .slider:before {
- height: 20px !important;
- width: 20px !important;
- left: 2px;
- bottom: 2px;
- content: "";
- background-color: #fff;
- border-radius: 50%;
- position: absolute;
- }
- .toggle-switch input:checked+.slider:before {
- transform: translateX(27px) !important;
- }
- .site-model-button i.collapse-expand-chevron:before {
- content: '';
- width: 10px;
- height: 10px;
- background: url(../img/icon/icon_down@2x.png)no-repeat;
- background-size: 100% 100%;
- }
- .site-model-tree-entity .site-model-button {
- height: 30px;
- }
- .site-model-button .siteModelIcon {
- width: 16px;
- height: 16px;
- }
- .site-model-button .fa-square-o:before {
- content: '';
- width: 16px;
- height: 16px;
- background: url(../img/icon/sel@2x.png)no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- }
- sidebar-menu-items-collection .site-model-button .fa-check-square-o:before {
- content: '';
- width: 16px;
- height: 16px;
- background: url(../img/icon/sel@2x_1.png)no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- }
- .site-model-button .glyphicon-info-sign:before {
- content: '';
- width: 16px;
- height: 16px;
- background: url(../img/icon/icon_info@2x.png)no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- }
- sidebar-menu-items-collection .site-model-button .dataset-grp-toolbar {
- width: 50px;
- background: transparent;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- dataset-group-toolbar .dataset-grp-toolbar {
- background: transparent !important;
- }
- sidebar-menu-items-collection .site-model-button .btn-borderless {
- width: 16px;
- height: 16px;
- padding: 0;
- }
- sidebar-menu-items-collection .site-model-button .btn-borderless:hover {
- background: transparent;
- border: 1px solid transparent;
- }
- sidebar-menu-items-collection .site-model-button .btn-default:active {
- background: transparent;
- }
- 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 {
- background: transparent;
- border: 1px solid transparent;
- }
- .list-group-item {
- background: transparent !important;
- color: #fff !important;
- }
- .list-group-item.active {
- background: #15BEC8 !important;
- }
- .list-group-item .btn-borderless {
- width: 16px;
- height: 16px;
- padding: 0;
- }
- .btn-borderless:hover {
- background: transparent !important;
- border: 1px solid transparent !important;
- }
- .list-group-item .glyphicon-share-alt:before {
- content: '' !important;
- width: 16px;
- height: 16px;
- background: url(../img/icon/icon_share.png)no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- }
- .list-group-item .data-set-info {
- display: flex;
- align-items: self-start;
- justify-content: center;
- }
- .list-group-item .data-set-info .data-set-icon {
- padding: 6px;
- border: none;
- margin-top: 13px;
- }
- /* 查看 */
- sidebar-menu #view-menu>.panel-body .checkbox:hover {
- background: transparent !important;
- color: #15BEC8;
- }
- sidebar-menu .checkbox input[type=checkbox] {
- width: 16px;
- height: 16px;
- background: url(../img/icon/sel@2x_1.png)no-repeat !important;
- background-size: 100% 100%;
- }
- .panel-heading {
- background: transparent !important;
- }
- poi-type-group-list .panel-default>.panel-heading {
- border-color: transparent;
- }
- sidebar-menu-item>li icon {
- /* padding: 10px !important; */
- }
- /* 热点 */
- .panel-heading .btn-group button {
- background: transparent;
- border-color: transparent;
- }
- .panel-heading .btn-group button:active {
- background: transparent;
- }
- .panel-heading .btn-group button:hover {
- background: #15BEC8;
- }
- .panel-heading .btn-group button .fa::before {
- color: #fff;
- }
- poi-type-list .checkbox {
- display: flex;
- align-items: center;
- }
- .list-group-item .list-group-item-heading {
- display: flex;
- align-items: center;
- }
- poi-type-list .fa-pencil:before, .list-group-item-heading .fa-pencil:before {
- width: 16px;
- height: 16px;
- content: '';
- background: url(../img/icon/icon_edit.png)no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- }
- /* 弹窗 */
- .modal-dialog .modal-content {
- background: rgba(0, 0, 0, .8);
- color: #fff;
- }
- .cke_contents, .cke_reset {
- color: #333;
- }
- .modal-dialog .modal-content .form-group select {
- background: transparent;
- border: 1px solid rgba(255, 255, 255, 0.4);
- color: #fff;
- }
- .modal-dialog .modal-content .form-group select option {
- background: rgba(0, 0, 0, .8);
- color: #fff;
- }
- .modal-dialog .modal-content .form-group select option:hover {
- background: #15BEC8;
- }
- .modal-dialog .nav-pills-used-langs li>a {
- color: #fff;
- }
- .modal-dialog .nav-pills-used-langs li>a:hover {
- background: transparent;
- }
- .modal-dialog .modal-content .nav-pills>li.active>a {
- background: #15BEC8;
- }
- .modal-dialog .modal-body .btn-danger {
- border: 1px solid rgba(255, 255, 255, 0.4);
- background: transparent;
- }
- .modal-dialog .modal-content .glyphicon-trash:before {
- width: 16px;
- height: 16px;
- background: url('../img/icon/icon_del.png')no-repeat;
- background-size: 100% 100%;
- display: inline-block;
- content: '';
- }
- .modal-dialog .modal-body .btn-default {
- background-color: transparent;
- color: #fff;
- border-radius: 4px;
- border: 1px solid rgba(255, 255, 255, 0.4);
- }
- .modal-dialog .modal-body .btn-default:hover {
- color: #fff;
- }
- .modal-dialog .modal-footer .btn-default {
- border-radius: 4px;
- border: 1px solid #15BEC8;
- color: #15BEC8;
- background: transparent;
- }
- .modal-dialog .modal-footer .btn-primary:hover {
- color: #fff;
- background-color: #15BEC8;
- border-color: #15BEC8;
- }
- .modal-header {
- border-bottom: 1px solid rgba(255, 255, 255, .2) !important;
- }
- .modal-footer {
- border-top: 1px solid rgba(255, 255, 255, .2) !important;
- }
- /* .modal-dialog .btn-default:hover {
- background: transparent;
- color: #15BEC8;
- } */
- .modal-dialog .btn-primary {
- background-color: #15BEC8;
- border-color: #15BEC8;
- }
- .modal-dialog .btn-primary:hover {
- /* opacity: 0.9; */
- }
- .modal-dialog input.form-control {
- background: transparent;
- border: 1px solid rgba(255, 255, 255, 0.4);
- color: #fff;
- }
- .form-group select {
- background: transparent !important;
- border: 1px solid rgba(255, 255, 255, 0.4) !important;
- color: #fff !important;
- }
- .form-group select option {
- background: rgba(0, 0, 0, .8) !important;
- color: #fff !important;
- }
- .form-group select option:hover {
- background: #15BEC8 !important;
- }
- hr {
- border-top: 1px solid rgba(255, 255, 255, .2) !important;
- }
- input {
- background: transparent !important;
- border: 1px solid rgba(255, 255, 255, 0.4) !important;
- /* color: #fff !important; */
- }
- .cke_dialog_container input {
- background: transparent !important;
- border: 1px solid #bcbcbc !important;
- /* color: #fff !important; */
- }
- .ui-widget-content {
- background: transparent !important;
- border-color: #15BEC8 !important;
- }
- .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 {
- background: #15BEC8 !important;
- border-color: #15BEC8 !important;
- }
- .glyphicon-chevron-down:before {
- color: #fff;
- }
- sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
- background: transparent !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar {
- width: 8px;
- }
- sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar-track {
- background-color: #000;
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- sidebar-menu-items-collection>.panel-autoscroll::-webkit-scrollbar-thumb {
- background-color: rgba(255, 255, 255, .2);
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .clear-background .siteModelIcon {
- /* width: 24px;
- height: 24px; */
- }
- .border-top, left-panel .poi-extensions-box>*>* {
- border-top: 1px solid rgba(255, 255, 255, .2) !important;
- }
- .search-box #searchInput.padding-left-menu-icon {
- border-color: transparent !important;
- padding-left: 10px !important;
- }
- .list-group-item {
- border-color: rgba(255, 255, 255, .2) !important;
- }
- .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 {
- color: #15BEC8 !important;
- background-color: rgba(0, 0, 0, 0.5) !important;
- }
- /* .panel-autoscroll sidebar-menu-item.active>li icon>i.material-icons[icon-ligature="straighten"] {
- background: url(../img/icon/icon_measure@2x_1.png)no-repeat;
- background-size: 100% 100%;
- width: 20px;
- height: 20px;
- color: transparent;
- } */
- navbar-menu .navbar-menu-panel #login-panel {
- background-color: rgba(0, 0, 0, 0.8) !important;
- color: #fff;
- }
- #login-panel .panel-heading {
- color: #fff;
- }
- #login-panel .btn-primary {
- background: #15BEC8;
- }
- #login-panel .panel-heading {
- border-color: rgba(255, 255, 255, 0.2);
- }
- #login-panel .border-bottom {
- border: 1px solid rgba(255, 255, 255, 0.2);
- }
- .vertical-menu .vertical-menu-heading .menu-close-button {
- /* width: 16px;
- height: 16px; */
- }
- /* 测量右侧 */
- .vertical-menu .expand-wrapper {
- background: transparent !important;
- border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
- }
- .vertical-menu {
- background-color: #141414 !important;
- color: #fff !important;
- }
- .vertical-menu .ng-binding {
- color: #fff !important;
- }
- .tool-container img.selected, .tool-container img:hover {
- background-color: #15BEC8 !important;
- }
- point-cloud-viewport .view-switcher__holder .btn-default {
- background: rgba(0, 0, 0, 0.8);
- border-color: transparent;
- }
- point-cloud-viewport .view-switcher__holder .btn-default svg {
- color: #fff;
- }
- measurement-tool {
- /* width: auto !important; */
- /* flex: none !important; */
- /* margin-right: 20px; */
- }
- measurement-tool>span {
- display: flex!important;
- align-items: center!important;
- justify-content: center!important;
- }
- measurement-tool>span>img {
- margin-right: 10px!important;
- border-radius: 50% !important;
- }
- /* 路线弹窗 */
- route-inputs .route-box {
- background: transparent;
- }
- route-inputs .border-bottom {
- border-bottom: 1px solid transparent;
- }
- route-inputs .route-box .btn-reverse-route, route-inputs .route-box .btn-reverse-route:hover {
- background: transparent;
- right: 27px;
- }
- /* 分享 */
- share-menu .form-group+.no-margin-bottom {
- display: none;
- }
- /* 坐标 */
- #coord_editor {
- display: none;
- }
- sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template span {
- color: #999999 !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template select {
- background: transparent !important;
- border: 1px solid rgba(255, 255, 255, 0.4) !important;
- color: #fff !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-template select option {
- background: rgba(0, 0, 0, .8) !important;
- color: #fff !important;
- }
- sidebar-menu-items-collection>.panel-autoscroll>.sidebar-menu-templateselect option:hover {
- background: #15BEC8 !important;
- }
- /* 编辑模式 */
- /* .panel-heading{
- color: #fff !important;
- } */
- .sidebar-menu-item-mode-normal {
- display: none!important;
- }
- h4[title="编辑模式"]+sidebar-menu-items-collection .panel-autoscroll sidebar-menu-item:nth-of-type(1) {
- display: none !important;
- }
- .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-vector-map {
- display: none;
- }
- .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-geo-reg {
- display: none;
- }
- site-model-collection .dataset-grp-toolbar {
- background: transparent;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- site-model-collection .dataset-grp-toolbar .fa {
- color: #fff;
- }
- .dataset-grp-toolbar button {
- color: #fff !important;
- border-color: transparent !important;
- }
- .dataset-grp-toolbar button:hover {
- color: #fff !important;
- /* border-color: rgba(255, 255, 255, .2)!important; */
- }
- .dataset-grp-toolbar button+ul[class="dropdown-menu dropdown-center"] {
- background: #141414 !important;
- }
- .dataset-grp-toolbar button+ul[class="dropdown-menu dropdown-center"] {
- color: #fff !important;
- }
- site-model-editor .btn-primary {
- background: #15BEC8;
- }
- site-model-editor .btn-primary:hover {
- background: #15BEC8;
- }
- /* 空间模型 */
- .ng-isolate-scope sidebar-menu-item>li.sidebar-menu-item-mode-site-model {
- /* display: none; */
- }
- form[class="ng-pristine ng-valid"] .panel.panel-default {
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-pristine ng-valid"] .panel .panel-heading {
- color: #fff;
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-pristine ng-valid"] .panel .panel-body .add-building {
- background: #15BEC8;
- color: #fff;
- border-color: #15BEC8;
- }
- form[class="ng-pristine ng-valid"] .panel .panel-body .add-building:hover {
- background: #15BEC8;
- color: #fff;
- }
- button[ng-click="vm.exportSiteModel()"] {
- display: none !important;
- }
- button[ng-click="vm.addEntity(vm.SiteModelType.BUILDING)"] {
- display: none !important;
- }
- form[class="ng-pristine ng-valid"] .panel .panel-body label.btn-block {
- /* display: none; */
- }
- /* 点击锁 */
- form[class="ng-pristine ng-valid ng-submitted"] .panel.panel-default {
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-heading {
- color: #fff;
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .add-building {
- background: #15BEC8;
- color: #fff;
- border-color: #15BEC8;
- }
- form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .add-building:hover {
- background: #15BEC8;
- color: #fff;
- }
- form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body .btn-block:nth-of-type(n+2) {
- /* display: none; */
- }
- form[class="ng-pristine ng-valid ng-submitted"] .panel .panel-body label.btn-block {
- display: none;
- }
- /* 点击透视全景图勾选 */
- form[role="form"] .panel.panel-default {
- border-color: rgba(255, 255, 255, .2);
- }
- form[role="form"] .panel .panel-heading {
- color: #fff;
- border-color: rgba(255, 255, 255, .2);
- }
- form[role="form"] .panel .panel-body button.btn-block {
- background: #15BEC8;
- color: #fff;
- border-color: #15BEC8;
- }
- form[role="form"] .panel .panel-body button.btn-block:hover {
- background: #15BEC8;
- color: #fff;
- }
- form[role="form"] .panel .panel-body .add-building {
- background: #15BEC8;
- color: #fff;
- border-color: #15BEC8;
- }
- form[role="form"] .panel .panel-body .add-building:hover {
- background: #15BEC8;
- color: #fff;
- }
- form[role="form"] .panel .panel-body label.btn-block {
- display: none;
- }
- form[role="form"] .form-group button[ng-click="vm.save()"] {
- background-color: #15BEC8;
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel.panel-default {
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-heading {
- color: #fff;
- border-color: rgba(255, 255, 255, .2);
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .add-building {
- background: #15BEC8;
- color: #fff;
- border-color: #15BEC8;
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .add-building:hover {
- background: #15BEC8;
- color: #fff;
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .btn-block:nth-of-type(n+2) {
- /* display: none; */
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body .btn-block[ng-click="vm.exportSiteModel()"] {
- display: none;
- }
- form[class="ng-valid ng-dirty ng-valid-parse"] .panel .panel-body label.btn-block {
- display: none !important;
- }
- /* 空间模型结束 */
- .btn-group>.btn:first-child {
- color: #fff;
- }
- vector-map-toolbar[class="ng-isolate-scope"] .btn-toolbar .btn-default {
- color: #fff;
- }
- vector-map-toolbar[class="ng-isolate-scope"] .btn-toolbar .btn-default:hover {
- background: #15BEC8;
- }
- .form-control {
- background: transparent !important;
- color: #fff !important;
- }
- download-button .collapse-style {
- background-color: transparent !important;
- /* bottom: 80% !important; */
- }
- .input-group-addon {
- background: transparent !important;
- }
- download-button .dropdown-toggle {
- background: transparent !important;
- }
- .vertical-menu .vertical-menu-content ul {
- background: transparent !important;
- }
- .dropdown-menu {
- background: rgba(0, 0, 0, .8) !important;
- }
- .open>.dropdown-toggle.btn-default, .open>.dropdown-toggle.btn-default:active {
- background: transparent !important;
- color: #fff !important;
- }
- .dropdown-menu>li.active, .dropdown-menu>li:focus, .dropdown-menu>li:hover {
- background: #15BEC8 !important;
- }
- .site-model-collection .site-model-button.selected {
- background: #143537 !important;
- }
- download-button .input-group .btn-primary {
- background-color: #15BEC8;
- border-color: #15BEC8;
- }
- download-point-cloud dataset-tree {
- /* display: none !important; */
- }
- #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group input[placeholder="pointcloud"] {
- display: none !important;
- }
- #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group .input-group-addon {
- display: none !important;
- }
- #vertical-toolbox-menu .vertical-menu-content download-point-cloud .collapse-style .input-group .input-group-btn button {
- /* width: 100%!important; */
- float: right;
- border-radius: 4px;
- }
- #vertical-toolbox-menu .vertical-menu-content download-point-cloud reference-dataset-selection {
- display: none;
- }
- .route-box .btn-close:active, .route-box .btn-close:hover {
- background: transparent !important;
- }
- attributes-editor .form-group .btn-primary:hover {
- background: #15BEC8;
- border-color: #15BEC8;
- }
- .panel-body .panel-group .panel:nth-of-type(-n+3) {
- display: none;
- }
- .panel-body .panel-group .panel:nth-of-type(5) {
- display: none;
- }
- #login-panel #collapse-user-settings {
- background: transparent !important;
- }
- #login-panel #collapse-user-settings select option {
- color: #fff !important;
- background: rgba(0, 0, 0, .8) !important;
- }
- #login-panel #collapse-user-settings language-switcher {
- display: none;
- }
- .panel-heading[data-parent="#accordion"] {
- display: none;
- }
- #collapse-user-settings {
- display: block !important;
- }
- /* 导入/导出热点 */
- poi-export-import .collapse-style {
- display: none !important;
- }
- /* 第三方许可 */
- #third-party-licenses-button {
- display: none;
- }
- #floorChanger {
- background: rgba(0, 0, 0, 0.8) !important;
- }
- floor-changer .btn-group-vertical button[ng-repeat="floorName in vm.floorNames | reverse"] {
- background: transparent !important;
- border-radius: 4px !important;
- color: #999 !important;
- }
- floor-changer .btn-group-vertical button[ng-repeat="floorName in vm.floorNames | reverse"].active {
- color: #15BEC8 !important;
- }
- /* 关于 */
- #about-modal .modal-body>div:nth-of-type(4) {
- display: none;
- }
- #about-modal .modal-body>div:nth-of-type(5) {
- display: none;
- }
- #about-modal .modal-body>div:nth-of-type(6)>span, #about-modal .modal-body>div:nth-of-type(6) ul {
- display: none;
- }
- #about-modal .modal-body>div:nth-of-type(6) {
- height: 40px;
- }
- #about-modal .modal-body>div:nth-of-type(7) {
- display: none;
- }
- .panel-body .text-warning {
- color: #fff !important;
- }
- /* 数据集校准 */
- button[title="导出实体"] {
- display: none !important;
- }
- /* 导入到实体 */
- button[title="导出实体"]+label.btn-file {
- display: none !important;
- }
- input[readonly="readonly"] {
- color: #999 !important;
- }
- .modal-dialog-wide attributes-editor[key-suggestions="['external_entity_id']"] {
- display: none !important;
- }
- #viewConfiguration hr {
- display: none !important;
- }
- #viewConfiguration .checkbox:nth-of-type(-n+4) {
- display: none !important;
- }
- automatic-alignment {
- display: none !important;
- }
- dataset-tree {
- /* display: none !important; */
- }
- dataset-tree .multiple-dataset-selector h4 {
- display: none !important;
- }
- dataset-menu dataset-tree .multiple-dataset-selector h4 {
- display: none !important;
- padding: 0 0 0 44px;
- }
- dataset-menu dataset-tree .multiple-dataset-selector h4 .ng-binding {
- color: #fff!important;
- }
- generate-and-save-bundle-xml {
- display: none !important;
- }
- dataset-alignment-panel form[role="form"] .form-group.text-right.mt-10 {
- /* display: none !important; */
- }
- /* 变换 */
- #transform-panel .panel-body .btn-default {
- background: transparent;
- color: #fff;
- border-color: rgba(255, 255, 255, .2) !important;
- }
- .panel-heading h3 {
- color: #fff !important;
- }
- #transform-panel .panel-body button:hover {
- background: #143537;
- }
- #transform-panel .panel-body button:focus {
- background: #143537;
- }
- /* 测量 */
- measurement-list .material-icons {
- color: #fff !important;
- }
- measurement-list .fa-square-o:before {
- color: #fff !important;
- }
- measurement-list .hovered {
- background-color: #143537 !important;
- }
- measurement-list hr {
- border: .5px solid rgba(255, 255, 255, .2) !important;
- }
- button[title="放大镜"]:hover {
- background: #15BEC8 !important;
- }
- button[title="放大镜"].active svg {
- color: #15BEC8 !important;
- }
- button[title="放大镜"].active:hover svg {
- color: #fff !important;
- }
- measurement-list-toolbar .fa-check-square-o {
- color: #fff;
- }
- .measurement-details-row .fa-check-square-o {
- color: #fff;
- }
- .glyphicon-resize-full::before {
- color: #fff !important;
- }
- .nav-tabs[role="tablist"] {
- border-bottom: none !important;
- }
- .nav-tabs>li.active>a, .nav-tabs>li.active>a:focus, .nav-tabs>li.active>a:hover {
- color: #fff !important;
- background-color: #15BEC8 !important;
- border-color: transparent !important;
- }
- .nav-tabs>li>a {
- color: #fff !important;
- }
- .nav-tabs>li>a:focus, .nav-tabs>li>a:hover {
- background-color: #15BEC8 !important;
- border-color: transparent !important;
- }
- .fa-pencil:before {
- color: #fff !important;
- }
- /* left-panel .poi-extensions-box {
- overflow-x: hidden;
- } */
- .dropdown-menu {
- border-top: 1px solid transparent !important;
- }
- .dropdown-menu .divider {
- background-color: rgba(255, 255, 255, .4) !important;
- }
- .open>.dropdown-toggle.btn-default {
- border-color: rgba(255, 255, 255, .4) !important;
- }
- .dropdown-toggle {
- border-color: rgba(255, 255, 255, .4) !important;
- }
- .btn-file:hover {
- background-color: #15BEC8 !important;
- }
- /* 选择参考数据集 */
- #referenceDatasetSelectionSetting {
- border: 1px solid rgba(255, 255, 255, .2);
- }
- /* 搜索 */
- #results-list.show {
- left: 60px!important;
- }
- #results-list .results-heading {
- background-color: transparent !important;
- }
- .dropdown-menu-search-results>li {}
- .dropdown-menu-search-results>li {
- color: #fff !important;
- background: transparent !important;
- }
- .dropdown-menu-search-results.dropdown-menu>li.active {
- background: transparent !important;
- }
- .dropdown-menu-search-results.dropdown-menu>li:hover {
- background: #15BEC8!important;
- }
- #results-list .list-group .list-group-item:hover {
- background: #15BEC8!important;
- }
- results-element .checkbox, .radio {
- color: #999999 !important;
- }
- .dropdown-menu-search-results.dropdown-menu.dropdown-menu-item-separators>li:not(.divider):not(:last-child) {
- border-bottom: 1px solid rgba(255, 255, 255, .2);
- }
- /* PDF */
- .cdk-overlay-container mat-dialog-container .mat-dialog-title {
- color: #fff;
- }
- .cdk-overlay-container mat-dialog-container .body-container .link-ellipses span.ng-star-inserted {
- color: #fff;
- }
- .cdk-overlay-container mat-dialog-container .body-container i[class="material-icons icn-small clickable"] {
- color: #fff;
- }
- .cdk-overlay-container mat-dialog-container {
- background: rgba(0, 0, 0, .8);
- }
- .cdk-overlay-container mat-dialog-container .measurement-container {
- background: #141414 !important;
- }
- .cdk-overlay-container mat-dialog-container .measurement-container .flex-row {
- color: #fff;
- }
- .cdk-overlay-container mat-dialog-container .measurement-container .flex-row .subtitle {
- color: #fff;
- margin-bottom: 22px;
- }
- .cdk-overlay-container mat-dialog-container .measurement-container .location {
- color: #fff;
- }
- .cdk-overlay-container mat-dialog-container .measurement-container .location img {
- width: 16px;
- height: 16px;
- margin-right: 10px;
- }
- .cdk-overlay-container .mat-flat-button {
- border-radius: 4px;
- border: 1px solid #15BEC8;
- background: transparent;
- color: #15BEC8;
- }
- .cdk-overlay-container mat-dialog-actions .mat-flat-button.mat-primary {
- background: #15BEC8;
- }
- .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar {
- width: 8px;
- }
- .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar-track {
- background-color: #000;
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .cdk-overlay-container mat-dialog-container .mat-dialog-content::-webkit-scrollbar-thumb {
- background-color: rgba(255, 255, 255, .2);
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- /* 导出XML */
- #xmlExport button.form-control {
- border: none;
- background: #15BEC8 !important;
- }
- /* 右键热点 */
- .context-menu-list {
- background: rgba(0, 0, 0, 0.5) !important;
- border: none !important;
- }
- .context-menu-item {
- background: transparent !important;
- color: #fff !important;
- }
- .context-menu-item.context-menu-icon-paste {
- display: none !important;
- }
- .context-menu-item.context-menu-icon-cut {
- display: none !important;
- }
- .context-menu-item.fa-download {
- display: none !important;
- }
- .context-menu-item.context-menu-icon-fa.fa-list-ul {
- display: none !important;
- }
- .context-menu-item:hover {
- background: #15BEC8 !important;
- }
- .context-menu-item.context-menu-icon:before {
- color: #fff !important;
- }
- /* 多语言 */
- translation-editor[selected-language="selectedLanguage"] .form-group:first-of-type {
- display: none;
- }
- /* 控制点 */
- sidebar-menu-item li h4[title="设置"]+sidebar-menu-items-collection.active {
- /* position: fixed; */
- /* width: calc(100% - 62px); */
- /* width: 440px;
- height: calc(100% - 124px);
- right: 0;
- left: 60px !important;
- top: 124px !important; */
- }
- sidebar-menu-item li h4[title="设置"]+sidebar-menu-items-collection.active .panel-autoscroll {
- overflow: hidden;
- }
- /* 导航栏 */
- body {
- background-color: #141414 !important;
- }
- sidebar-preview-menu>.vertical-menu>.vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item:nth-of-type(2) {
- /* display: none; */
- /* 隐藏数据集 */
- }
- .vertical-menu .vertical-menu-heading {
- background: #141414 !important;
- }
- .vertical-menu .vertical-menu-heading h3 {
- /* background-color: rgba(0, 0, 0, 0.5) !important; */
- margin: 0 0 0 0 !important;
- }
- sidebar-menu-items-collection.active {
- left: 0 !important;
- z-index: 100;
- }
- sidebar-menu>.vertical-menu>.vertical-menu-heading .back-button {
- display: none !important;
- }
- .vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item>li>h4 {
- opacity: 0 !important;
- }
- .custom-tooltip {
- /* margin: 0 auto; */
- }
- sidebar-menu-item>li {
- padding-left: 0 !important;
- }
- sidebar-menu .vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item>li>.custom-tooltip {
- opacity: 0;
- }
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection>.panel-autoscroll {
- background-color: transparent!important;
- }
- sidebar-preview-menu>.vertical-menu sidebar-menu-items-collection sidebar-menu-item>li {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-left: 0px !important;
- }
- sidebar-menu>.vertical-menu {
- left: 60px!important;
- max-height: 60%;
- top: 62px !important;
- }
- sidebar-preview-menu>.vertical-menu {
- height: 100% !important;
- }
- sidebar-menu>.vertical-menu.hide {
- left: -461px!important;
- }
- sidebar-menu .copyright-area>.logo img {
- opacity: 0 !important;
- }
- /* .desktop>sidebar-preview-menu>.vertical-menu>.vertical-menu-content>sidebar-menu-items-collection>.panel-autoscroll {
- height: calc(100%) !important;
- } */
- navbar-menu .navbar-default {
- height: 62px!important;
- background-color: #141414 !important;
- margin: 0 !important;
- padding: 0!important;
- border-radius: 0;
- }
- #insetPanel .swap-views-button {
- position: fixed;
- top: 6px;
- right: 122px;
- z-index: 999;
- width: 0;
- }
- #insetPanel {
- width: 0 !important;
- height: 0 !important;
- min-width: 0 !important;
- min-height: 0 !important;
- z-index: 1000 !important;
- }
- #insetPanel canvas {
- display: none !important;
- }
- /* 登录头像 */
- navbar-menu .navbar-default .navbar-custom>li.navbar-menu-item-user {
- margin: 10px !important;
- /* display: none; */
- }
- .swap-views-button .glyphicon-resize-full:before {
- content: "" !important;
- width: 24px;
- height: 24px;
- display: block;
- background: url(../img/icon/icon_location_n.png)no-repeat;
- background-size: 100% 100%;
- }
- .swap-views-button .glyphicon-resize-full.active:before {
- content: "" !important;
- width: 24px;
- height: 24px;
- display: block;
- /* background: url(../img/icon/icon_location_s.png)no-repeat; */
- background: url(../img/icon/icon_location_n.png)no-repeat;
- background-size: 100% 100%;
- }
- .swap-views-button .glyphicon-resize-full:hover:before {
- content: "" !important;
- width: 24px;
- height: 24px;
- display: block;
- background: url(../img/icon/icon_location_s.png)no-repeat;
- background-size: 100% 100%;
- }
- toolbox-menu>.vertical-menu {
- /* height: calc(100% - 62px) !important;
- top: 62px !important; */
- }
- point-cloud-viewport .view-switcher__holder {
- top: 70px !important;
- }
- .uncollapse-btn {
- justify-content: flex-end;
- }
- .uncollapse-btn .uncollapse-button-text {
- display: none !important;
- }
- .uncollapse-btn .button-padding-left {
- width: 40px;
- height: 40px;
- background: rgba(0, 0, 0, 0.8);
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .uncollapse-btn .button-padding-left:hover {
- background: #15BEC8;
- }
- .uncollapse-btn .button-padding-leftimg[alt="arrow_icon"] {
- width: 24px;
- height: 24px;
- }
- .vertical-viewport-separator .btn-resizer {
- display: none !important;
- }
- .vertical-viewport-separator.resizeable {
- background: #141414 !important;
- }
- measurement-details .measurement-details .measurement-details-row img.measurement-icon {
- display: none;
- }
- .measurement-note-placeholder {
- font-style: normal !important;
- }
- measurements {
- padding: 0 !important;
- }
- measurement-tool-selection[ng-reflect-is-collapsed-view="false"] {
- background: #000;
- padding: 25px 20px 0;
- margin-bottom: 0 !important;
- }
- measurement-tool-selection[ng-reflect-is-collapsed-view="true"] {
- background: #000;
- margin-bottom: 0 !important;
- }
- measurement-list {
- margin: 0 !important;
- }
- floor-changer .btn-group-vertical {
- /* display: none !important; */
- }
- .measurement-list-items {
- background: #000;
- }
- button[title="隐藏所选"] .material-icons {
- background: url(../img/icon/icon_hide.png?5)no-repeat;
- background-size: 100% 100%;
- width: 20px;
- height: 20px;
- color: transparent !important;
- }
- button[title="分享所选"] .material-icons {
- background: url(../img/icon/share.png?5)no-repeat;
- background-size: 100% 100%;
- width: 20px;
- height: 20px;
- color: transparent !important;
- }
- button[title="删除所选"] .material-icons {
- background: url(../img/icon/icon_del.png?5)no-repeat;
- background-size: 100% 100%;
- width: 20px;
- height: 20px;
- color: transparent !important;
- }
- button[title="保存所选"] .material-icons {
- background: url(../img/icon/icon_save.png?5)no-repeat;
- background-size: 100% 100%;
- width: 20px;
- height: 20px;
- color: transparent !important;
- }
- #view-menu>.panel-body>.checkbox:nth-of-type(3) {
- display: none!important;
- }
- #collapsequality div[ui-slider] {
- display: none !important;
- }
- .measurement-list-items::-webkit-scrollbar {
- width: 8px;
- }
- .measurement-list-items::-webkit-scrollbar-track {
- background-color: #000;
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .measurement-list-items::-webkit-scrollbar-thumb {
- background-color: rgba(255, 255, 255, .2);
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .route-box .route-last-position .padding-horizontal {
- color: #999 !important;
- }
- .route-box .route-last-position:hover {
- background: transparent !important;
- }
- .route-box .form {
- margin-left: -40px !important;
- margin-top: 53px;
- }
- .route-box .btn-reverse-route {
- right: 5px !important;
- }
- poi-translation-editor[selected-language="vm.selectedLanguage"] {
- display: none !important;
- }
- optgroup {
- background: rgba(0, 0, 0, .8) !important;
- color: #fff !important;
- }
- button[title="切换到2D视图"]:hover {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- button[title="切换到2D视图"]:focus {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- button[title="切换到2D视图"].active {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- button[title="切换到3D视图"] {
- color: #fff;
- }
- button[title="切换到3D视图"]:hover {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- button[title="切换到3D视图"]:focus {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- button[title="切换到3D视图"].active {
- background: rgba(0, 0, 0, .8) !important;
- color: #15BEC8 !important;
- border-color: rgba(0, 0, 0, .8) !important;
- }
- #progress-wrapper {
- display: none !important;
- }
- #editor_coord_froms {
- text-align: left !important;
- margin-left: 60px !important;
- }
- #editPoi .modal-body #poi_editor_advanced .poiModalForm .form-group:nth-last-child(3) {
- display: none !important;
- }
- #editPoi .modal-body .poiModalForm permission-editor[class="ng-isolate-scope"] {
- display: none !important;
- }
- #upload_panel .fa-upload {
- display: none !important;
- }
- toolbox-menu>.vertical-menu.sticky-headers-enabled .vertical-menu-content>div>measurements-lazy {
- opacity: .8;
- }
- route-instructions .panel .panel-body .overview .route-distance {
- color: #fff !important;
- }
- route-instructions .panel .panel-body>:first-child {
- border: none !important;
- }
- route-instructions .panel .panel-body .instructions-list {
- border-color: rgba(255, 255, 255, .2) !important;
- }
- sidebar-menu-item>li>.custom-tooltip>icon[icon-ligature="file_download"] {
- display: none!important;
- }
- sidebar-menu-item>li>.custom-tooltip>icon[icon-ligature="domain"] {
- display: none!important;
- }
- sidebar-menu-item>li>.custom-tooltip>icon[icon-ligature="view_quilt"] {
- display: none!important;
- }
- h4[title="裁剪和下载点云"] {
- margin: 1px 10px 0 56px !important;
- }
- h4[title="空间模型"] {
- margin: 1px 10px 0 56px !important;
- }
- h4[title="数据集校准"] {
- margin: 1px 10px 0 56px !important;
- }
- #view-menu {
- padding: 0 0 0 20px !important;
- }
- sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
- border-radius: 30%;
- }
- #view-menu .form-control {
- border-radius: 20px !important;
- }
- #view-menu .ui-slider-handle {
- border-radius: 50% !important;
- }
- sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>button {
- border-radius: 30% !important;
- }
- .modal-dialog .modal-footer .btn-default.move-button {
- display: none!important;
- }
- /* option[value="+proj=tmerc +lat_0=0 +lon_0=123 +k=1 +x_0=500000 +y_0=0 +ellps=GRS80 +units=m +no_defs;"] {
- display: none !important;
- } */
- alert-dialog .mat-stroked-button {
- border-color: rgba(255, 255, 255, .2) !important;
- color: #fff;
- }
- permission-editor>.form-group[ng-show="vm.UserService.isUserLoggedIn() && model.security.canWrite !== false"] {
- display: none !important;
- }
- .form-horizontal+.text-danger {
- display: none !important;
- }
- i[title="复制当前放大程度"] {
- display: none !important;
- }
- #PoiTypeVisibilityZoomMin {
- width: 100% !important;
- }
- #PoiTypeVisibilityZoomMax {
- width: 100% !important;
- }
- #cke_editor1 {
- height: auto !important;
- }
- #no_type_warning {
- /* display: none !important; */
- }
- translate-panel .translate-icon {
- color: #15bec8 !important;
- }
- rotate-panel .rotate-icon {
- color: #15BEC8 !important;
- }
- .autoscroll::-webkit-scrollbar {
- width: 8px;
- }
- .autoscroll::-webkit-scrollbar-track {
- background-color: #000;
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .autoscroll::-webkit-scrollbar-thumb {
- background-color: rgba(255, 255, 255, .2);
- -webkit-border-radius: 1em;
- -moz-border-radius: 1em;
- border-radius: 1em;
- }
- .arrow.mirrored {
- transform: rotate(0deg) !important;
- height: 40px;
- width: 40px;
- background: #141414;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .arrow.mirrored:hover {
- background: #15BEC8 !important;
- }
- point-cloud-viewport .viewport-label {
- z-index: 10;
- }
- .dataset-mgmt-name {
- display: none;
- }
- dataset .dataset-title {
- margin-top: 10px;
- }
- #swap-scenes-mobile {
- display: none;
- }
- .result-info .result-search-description {
- display: none;
- }
- .ng-star-inserted {
- color: #fff;
- }
- point-cloud-viewport .viewport-label-top-left {
- left: 10px !important;
- }
- .badge {
- background-color: #15BEC8 !important;
- }
- measurement-list .collapsed-list .material-icons:hover {
- background-color: #15BEC8 !important;
- }
- sidebar-menu #view-menu #pointcloud-menu #pointcloud-options #pointcloud-pane>div>select {
- width: calc(100% - 50px) !important;
- }
- /* */
- li[ng-click="vm.switchUnit(unit, vm.UoMSystem.IMPERIAL)"]{
- display: none;
- }
- /* 移动端公共样式 */
- @media screen and (max-width: 500px) {
- #sliderBtn{
- width: 40px;
- height: 40px;
- position: fixed;
- top: 10px;
- left: 10px;
- z-index: 10;
- transform: rotate(0deg);
- /* animation: all 1s; */
- transition: all 0.3s;
- border-radius: 50%
- }
- #sliderBtn.isHide{
- transform: rotate(180deg);
- /* transform: rotate(0deg); */
- background:rgba(0, 0, 0, 0.5);
-
- }
- #sliderBtn img{
- width: 20px;
- height: 20px;
- margin: 10px auto;
- display: block;
- }
- }
- .glyphicon{
- top: 0px !important;
- }
- .indoorViewer sidebar-menu>.vertical-menu >.vertical-menu-heading >.root-heading{
- display: none !important;
- }
- .indoorViewer sidebar-menu>.vertical-menu >.vertical-menu-content >sidebar-menu-items-collection>.panel-autoscroll>ul>sidebar-menu-item>li >icon{
- display: none !important;
- }
- /* 移动端mobile */
- .indoorViewer.mobile .vertical-menu-content>sidebar-menu-items-collection >.panel-autoscroll{
- padding-top: 60px;
- }
- .indoorViewer.mobile .non-mobile{
- display: block !important;
- }
- .indoorViewer.mobile search-input[ng-if="vm.SearchService.isSearchBoxVisible()"]{
- /* display: none; */
- }
- .indoorViewer.mobile #left-panel-pois{
- /* display: none; */
- border: none;
- }
- .indoorViewer.mobile left-panel .threeD-overlay{
- /* left: 50%;
- transform: translateX(-50%); */
- margin: 20px auto !important;
- position: relative;
- }
- .indoorViewer.mobile .ic_svg.clickable.border-left[alt="请输入热点名称进行搜索"]{
- display: none;
- }
- .indoorViewer.mobile .search-box #searchInput:not(.search-box-radius-poi-selected){
- display: none;
- }
- .indoorViewer.mobile .search-box #searchInput.padding-left-menu-icon{
- display: none;
- }
- .indoorViewer.mobile navbar-menu{
- display: none;
- }
- .indoorViewer.mobile #insetPanel{
- visibility: visible !important;
- }
- .indoorViewer.mobile sidebar-preview-menu>.vertical-menu{
- top: 0;
- left: 0px;
- }
- .indoorViewer.mobile sidebar-preview-menu>.vertical-menu.isHide{
- left: -60px;
- }
- .indoorViewer.mobile sidebar-menu-items-collection:not(.parent):not(.child)>.panel-autoscroll>ul>sidebar-menu-item>li.sidebar-menu-item-user{
- display: none;
- }
- .indoorViewer.mobile sidebar-menu-items-collection:not(.parent):not(.child)>.panel-autoscroll>ul>sidebar-menu-item>li.sidebar-menu-item-poi-types{
- display: none;
- }
- .indoorViewer.mobile #insetPanel .swap-views-button{
- top: 6px;
- right: 34px;
- z-index: 999;
- width: 0;
- }
- .indoorViewer.mobile #insetPanel .swap-views-button .glyphicon-resize-full:before{
- width: 16px;
- height: 16px;
- }
- .indoorViewer.mobile .swap-views-button span{
- /* transform: scale(.8); */
- background: rgba(0, 0, 0, 0.5);
- padding: 7px;
- border-radius: 50%;
- }
- .indoorViewer.mobile sidebar-menu>.vertical-menu{
- top: 0 !important;
- z-index: 99999;
- width: 80%;
- /* display: none !important; */
- }
- .indoorViewer.mobile .vertical-menu .vertical-menu-heading .menu-close-button{
- z-index: 9999999;
- /* background: red; */
- /* left: 70%; */
- }
- /* .indoorViewer.mobile sidebar-menu-item>li icon>i.material-icons{
- width: 40px;
- height: 40px;
- } */
- .indoorViewer.mobile .vertical-menu .vertical-menu-heading{
- min-width: 100px !important;
- }
- .indoorViewer.mobile sidebar-menu-items-collection .site-model-button .btn-borderless{
- width: auto;
- height: auto;
- }
- .indoorViewer.mobile site-model-collection .dataset-grp-toolbar .fa{
- width: auto;
- height: auto;
- }
- .indoorViewer.mobile .vertical-viewport-separator .btn-resizer {
- display: block !important;
- }
- .indoorViewer.mobile #results-list.route-mode{
- padding-top: 150px;
- padding-bottom: 20px;
- }
- .indoorViewer.mobile #results-list .list-group{
- padding-bottom: 20px;
- }
- .indoorViewer.mobile #results-list.show{
- left: 0px!important;
- }
- .indoorViewer.mobile .route-box .dropdown-menu{
- left: 50% !important;
- transform: translateX(-47%);
- }
- .indoorViewer.mobile .route-box .route-input-start+.dropdown-menu{
- top: 209%!important;
- }
- .indoorViewer.mobile .poi-btn-toolbar[role="toolbar"] .btn-group{
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .indoorViewer.mobile .poi-btn-toolbar[role="toolbar"] button[ng-click="vm.routeToEntity(vm.model)"],button[ng-click="vm.startRouteMenu()"]{
- display: none;
- }
- .indoorViewer.mobile .tool-container p.description{
- font-size: 12px;
- overflow-wrap: break-word;
- margin: 0 10px 0 0;
- white-space: nowrap;
- }
- /* mobile-small */
- .indoorViewer.mobile-small .vertical-menu-content>sidebar-menu-items-collection >.panel-autoscroll{
- padding-top: 60px;
- }
- .indoorViewer.mobile-small .non-mobile{
- display: block !important;
- }
- .indoorViewer.mobile-small search-input[ng-if="vm.SearchService.isSearchBoxVisible()"]{
- /* display: none; */
- }
- .indoorViewer.mobile-small #left-panel-pois{
- /* display: none; */
- border: none;
- }
- .indoorViewer.mobile-small left-panel .threeD-overlay{
- /* left: 50%;
- transform: translateX(-50%); */
- margin: 20px auto !important;
- position: relative;
- }
- .indoorViewer.mobile-small .ic_svg.clickable.border-left[alt="请输入热点名称进行搜索"]{
- display: none;
- }
- .indoorViewer.mobile-small .search-box #searchInput:not(.search-box-radius-poi-selected){
- display: none;
- }
- .indoorViewer.mobile-small .search-box #searchInput.padding-left-menu-icon{
- display: none;
- }
- .indoorViewer.mobile-small navbar-menu{
- display: none;
- }
- .indoorViewer.mobile-small #insetPanel{
- visibility: visible !important;
- }
- .indoorViewer.mobile-small sidebar-preview-menu>.vertical-menu{
- top: 0;
- left: 0px;
- }
- .indoorViewer.mobile-small sidebar-preview-menu>.vertical-menu.isHide{
- left: -60px;
- }
- .indoorViewer.mobile-small sidebar-menu-items-collection:not(.parent):not(.child)>.panel-autoscroll>ul>sidebar-menu-item>li.sidebar-menu-item-user{
- display: none;
- }
- .indoorViewer.mobile-small sidebar-menu-items-collection:not(.parent):not(.child)>.panel-autoscroll>ul>sidebar-menu-item>li.sidebar-menu-item-poi-types{
- display: none;
- }
- .indoorViewer.mobile-small #insetPanel .swap-views-button{
- top: 6px;
- right: 34px;
- z-index: 999;
- width: 0;
- }
- .indoorViewer.mobile-small #insetPanel .swap-views-button .glyphicon-resize-full:before{
- width: 16px;
- height: 16px;
- }
- .indoorViewer.mobile-small .swap-views-button span{
- /* transform: scale(.8); */
- background: rgba(0, 0, 0, 0.5);
- padding: 7px;
- border-radius: 50%;
- }
- .indoorViewer.mobile-small sidebar-menu>.vertical-menu{
- top: 0 !important;
- z-index: 99999;
- width: 80%;
- }
- .indoorViewer.mobile-small .vertical-menu .vertical-menu-heading .menu-close-button{
- z-index: 9999999;
- /* background: red; */
- /* left: 70%; */
- }
- /* .indoorViewer.mobile sidebar-menu-item>li icon>i.material-icons{
- width: 40px;
- height: 40px;
- } */
- .indoorViewer.mobile-small .vertical-menu .vertical-menu-heading{
- min-width: 100px !important;
- }
- .indoorViewer.mobile-small sidebar-menu-items-collection .site-model-button .btn-borderless{
- width: auto;
- height: auto;
- }
- .indoorViewer.mobile-small site-model-collection .dataset-grp-toolbar .fa{
- width: auto;
- height: auto;
- }
- .indoorViewer.mobile-small .vertical-viewport-separator .btn-resizer {
- display: block !important;
- }
- .indoorViewer.mobile-small #results-list.route-mode{
- padding-top: 150px;
- padding-bottom: 20px;
- }
- .indoorViewer.mobile-small #results-list .list-group{
- padding-bottom: 20px;
- }
- .indoorViewer.mobile-small #results-list.show{
- left: 0px!important;
- }
- .indoorViewer.mobile-small .route-box .dropdown-menu{
- left: 50% !important;
- transform: translateX(-47%);
- }
- .indoorViewer.mobile-small .route-box .route-input-start+.dropdown-menu{
- top: 209%!important;
- }
- .indoorViewer.mobile-small .poi-btn-toolbar[role="toolbar"] .btn-group{
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .indoorViewer.mobile-small .poi-btn-toolbar[role="toolbar"] button[ng-click="vm.routeToEntity(vm.model)"],button[ng-click="vm.startRouteMenu()"]{
- display: none;
- }
- .indoorViewer.mobile-small .tool-container p.description{
- font-size: 12px;
- overflow-wrap: break-word;
- margin: 0 10px 0 0;
- white-space: nowrap;
- }
|