Blame view

src/assets/style/common.scss 1.61 KB
9b7e125f   monkeyhouyi   属地页面
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  html,
  body,
  #app {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  
  ::-webkit-scrollbar-track-piece {
    -webkit-border-radius: 0
  }
  ::-webkit-scrollbar {
    width: 5px;
    height: 10px
  }
  ::-webkit-scrollbar-thumb {
    height: 50px;
    background-color: #b8b8b8;
    -webkit-border-radius: 6px;
    outline-offset: -2px;
    filter: alpha(opacity = 50);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5
  }
  ::-webkit-scrollbar-thumb:hover {
    height: 50px;
    background-color: #878987;
    -webkit-border-radius: 6px
  }
  
7af40104   monkeyhouyi   应用信息页面完成(上报没写)
33
  .common-info-box {
5a14192c   monkeyhouyi   1
34
    height: calc(100vh - 150px);
7af40104   monkeyhouyi   应用信息页面完成(上报没写)
35
  }
9b7e125f   monkeyhouyi   属地页面
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  .item-box {
    width: 100%;
    border-radius: 10px;
    background-color: rgba(244, 244, 245, 0.38);
    margin-bottom: 15px;
    .item-title {
      color: rgba(255, 255, 255, 1);
      font-size: 16px;
      line-height: 23px;
      padding: 10px;
    }
    .item-body {
      height: calc(100% - 68px);
      margin: 0 13px;
ecc43230   monkeyhouyi   优化首页,应用管理
50
      // padding-bottom: 28px;
9b7e125f   monkeyhouyi   属地页面
51
52
53
54
55
56
57
58
59
60
61
62
63
      .el-table {
        border-radius: 10px;
        height: 100%;
      }
    }
  }
  
  .router-link-active {
    text-decoration: none
  }
  
  a {
   text-decoration: none
0af91599   monkeyhouyi   弹框请求优化
64
  } 
7af40104   monkeyhouyi   应用信息页面完成(上报没写)
65
  
c8753517   monkeyhouyi   前端页面整改
66
67
68
  .form-item {
    display: flex;
    justify-content: flex-start;
4755ec66   monkeyhouyi   1
69
    align-items: flex-start;
73755355   monkeyhouyi   优化
70
    color: #000;
c8753517   monkeyhouyi   前端页面整改
71
    line-height: 30px;
4755ec66   monkeyhouyi   1
72
    flex-direction: row;
c8753517   monkeyhouyi   前端页面整改
73
    .label {
73755355   monkeyhouyi   优化
74
      color: #757678;
ce1de261   monkeyhouyi   专项行动
75
76
      text-align: right;
      padding: 0 5px;
c8753517   monkeyhouyi   前端页面整改
77
78
79
      &.w-100 {
        width: 100px;
      }
4755ec66   monkeyhouyi   1
80
81
82
      &.w-120 {
        width: 120px;
      }
8994407e   monkeyhouyi   优化
83
84
85
      &.w-150 {
        width: 150px;
      }
6cd34f81   monkeyhouyi   对接接口优化
86
87
88
      &.w-180 {
        width: 180px;
      }
4755ec66   monkeyhouyi   1
89
90
91
    }
    .text {
      flex: 1;
c8753517   monkeyhouyi   前端页面整改
92
93
94
    }
  }
  
1ef03631   monkeyhouyi   1
95
96
97
98
99
100
101
  // .NCC-dialog.NCC-dialog_center {
  //   .NCC-dialog-content {
  //     padding: 20px 50px 0 !important;
  //     margin: 0 !important;
  //     width: 100%;
  //   }
  // }
87e6927c   monkeyhouyi   弹框样式