1 |
efrain |
1 |
/* reports.less */
|
|
|
2 |
|
|
|
3 |
// The home for small tweaks to reports that don't require
|
|
|
4 |
// changes drastic enough to pull in the full module css
|
|
|
5 |
// and replace it completely.
|
|
|
6 |
|
|
|
7 |
#page-report-participation-index .participationselectform div label { // Using 'div' here to override the report styles.css
|
|
|
8 |
display: inline-block;
|
|
|
9 |
margin: 0 5px; // No top and bottom margin with a 5px left and right for LTR and RTL.
|
|
|
10 |
}
|
|
|
11 |
|
|
|
12 |
#page-report-participation-index .participationselectform div label[for=menuinstanceid] {
|
|
|
13 |
margin-left: 0; // No left margin for LTR.
|
|
|
14 |
}
|
1441 |
ariadna |
15 |
|
|
|
16 |
// Outline report styles
|
|
|
17 |
#page-report-outline-index .font-lg {
|
|
|
18 |
font-size: $font-size-base * 1.1;
|
|
|
19 |
}
|
|
|
20 |
#page-report-outline-index .generaltable tbody {
|
|
|
21 |
tr {
|
|
|
22 |
background-color: $white;
|
|
|
23 |
}
|
|
|
24 |
tr.section {
|
|
|
25 |
padding-left: map-get($spacers, 5);
|
|
|
26 |
h3 {
|
|
|
27 |
font-size: $h5-font-size;
|
|
|
28 |
}
|
|
|
29 |
h4 {
|
|
|
30 |
font-size: $font-size-base * 1.1;
|
|
|
31 |
}
|
|
|
32 |
}
|
|
|
33 |
td.delegated {
|
|
|
34 |
padding-left: $spacer * 3.5;
|
|
|
35 |
}
|
|
|
36 |
}
|
|
|
37 |
|
|
|
38 |
#page-report-outline-user .section {
|
|
|
39 |
border: $border-width solid $border-color;
|
|
|
40 |
@include border-radius($activity-border-radius);
|
|
|
41 |
}
|
|
|
42 |
|
|
|
43 |
#page-report-outline-user .font-lg {
|
|
|
44 |
font-size: $font-size-base * 1.1;
|
|
|
45 |
}
|
|
|
46 |
|
|
|
47 |
#page-report-log-index #menumodid option:disabled {
|
|
|
48 |
// Browsers do not consider the color of a disabled option
|
|
|
49 |
// if it is the same as the non-disabled options.
|
|
|
50 |
// Since we are using disabled elements to create a sense of hierarchy,
|
|
|
51 |
// we intentionally use a slightly different color for them.
|
|
|
52 |
// We do this because HTML still does not allow nested optgroups in select elements.
|
|
|
53 |
color: lighten($body-color, 1%);
|
|
|
54 |
font-weight: bolder;
|
|
|
55 |
}
|