Blame view

ant-design-vue-jeecg/src/views/system/modules/icon/Icon.less 738 Bytes
肖超群 authored
1
2
3
4
5
@active-color: #4a4a48;
ul {
  max-height: 700px;
  overflow-y: auto;
  padding-left: .5rem;
肖超群 authored
6
肖超群 authored
7
8
9
10
11
12
  i {
    font-size: 1.5rem;
    border: 1px solid #f1f1f1;
    padding: .2rem;
    margin: .3rem;
    cursor: pointer;
肖超群 authored
13
肖超群 authored
14
15
16
17
18
19
20
21
    &.active, &:hover {
      border-radius: 2px;
      border-color: @active-color;
      background-color: @active-color;
      color: #fff;
      transition: all .3s;
    }
  }
肖超群 authored
22
肖超群 authored
23
24
25
26
27
28
29
  li {
    list-style: none;
    float: left;
    width: 5%;
    text-align: center;
    cursor: pointer;
    color: #555;
肖超群 authored
30
    transition: color .3s ease-in-out, background-color .3s ease-in-out;
肖超群 authored
31
32
33
34
35
36
37
38
    position: relative;
    margin: 3px 0;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    padding: 10px 0 0;
  }
}