global.less 6.91 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
#app {
  background: transparent!important;
杨思琦's avatar
杨思琦 committed
12 13 14 15 16
  .ka-wrapper, 
  .ka-content{
    width: 100%;
    height: 100%;
  }
杨思琦's avatar
杨思琦 committed
17
}
邓晓峰's avatar
邓晓峰 committed
18 19 20 21 22
* {
  margin: 0;
  padding: 0;
}

23 24 25 26
@font-face {
  font-family: 'ZhenyanGB';
  src: url("./assets/fonts/ZhenyanGB.ttf");
}
27 28 29 30
@font-face {
  font-family: 'PangMenZhengDaoBiaoTiTi';
  src: url("./assets/fonts/PangMenZhengDaoBiaoTiTi.ttf");
}
31

dengxiaofeng's avatar
dengxiaofeng committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
.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
53 54 55
body a {
  text-decoration: none;
  color: inherit;
dengxiaofeng's avatar
dengxiaofeng committed
56 57
  // color: #fff!important;
}
邓晓峰's avatar
邓晓峰 committed
58 59 60 61
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
邓晓峰's avatar
邓晓峰 committed
62
}
dengxiaofeng's avatar
dengxiaofeng committed
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

@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;
  }
}

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

      &:not(.ant-menu-inline-collapsed) {
        .ant-pro-menu-item {
          width: 80px;
        }
dengxiaofeng's avatar
dengxiaofeng committed
112
      }
邓晓峰's avatar
邓晓峰 committed
113 114 115 116 117 118 119 120 121

      //      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
122 123
        }
      }
邓晓峰's avatar
邓晓峰 committed
124 125 126 127 128 129

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

dengxiaofeng's avatar
dengxiaofeng committed
130
          img {
邓晓峰's avatar
邓晓峰 committed
131
            margin-right: 8px;
dengxiaofeng's avatar
dengxiaofeng committed
132
          }
邓晓峰's avatar
邓晓峰 committed
133 134 135 136 137 138 139 140 141 142 143 144 145
        }

        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
146 147 148
          }
        }
      }
邓晓峰's avatar
邓晓峰 committed
149 150 151 152 153

      .@{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
154
    }
邓晓峰's avatar
邓晓峰 committed
155 156 157
    .ant-pro-sider .ant-layout-sider-children ::-webkit-scrollbar {
      width: 0;
      height: 0;
dengxiaofeng's avatar
dengxiaofeng committed
158
    }
邓晓峰's avatar
邓晓峰 committed
159 160 161 162 163 164 165 166 167 168
    .@{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
169 170
      }
    }
邓晓峰's avatar
邓晓峰 committed
171 172 173 174 175 176 177

    .@{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
178 179
      }
    }
邓晓峰's avatar
邓晓峰 committed
180 181 182 183 184 185 186 187 188
    .@{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
189 190
      }
    }
邓晓峰's avatar
邓晓峰 committed
191
    .@{ant-prefix}-pro-sider-logo {
邓晓峰's avatar
邓晓峰 committed
192
      justify-content: center;
dengxiaofeng's avatar
dengxiaofeng committed
193
    }
邓晓峰's avatar
邓晓峰 committed
194 195 196
    .@{ant-prefix}-layout-sider-collapsed {
      .@{ant-prefix}-pro-sider-logo {
        transform: scale(0.7);
dengxiaofeng's avatar
dengxiaofeng committed
197
      }
邓晓峰's avatar
邓晓峰 committed
198 199 200 201 202 203 204 205 206 207 208 209 210
      .@{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
211 212
      }
    }
邓晓峰's avatar
邓晓峰 committed
213 214 215 216 217
    // .@{ant-prefix}-pro-global-header-layout-side {
    //   > div {
    //     display: flex;
    //   }
    // }
邓晓峰's avatar
邓晓峰 committed
218 219 220 221
    .@{ant-prefix}-pro-basicLayout-side {
      .@{ant-prefix}-pro-sider-extra {
        padding: 0 14px !important;
      }
邓晓峰's avatar
邓晓峰 committed
222
    }
邓晓峰's avatar
邓晓峰 committed
223 224 225 226
    .@{ant-prefix}-pro-fixed-header {
      .@{ant-prefix}-pro-global-header-layout-side {
        padding: 0 0 0 16px;
      }
邓晓峰's avatar
邓晓峰 committed
227 228
    }
  }
邓晓峰's avatar
邓晓峰 committed
229 230 231



邓晓峰's avatar
邓晓峰 committed
232 233
}
body {
邓晓峰's avatar
邓晓峰 committed
234 235 236 237 238 239 240 241 242 243
  :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
244 245 246 247
          }
        }
      }
    }
邓晓峰's avatar
邓晓峰 committed
248 249 250 251 252
    .@{ant-prefix}-message-notice-content {
      .@{ant-prefix}-message-custom-content {
        display: flex;
        align-items: center;
      }
邓晓峰's avatar
邓晓峰 committed
253
    }
邓晓峰's avatar
邓晓峰 committed
254

邓晓峰's avatar
邓晓峰 committed
255
  }
邓晓峰's avatar
邓晓峰 committed
256 257 258



259 260 261 262 263 264 265 266 267 268 269 270 271 272 273
  //& /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;
  //}
274 275 276 277 278 279

  :global {
    // antd默认vertical-align: -0.125em 偏下
    .anticon {
      vertical-align: 0.125em;
    }
杨思琦's avatar
杨思琦 committed
280 281 282
    .anticon-close {
      display: inline-block;
    }
283
  }
dengxiaofeng's avatar
dengxiaofeng committed
284
}
邓晓峰's avatar
邓晓峰 committed
285

邓晓峰's avatar
邓晓峰 committed
286
.panda-pro-components-global-header-index-userWrapper {
邓晓峰's avatar
邓晓峰 committed
287 288 289
  & /deep/ .@{ant-prefix}-popover-content > .@{ant-prefix}-popover-arrow {
    border-top-color: #40b3f7 !important;
    border-left-color: #40b3f7 !important;
邓晓峰's avatar
邓晓峰 committed
290 291 292
  }
}

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

//global scrollbar

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

//left menu