event-list.scss
1.79 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
86
87
88
89
90
.event-list {
position: relative;
background-color: #eeeeee;
.contraste & {
background-color: #262626;
}
.event-list--panel {
height: 310px;
border: 1px solid #333333;
padding: 20px;
margin: 20px 0;
line-height: 20px;
transition: .3s linear all;
&.ng-hide {
height: 0px;
line-height: 0px;
}
.event-list--header {
border-bottom: 1px solid #333333;
}
.event-list--icon {
font-size: 25px;
display: inline-block;
}
.event-list--title {
margin: 0 10px;
display: inline-block;
}
.event-list--minimize {
display: inline-block;
float: right;
width: 100px;
}
}
.event-tab--trigger {
$event-tab-height: 130px;
width: 150px;
height: $event-tab-height;
position: absolute;
right: 0;
top: $event-tab-height * (-1);
padding: 5px;
background-color: #eeeeee;
border: 1px solid #333333;
text-align: center;
line-height: 20px;
cursor: pointer;
transition: .3s linear all;
overflow: hidden;
z-index: 100;
&.ng-hide {
height: 0px;
line-height: 0px;
top: -1px;
}
.contraste & {
background-color: #262626;
}
}
.table-responsive {
height: 250px;
overflow-y: scroll;
}
.event-tab--icon {
font-size: 25px;
}
.event-tab--title {
font-weight: bold;
}
.event-tab--button {
font-size: 12px;
margin: 10px 0 0 0;
padding: 0;
width: 100%;
white-space: normal;
}
}