App.vue
1.6 KB
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
<template>
<div id="app" style="height:100%">
<router-view/>
</div>
</template>
<style lang="less">
html,body,#app,.el-container{
/*设置内部填充为0,几个布局元素之间没有间距*/
padding: 0px;
/*外部间距也是如此设置*/
margin: 0px;
/*统一设置高度为100%*/
height: 100%;
}
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
color: #2c3e50;
}
.lanopacity ::-webkit-input-placeholder { /* WebKit browsers */
// color: #cfcdcb;;
// font-size: 14px;
font-size: 14px !important;
color: rgb(207, 205, 203) !important;
}
.el-popover {
background-color: rgba(255,255,255,0.2) !important;
color: #606266;
box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
border: 0 !important;
}
.el-popper[x-placement^=top] .popper__arrow::after {
bottom: 1px;
margin-left: -6px;
border: 0 !important;
}
.el-popper[x-placement^=top] .popper__arrow {
bottom: -6px;
left: 50%;
margin-right: 3px;
border: 0 !important;
}
// .lanopacity >.drop-down-box{
// opacity: 0 !important;
// }
.lanopacity .drop-down-container{
box-shadow:none !important;
}
.lanopacity input{
font-size: 14px !important;
color: #cfcdcb !important;
}
.fv-dark-DropDown .drop-down-box .drop-down-container input {
font-size: 14px !important;
}
.lanopacity ::-webkit-input-placeholder{ /* WebKit browsers */
font-size: 13px !important;
}
.el-table .el-table__body tr:hover > td {
background-color: #0D1F34 !important;
}
</style>