liuxiaolong
2019-05-06 3e0536f508aad49f743e7bfabca34e3980a1b6e2
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
@import '~@/vendor/css/demo';
@import '~@/vendor/styles/common';
@import '~@/vendor/styles/amap-content';
// Base
//
 
.dropdown-item,
.page-link,
.nav {
  outline: 0;
}
 
// Page transition
//
 
.router-transitions {
  opacity: 1;
  transition: opacity 0.2s;
 
  body.app-loading & {
    opacity: 0.75;
  }
}
 
// Tables
//
/* 全局覆盖样式 */
.el-table td {
  padding: 8px 0 !important;
}
.has-gutter th {
  background: #f4fcff !important;
}
.btn-link {
  color: #35bde7;
}
 
table.b-table > thead > tr > th.sorting,
table.b-table > tfoot > tr > th.sorting {
  padding-right: 2rem;
}
 
[dir='rtl'] .b-table > thead > tr > th.sorting,
[dir='rtl'] .b-table > tfoot > tr > th.sorting {
  padding-left: 2rem;
 
  &:before {
    right: auto;
    left: 0.75em;
  }
 
  &:after {
    right: auto;
    left: 0.25em;
  }
}
.radius-circle {
  border-radius: 50%;
  overflow: hidden;
}
 
.radius-5 {
  border-radius: 5px;
}
 
.radius-10 {
  border-radius: 10px;
}
 
.radius-15 {
  border-radius: 15px;
}
 
.radius-20 {
  border-radius: 20px;
}
 
.radius-25 {
  border-radius: 25px;
}
.margin0auto {
  margin: 0 auto;
}
.alarm-checkBox {
  .el-checkbox__input {
    line-height: 0;
  }
  .el-checkbox__input.is-checked .el-checkbox__inner,
  .el-checkbox__input.is-indeterminate .el-checkbox__inner {
    background-color: #35bde7;
    border-color: #35bde7;
  }
  .el-checkbox__inner:hover {
    border-color: #35bde7;
  }
  .el-checkbox__input.is-checked + .el-checkbox__label {
    color: #35bde7;
  }
}
.default-style[dir='rtl'] .b-table {
  @import '~@/vendor/styles/_appwork/include';
 
  > thead > tr > th.sorting,
  > tfoot > tr > th.sorting {
    padding-right: $table-cell-padding;
  }
 
  &.card-table > thead > tr > th.sorting:first-child,
  &.card-table > tfoot > tr > th.sorting:first-child {
    padding-right: $card-spacer-x;
  }
}
 
.material-style[dir='rtl'] .b-table {
  @import '~@/vendor/styles/_appwork/include-material';
 
  > thead > tr > th.sorting,
  > tfoot > tr > th.sorting {
    padding-right: $table-cell-padding;
  }
 
  &.card-table > thead > tr > th.sorting:first-child,
  &.card-table > tfoot > tr > th.sorting:first-child {
    padding-right: $card-spacer-x;
  }
}
 
/* 新增自定义样式 */
.text-purple {
  color: #6f42c1 !important;
}
 
/* 覆盖ie input X 样式 */
input::-ms-clear {
  display: none;
}