styles.css 1.37 KB
Newer Older
1
/* Prevent word breaking in the grading table */
2
.dtaSubmissionSummary {
3
4
5
    white-space: nowrap;
}

6
7
.dtaSubmissionSummary,
.dtaSubmissionDetails {
8
9
10
11
    margin-top: 15px;
}

/* empty div between summary and detail table */
12
.dtaSpacer {
13
14
15
16
17
18
19
    margin-top: 30px;
}

/****************************************************************
* Layout for the Detail view
****************************************************************/

20
.dtaTable {
21
22
23
24
25
26
27
28
29
    display: inline-block;
    max-width: 100%;
    overflow: auto;
    background: white !important;
    border-radius: .1rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.05),0 0 .05rem rgba(0,0,0,.1);
    overflow-x: hidden;
}

30
.dtaTableHeaderRow {
31
32
33
34
35
    font-weight: bold;
    color: white !important;
    background-color: gray !important;
}

36
.dtaTableRow {
37
38
39
40
    background-color: unset !important;
    border-top: .05rem solid lightgray;
}

41
42
.dtaTableHeaderRow th,
.dtaTableRow td {
43
44
45
    padding: .9375em 1.25em;
}

46
.dtaStacktraceDetails {
47
48
49
50
51
    max-height: 300px;
    max-width: 70%;
    overflow: auto;
}

52
.dtaResultUnknown {
53
54
55
    border-left: 10px solid gray;
}

56
.dtaResultSuccess {
57
58
59
    border-left: 10px solid green;
}

60
.dtaResultFailure {
61
62
63
    border-left: 10px solid orange;
}

64
.dtaResultCompilationError {
65
66
67
    border-left: 10px solid red;
}

68
.dtaTableRow:hover {
69
70
71
    background-color: lightgray !important;
}

72
.dtaTableSpacer {
73
74
    border-bottom: 2px solid darkgray;
}