Project

General

Profile

status_overview.css

Luke Murphey, 10/28/2016 04:44 AM

Download (1.47 KB)

 
1
/*
2
 * Hide the 'time_exceeded' column since it is only used for determining if the response time should be marked as high
3
 */
4
.table tr td:nth-of-type(5),
5
.table tr th:nth-of-type(5),
6
.table tr td:nth-of-type(5),
7
.table tr th:nth-of-type(5){
8
     display:none;   
9
}
10

    
11
/*
12
 * Hide the 'avg_time_exceeded' column since it is only used for determining if the average response time should be marked as high
13
 */
14
.table tr td:nth-of-type(7),
15
.table tr th:nth-of-type(7){
16
     display:none;   
17
}
18
/*
19
 * The following improves the styling of the status overview dashboard by removing the white border and padding.
20
 */
21
#element1{
22
    background-color: #eee;
23
}
24

    
25
.dashboard-header{
26
    padding-left: 20px;
27
    padding-right: 20px;
28
}
29

    
30
.fieldset{
31
    padding-left: 20px;
32
}
33

    
34
.dashboard-body{
35
    padding-left: 0px;
36
    padding-right: 0px;
37
}
38

    
39
.title{
40
        font-weight:bold !important;
41
        font-size: larger;
42
}
43

    
44
/*
45
.table-chrome.table-striped > tbody > tr > td.response_code.success{
46
        background-color: #65A636;
47
    color: white;
48
    font-weight: bold;
49
}
50

51
.table-chrome.table-striped > tbody > tr > td.response_code.failure,
52
.table-chrome.table-striped > tbody > tr > td.response_time.failure,
53
.table-chrome.table-striped > tbody > tr > td.average.failure{
54
        background-color: #d6563c;
55
    color: white;
56
    font-weight: bold;
57
}
58
*/
59

    
60
.response-failure.badge, .response-success.badge{
61
        border-radius: 3px;
62
}
63

    
64
/*
65
 * 
66
 */
67
.response-failure{
68
        background-color: #C42323;
69
}
70

    
71
.response-success{
72
        background-color: #61a035; /* #00a009; */
73
}
74

    
75