blob: 9fef26f022133ac215821f42eb03ccab83961482 (
plain)
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
|
#delete_card_tip_container {
width: 588px;
height: 164px;
background-color: #FFFFFF;
border: 1px solid #94C721;
padding: 0 20px 0 20px;
border-radius: 3px;
}
.delete_card_tip_title_line {
height: 42px;
line-height: 42px;
border-bottom: 1px solid #D6D0D6;
width: 588px;
}
.delete_card_tip_title_line .delete_card_tip_title {
font-weight: bold;
color: #4A4A4A;
font-size: 18px;
float: left;
}
.delete_card_tip_title_line .delete_card_tip_close {
float: right;
background: url('../images/closed.png') no-repeat;
height: 11px;
width: 11px;
margin: 15px 0 0 0;
cursor: pointer;
}
.delete_card_tip_content {
height: 60px;
line-height: 55px;
color: #4A4A4A;
font-size: 14px;
text-align: center
}
.delete_card_tip_action {
height: 67px;
margin-left: -20px;
}
.delete_card_tip_action .action_confirm_ignore {
background-color: #99CC33;
border-radius: 3px;
width: 100px;
color: white;
cursor: pointer;
height: 26px;
display: inline-block;
text-align: center;
text-decoration: none;
font-size: 15px;
padding:2px;
padding-top:7px;
margin-right: 20px;
}
.delete_card_tip_action .action_confirm_cancel{
background-color: #a8a8a8;
border-radius: 3px;
width: 100px;
color: white;
cursor: pointer;
height: 26px;
display: inline-block;
text-align: center;
text-decoration: none;
padding:2px;
font-size: 15px;
padding-top:7px;
margin-right: 40px;
}
.delete_card_tip_action .action_confirm_cancel {
margin: 0 11px 0 213px;
}
|