global.less 6.78 KB
Newer Older
邓晓峰's avatar
邓晓峰 committed
1 2
@root-entry-name: 'default';
@import (reference) '~antd/es/style/themes/index.less';
dengxiaofeng's avatar
dengxiaofeng committed
3 4 5

html,
body,
6
#root {
dengxiaofeng's avatar
dengxiaofeng committed
7
  height: 100%;
8
  overflow: hidden;
dengxiaofeng's avatar
dengxiaofeng committed
9
}
杨思琦's avatar
杨思琦 committed
10 11 12
#app {
  background: transparent!important;
}
邓晓峰's avatar
邓晓峰 committed
13 14 15 16 17
* {
  margin: 0;
  padding: 0;
}

18 19 20 21
@font-face {
  font-family: 'ZhenyanGB';
  src: url("./assets/fonts/ZhenyanGB.ttf");
}
22 23 24 25
@font-face {
  font-family: 'PangMenZhengDaoBiaoTiTi';
  src: url("./assets/fonts/PangMenZhengDaoBiaoTiTi.ttf");
}
26

dengxiaofeng's avatar
dengxiaofeng committed
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
.colorWeak {
  filter: invert(80%);
}

.ant-layout {
  min-height: 100vh;
}

canvas {
  display: block;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,
ol {
  list-style: none;
}
邓晓峰's avatar
邓晓峰 committed
48 49 50
body a {
  text-decoration: none;
  color: inherit;
dengxiaofeng's avatar
dengxiaofeng committed
51 52
  // color: #fff!important;
}
邓晓峰's avatar
邓晓峰 committed
53 54 55 56
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
邓晓峰's avatar
邓晓峰 committed
57
}
dengxiaofeng's avatar
dengxiaofeng committed
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

@media (max-width: @screen-xs) {
  .ant-table {
    width: 100%;
    overflow-x: auto;
    &-thead > tr,
    &-tbody > tr {
      > th,
      > td {
        white-space: pre;
        > span {
          display: block;
        }
      }
    }
  }
}
// 兼容IE11
@media screen and(-ms-high-contrast: active), (-ms-high-contrast: none) {
  body .ant-design-pro > .ant-layout {
    min-height: 100vh;
  }
}

82
#root {
邓晓峰's avatar
邓晓峰 committed
83
  & :global(.ant-pro-basicLayout-content) {
邓晓峰's avatar
邓晓峰 committed
84
    margin: 0 !important;
邓晓峰's avatar
邓晓峰 committed
85
    height: 100%;
dengxiaofeng's avatar
dengxiaofeng committed
86 87
  }
  .subapp-container div[data-qiankun='purehtml'] * {
邓晓峰's avatar
邓晓峰 committed
88
    margin: inherit;
dengxiaofeng's avatar
dengxiaofeng committed
89
  }
邓晓峰's avatar
邓晓峰 committed
90 91 92
  .subapp-container,
  .subapp-container div[data-name='purehtml'],
  .subapp-container .web4_console_component {
dengxiaofeng's avatar
dengxiaofeng committed
93 94
    height: 100%;
  }
邓晓峰's avatar
邓晓峰 committed
95 96 97 98 99 100
  & :global{
    .ant-pro-sider-menu {
      .ant-pro-menu-item {
       // font-size: 12px;
        overflow: hidden;
        text-overflow: ellipsis;
邓晓峰's avatar
邓晓峰 committed
101
      }
邓晓峰's avatar
邓晓峰 committed
102 103 104 105 106

      &:not(.ant-menu-inline-collapsed) {
        .ant-pro-menu-item {
          width: 80px;
        }
dengxiaofeng's avatar
dengxiaofeng committed
107
      }
邓晓峰's avatar
邓晓峰 committed
108 109 110 111 112 113 114 115 116

      //      width: 80px;
      .ant-menu-item-only-child {
        // a {
        //   display: flex;
        //   align-items: center;
        // }
        span.ant-pro-menu-item {
          margin-left: 8px;
dengxiaofeng's avatar
dengxiaofeng committed
117 118
        }
      }
邓晓峰's avatar
邓晓峰 committed
119 120 121 122 123 124

      .ant-menu-submenu {
        div.ant-menu-submenu-title {
          display: flex;
          align-items: center;

dengxiaofeng's avatar
dengxiaofeng committed
125
          img {
邓晓峰's avatar
邓晓峰 committed
126
            margin-right: 8px;
dengxiaofeng's avatar
dengxiaofeng committed
127
          }
邓晓峰's avatar
邓晓峰 committed
128 129 130 131 132 133 134 135 136 137 138 139 140
        }

        ul.ant-menu-sub {
          li {
            img {
              width: 14px !important;
              height: 14px !important;
              // margin-right: 12px;
            }

            .ant-pro-menu-item {
              padding-left: 0 !important;
            }
dengxiaofeng's avatar
dengxiaofeng committed
141 142 143
          }
        }
      }
邓晓峰's avatar
邓晓峰 committed
144 145 146 147 148

      .@{ant-prefix}-layout-slider-dark {
        box-shadow: rgba(0, 0, 0, 0.6) 0px 1px 4px 0px;
        transition: all 0.25s ease-in-out 0s;
      }
dengxiaofeng's avatar
dengxiaofeng committed
149
    }
邓晓峰's avatar
邓晓峰 committed
150 151 152
    .ant-pro-sider .ant-layout-sider-children ::-webkit-scrollbar {
      width: 0;
      height: 0;
dengxiaofeng's avatar
dengxiaofeng committed
153
    }
邓晓峰's avatar
邓晓峰 committed
154 155 156 157 158 159 160 161 162 163
    .@{ant-prefix}-menu-submenu-popup {
      .@{ant-prefix}-menu-item {
        img {
          width: 14px !important;
          height: 14px !important;
          margin-right: 12px;
        }
        .@{ant-prefix}-pro-menu-item {
          padding-left: 0;
        }
dengxiaofeng's avatar
dengxiaofeng committed
164 165
      }
    }
邓晓峰's avatar
邓晓峰 committed
166 167 168 169 170 171 172

    .@{ant-prefix}-menu-dark {
      .@{ant-prefix}-menu-submenu-selected {
        .@{ant-prefix}-menu-item-selected {
          // background: rgb(39, 49, 80);
          // border-left: 3px solid rgb(23, 160, 242);
        }
dengxiaofeng's avatar
dengxiaofeng committed
173 174
      }
    }
邓晓峰's avatar
邓晓峰 committed
175 176 177 178 179 180 181 182 183
    .@{ant-prefix}-pro-sider {
      .@{ant-prefix}-layout-sider-children {
        ::-webkit-scrollbar-thumb {
          border-radius: 0;
        }
        ::-webkit-scrollbar {
          width: 0px;
          height: 0px;
        }
dengxiaofeng's avatar
dengxiaofeng committed
184 185
      }
    }
邓晓峰's avatar
邓晓峰 committed
186
    .@{ant-prefix}-pro-sider-logo {
邓晓峰's avatar
邓晓峰 committed
187
      justify-content: center;
dengxiaofeng's avatar
dengxiaofeng committed
188
    }
邓晓峰's avatar
邓晓峰 committed
189 190 191
    .@{ant-prefix}-layout-sider-collapsed {
      .@{ant-prefix}-pro-sider-logo {
        transform: scale(0.7);
dengxiaofeng's avatar
dengxiaofeng committed
192
      }
邓晓峰's avatar
邓晓峰 committed
193 194 195 196 197 198 199 200 201 202 203 204 205
      .@{ant-prefix}-menu-submenu-vertical {
        .@{ant-prefix}-menu-submenu-title {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          // margin-bottom: 8px;
        }
      }
      .@{ant-prefix}-menu-dark.@{ant-prefix}-menu-dark:not(.@{ant-prefix}-menu-horizontal) {
        .@{ant-prefix}-menu-item-selected {
          // border-left: 2px solid #1890ff;
          // background-color: #273150;
        }
dengxiaofeng's avatar
dengxiaofeng committed
206 207
      }
    }
邓晓峰's avatar
邓晓峰 committed
208 209 210 211 212
    // .@{ant-prefix}-pro-global-header-layout-side {
    //   > div {
    //     display: flex;
    //   }
    // }
邓晓峰's avatar
邓晓峰 committed
213 214 215 216
    .@{ant-prefix}-pro-basicLayout-side {
      .@{ant-prefix}-pro-sider-extra {
        padding: 0 14px !important;
      }
邓晓峰's avatar
邓晓峰 committed
217
    }
邓晓峰's avatar
邓晓峰 committed
218 219 220 221
    .@{ant-prefix}-pro-fixed-header {
      .@{ant-prefix}-pro-global-header-layout-side {
        padding: 0 0 0 16px;
      }
邓晓峰's avatar
邓晓峰 committed
222 223
    }
  }
邓晓峰's avatar
邓晓峰 committed
224 225 226



邓晓峰's avatar
邓晓峰 committed
227 228
}
body {
邓晓峰's avatar
邓晓峰 committed
229 230 231 232 233 234 235 236 237 238
  :global {
    .@{ant-prefix}-menu-submenu-popup {
      .@{ant-prefix}-menu-sub {
        li {
          a {
            display: flex;
            align-items: center;
            .@{ant-prefix}-pro-menu-item {
              margin-left: 8px;
            }
邓晓峰's avatar
邓晓峰 committed
239 240 241 242
          }
        }
      }
    }
邓晓峰's avatar
邓晓峰 committed
243 244 245 246 247
    .@{ant-prefix}-message-notice-content {
      .@{ant-prefix}-message-custom-content {
        display: flex;
        align-items: center;
      }
邓晓峰's avatar
邓晓峰 committed
248
    }
邓晓峰's avatar
邓晓峰 committed
249

邓晓峰's avatar
邓晓峰 committed
250
  }
邓晓峰's avatar
邓晓峰 committed
251 252 253



254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
  //& /deep/ .ant-menu-vertical > .ant-menu-item,
  //.ant-menu-vertical-left > .ant-menu-item,
  //.ant-menu-vertical-right > .ant-menu-item,
  //.ant-menu-inline > .ant-menu-item,
  //.ant-menu-vertical > .ant-menu-submenu > .ant-menu-submenu-title,
  //.ant-menu-vertical-left > .ant-menu-submenu > .ant-menu-submenu-title,
  //.ant-menu-vertical-right > .ant-menu-submenu > .ant-menu-submenu-title,
  //.ant-menu-inline > .ant-menu-submenu > .ant-menu-submenu-title {
  //  line-height: 35px!important;
  //  height: 35px!important;
  //}
  //
  //& /deep/ .ant-menu-vertical .ant-menu-item:not(:last-child), .ant-menu-vertical-left .ant-menu-item:not(:last-child), .ant-menu-vertical-right .ant-menu-item:not(:last-child), .ant-menu-inline .ant-menu-item:not(:last-child) {
  //  bottom: 0px!important;
  //}
269 270 271 272 273 274 275

  :global {
    // antd默认vertical-align: -0.125em 偏下
    .anticon {
      vertical-align: 0.125em;
    }
  }
dengxiaofeng's avatar
dengxiaofeng committed
276
}
邓晓峰's avatar
邓晓峰 committed
277

邓晓峰's avatar
邓晓峰 committed
278
.panda-pro-components-global-header-index-userWrapper {
邓晓峰's avatar
邓晓峰 committed
279 280 281
  & /deep/ .@{ant-prefix}-popover-content > .@{ant-prefix}-popover-arrow {
    border-top-color: #40b3f7 !important;
    border-left-color: #40b3f7 !important;
邓晓峰's avatar
邓晓峰 committed
282 283 284
  }
}

邓晓峰's avatar
邓晓峰 committed
285
.panda-pro-layouts-user-layout-stationsWrapper {
邓晓峰's avatar
邓晓峰 committed
286 287 288
  & /deep/ .@{ant-prefix}-popover-content > .@{ant-prefix}-popover-arrow {
    top: 17px !important;
    left: 24px !important;
邓晓峰's avatar
邓晓峰 committed
289 290 291
  }
}
.panda-pro-layouts-user-layout-city_pane {
邓晓峰's avatar
邓晓峰 committed
292
  & /deep/ .@{ant-prefix}-anchor-ink {
邓晓峰's avatar
邓晓峰 committed
293
    display: none;
邓晓峰's avatar
邓晓峰 committed
294
    .@{ant-prefix}-anchor-link-title {
邓晓峰's avatar
邓晓峰 committed
295 296 297 298 299
      color: #ccc;
    }
  }
}
.panda-pro-layouts-user-layout-cityLetter {
邓晓峰's avatar
邓晓峰 committed
300 301 302
  /deep/ .@{ant-prefix}-anchor-link-title {
    color: #ccc;
  }
邓晓峰's avatar
邓晓峰 committed
303
}
dengxiaofeng's avatar
dengxiaofeng committed
304 305 306 307 308 309 310 311 312 313 314 315

//global scrollbar

::-webkit-scrollbar-thumb {
  border-radius: 0;
}
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

//left menu