meeting-minutes.css
1.64 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.div-minutes{
border:1px solid #0096eb;
border-right:none;
height:30px;
float:left;
}
.div-minutes img{
margin-left:10px;
/* margin-top:10px; */
/* margin-right:4px; */
}
.div-minutes input[type="text"]{
border:none;
width:300px !important;
height:28px !important;
padding:4px;
}
.div-minutes{
height:30px;
}
.ul-table-head{
margin-top:16px;
margin-bottom:0;
padding-left:0;
padding-top:13px;
padding-bottom:13px;
list-style: none;
clear:both;
background-color: #f2f2f2;
border-radius:2px;
width:100%;
font-size: 14px;
}
.ul-table-head li{
padding-left:11px;
padding-right:20px;
display:inline;
height:20px;
line-height:20px;
border-right:1px solid #ccc;
color:#24a2e9;
}
.ul-table-head li:nth-child(4){
border:none;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
width: 10px;
background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track
{
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
/* border-radius: 10px; */
background-color: #F5F5F5;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb
{
border-radius: 5px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
background-color: #CDCDCD;
}
.ul-table-head li button{
margin:0 10px;
float:right;
margin-top:-5px;
}
thead {
border-bottom: 1px dashed #28aaeb;
}
table.striped > tbody > tr:nth-child(2n+1){
background-color:#fff;
}
table.striped > tbody > tr:nth-child(2n){
background-color:#fafafa;
}
table.striped > tbody > tr:nth-child(2n):hover{
background-color:#eef9ff;
}