-
Notifications
You must be signed in to change notification settings - Fork 21
/
dashboard_show_last_update.css
137 lines (102 loc) · 3.12 KB
/
dashboard_show_last_update.css
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* LastUpdate on the dashboard. */
body.dashboard .lastupdated{opacity:0.4}
#dashcontent .divider tr,
#dashcontent .item tr{
display:block;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
height:auto;
}
#dashcontent #lastupdate{
display:block;
clear:both;
width:100%;
left:0;
top: 0;
height:25px; /* 25 was 20 */
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
opacity:.5;
}
#dashcontent #lastupdate > span{
height: 20px;
padding: 7px 3px 0px 0px; /* 7 was 3*/
width:100%;
display:inline-block;
}
@media screen and (max-width: 768px){
#dashcontent #lastupdate{
display:block;
height:20px;
background-color:rgba(250,250,250,0.1);
}
#dashcontent #lastupdate > span{
display:inline-block;
padding-left:10px;
}
#dashcontent .item.withstatus{
/*background-color:#D4E1EE;*/
/*border-bottom:20px solid transparent; /*little trick to push it down*/
}
}
@media screen and (max-width: 599px){
#dashcontent #lastupdate{
display:block;
height:0px;
/*background-color:rgba(250,250,250,0.1)*/
top: -30px;
}
#dashcontent #name{
padding-top: 12px;
}
}
@media screen and (min-width: 768px) and (max-width: 980px){
#dashcontent .divider tr,
#dashcontent .item tr {
/*min-height: 75px;*/
}
#dashcontent #lastupdate > span {
padding-left:10px;
box-shadow: inset 0px 0px 8px 0px rgba(130, 130, 130, 0.2);
}
/*
#dashcontent .item.withstatus{
border-bottom:20px solid transparent;
} */
/* grow a bit bigger if there is data ouput*/
/*
#dashcontent div.item.withstatus.statuscount1 tr{min-height:105px}
#dashcontent div.item.withstatus.statuscount2 tr{min-height:135px}
#dashcontent div.item.withstatus.statuscount3 tr{min-height:165px}
#dashcontent div.item.withstatus.statuscount4 tr{min-height:195px}
#dashcontent div.item.withstatus.statuscount5 tr{min-height:225px}
#dashcontent div.item.withstatus.statuscount6 tr{min-height:255px}
#dashcontent div.item.withstatus.statuscount7 tr{min-height:285px}
#dashcontent div.item.withstatus.statuscount8 tr{min-height:305px}
#dashcontent div.item.withstatus.statuscount9 tr{min-height:335px}
#dashcontent div.item.withstatus.statuscount10 tr{min-height:365px}
#dashcontent #lastupdate > span{
padding-top:4px;
}*/
}
@media screen and (min-width: 981px){
#dashcontent .divider tr, #dashcontent .item tr {
min-height: 55px;
border-radius:3px;
}
#dashcontent /*.item:not(.withstatus)*/ #name{
padding:10px 0 0 15px/*!important*/;
}
#dashcontent #lastupdate{
background-image:none;
position:relative;
height:0;
overflow:visible;
/*top: -23px;*/
padding:0;
left:0px;
background-color:transparent;
background-image:none;
}
#dashcontent #lastupdate > span {padding-left:15px;}
}