blob: 5a35039e7dea296fb2725404819ef9c71036d0c9 (
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
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
|
@charset 'UTF-8';
.team_statistics {
.total-count {
@include border-radius(3px);
background: $white;
border: 1px solid $light-gray;
margin: 1em 0;
text-align: center;
width: 100%;
.title {
border-bottom: 1px solid $light-gray;
font-size: 13px;
font-weight: 400;
padding: 7px 10px;
text-align: left;
.fa {
color: #555555;
float: right;
font-size: 16px;
margin: 0;
}
}
.content {
color: #555555;
font-size: 30px;
font-weight: 600;
overflow: auto;
padding: .3em 0 .35em;
}
}
.total-count--day {
background: $white;
border: 1px solid $light-gray;
clear: both;
height: 275px;
margin: 10px;
padding: 5px 10px 10px;
width: 760px;
> div {
font-size: 18px;
font-weight: 300;
}
}
.recent-active-users {
table {
table-layout: fixed;
width: 100%;
}
.content {
max-height: 400px;
overflow: auto;
padding: 0;
}
tr {
&:first-child {
td {
border-top: none;
}
}
td {
@include clearfix;
border-left: 1px solid $light-gray;
border-top: 1px solid $light-gray;
font-size: 13px;
font-weight: 400;
padding: 5px 5px 6px;
text-overflow: ellipsis;
white-space: nowrap;
&:first-child {
border-left: none;
}
}
}
}
.team-statistics__header-row {
display: flex;
margin-bottom: 1.5em;
margin-top: 1.5em;
}
.team-statistics__header {
display: inline-block;
flex: 1;
margin-right: 15px;
overflow: hidden;
padding-bottom: .5em;
> h3 {
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.team-statistics__team-filter {
display: inline-block;
width: 200px;
}
}
|