12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- .sm-tool-btn {
- width: 40px;
- height: 40px;
- box-sizing: border-box;
- background: transparent;
- z-index: 100;
- display: flex;
- // background-color: rgba(0, 0, 0, .25);
- justify-content: center;
- align-items: center;
- @media (max-width: 750px) {
- width: 35px;
- height: 35px;
- }
- @media (max-height: 480px) {
- width: 35px;
- height: 35px;
- }
- @media (max-height: 300px) {
- width: 30px;
- height: 30px;
- }
- .iconfont {
- font-size: 18px;
- }
- }
- .resourceTree {
- width: 80px;
- height: 80px;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- position: absolute;
- top: 92px;
- left: 20px;
- margin: 5px 0 0 5px;
- background: url(/static/images/bigscreen/icon-tree-btn.png) no-repeat;
- background-size: cover;
- background-position: center;
- cursor: pointer;
- }
- .toolBar {
- width: auto;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -ms-flex-wrap: nowrap;
- flex-wrap: nowrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- position: absolute;
- top: 13px;
- right: 218px;
- margin: 5px 0 0 5px;
- // background: url(/static/images/bigscreen/filter-bg.png) no-repeat;
- background-size: cover;
- background-position: center;
- }
- ul {
- display: flex;
- flex-wrap: nowrap;
- justify-content: space-evenly;
- }
- .el-cascader--mini {
- width: 90px;
- top: 7px;
- background: transparent;
- }
- /deep/ .el-input__inner {
- background: transparent !important;
- color: white !important;
- }
|