forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MDL-39798 theme_bootstrapbase: Improve layout for course participatio…
…n reports.
- Loading branch information
Showing
3 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* reports.less */ | ||
|
||
// The home for small tweaks to reports that don't require | ||
// changes drastic enough to pull in the full module css | ||
// and replace it completely. | ||
|
||
#page-report-participation-index .participationselectform div label { // Using 'div' here to override the report styles.css | ||
display: inline; | ||
margin: 0 5px; // No top and bottom margin with a 5px left and right for LTR and RTL. | ||
} | ||
|
||
#page-report-participation-index.dir-ltr .participationselectform div label[for=menuinstanceid] { | ||
margin-left: 0px; // No left margin for LTR. | ||
} | ||
|
||
#page-report-participation-index.dir-rtl .participationselectform div label[for=menuinstanceid] { | ||
margin-right: 0px; // No right margin for RTL. | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.