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
/* 回應計數 */
.td_response_count {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
line-height: 0px;
font-weight: 100;
font-size: 15px;
transform: scale(0.8);
}
.response_count {
position: relative;
background-color: transparent;
padding: 0;
border-radius: 0%;
top: 10px;
left: 16px;
box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2);
width: 58px;
height: 10px;
border-top: 15px solid rgba(106, 189, 200, 1);
border-bottom: 15px solid rgba(106, 189, 200, 1);
border-right: 15px solid transparent;
display:inline-block;
}
/* 回應計數(未讀) */
.new .response_count {
position: relative !important;
background-color: transparent;
top: 10px;
left: 16px;
box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.2);
width: 58px;
height: 10px;
border-top: 15px solid rgba(255, 134, 112, 1);
border-bottom: 15px solid rgba(255, 134, 112, 1);
border-right: 15px solid transparent;
display:inline-block;
}