toolBar.scss 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .sm-tool-btn {
  2. width: 40px;
  3. height: 40px;
  4. box-sizing: border-box;
  5. background: transparent;
  6. z-index: 100;
  7. display: flex;
  8. // background-color: rgba(0, 0, 0, .25);
  9. justify-content: center;
  10. align-items: center;
  11. @media (max-width: 750px) {
  12. width: 35px;
  13. height: 35px;
  14. }
  15. @media (max-height: 480px) {
  16. width: 35px;
  17. height: 35px;
  18. }
  19. @media (max-height: 300px) {
  20. width: 30px;
  21. height: 30px;
  22. }
  23. .iconfont {
  24. font-size: 18px;
  25. }
  26. }
  27. .resourceTree {
  28. width: 80px;
  29. height: 80px;
  30. display: -ms-flexbox;
  31. display: flex;
  32. -ms-flex-wrap: nowrap;
  33. flex-wrap: nowrap;
  34. -webkit-box-pack: start;
  35. -ms-flex-pack: start;
  36. justify-content: flex-start;
  37. position: absolute;
  38. top: 92px;
  39. left: 20px;
  40. margin: 5px 0 0 5px;
  41. background: url(/static/images/bigscreen/icon-tree-btn.png) no-repeat;
  42. background-size: cover;
  43. background-position: center;
  44. cursor: pointer;
  45. }
  46. .toolBar {
  47. width: auto;
  48. display: -webkit-box;
  49. display: -ms-flexbox;
  50. display: flex;
  51. -ms-flex-wrap: nowrap;
  52. flex-wrap: nowrap;
  53. -webkit-box-pack: start;
  54. -ms-flex-pack: start;
  55. justify-content: flex-start;
  56. position: absolute;
  57. top: 13px;
  58. right: 218px;
  59. margin: 5px 0 0 5px;
  60. // background: url(/static/images/bigscreen/filter-bg.png) no-repeat;
  61. background-size: cover;
  62. background-position: center;
  63. }
  64. ul {
  65. display: flex;
  66. flex-wrap: nowrap;
  67. justify-content: space-evenly;
  68. }
  69. .el-cascader--mini {
  70. width: 90px;
  71. top: 7px;
  72. background: transparent;
  73. }
  74. /deep/ .el-input__inner {
  75. background: transparent !important;
  76. color: white !important;
  77. }