Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 10... Línea 10...
10
            border: $card-border-width solid $card-border-color;
10
            border: $card-border-width solid $card-border-color;
11
            @include clearfix;
11
            @include clearfix;
12
            padding: $card-spacer-x;
12
            padding: $card-spacer-x;
13
            margin-bottom: $card-spacer-x;
13
            margin-bottom: $card-spacer-x;
14
        }
14
        }
-
 
15
 
-
 
16
        &.subsection_level {
-
 
17
            background-color: $card-bg;
-
 
18
            @include border-radius($card-border-radius);
-
 
19
            border: $card-border-width solid $card-border-color;
-
 
20
            @include clearfix;
-
 
21
            padding: $card-spacer-x;
-
 
22
            margin: 0 $card-spacer-x $card-spacer-x $card-spacer-x;
-
 
23
        }
15
    }
24
    }
Línea -... Línea 25...
-
 
25
 
-
 
26
    $table-cell-padding-sm: .3rem !default;
16
 
27
 
17
    /* These are long labels with checkboxes on the right. */
28
    /* These are long labels with checkboxes on the right. */
18
    .include_setting {
29
    .include_setting {
19
        width: 50%;
30
        width: 50%;
20
        display: inline-block;
31
        display: inline-block;
Línea 42... Línea 53...
42
    }
53
    }
43
}
54
}
Línea 44... Línea 55...
44
 
55
 
45
/* Override the columns width to leave more room for the labels. */
56
/* Override the columns width to leave more room for the labels. */
46
.path-backup .mform {
57
.path-backup .mform {
-
 
58
    fieldset {
-
 
59
        padding: map-get($spacers, 3) 0;
47
    .root_setting,
60
    }
48
    .grouped_settings {
61
    .grouped_settings.activity_level {
49
        /* Striped rows like a table */
62
        /* Striped rows like a table */
50
        &:nth-of-type(odd) {
63
        &:nth-of-type(odd) {
51
            background-color: $table-accent-bg;
64
            background-color: $table-striped-bg;
52
        }
65
        }
53
        &:nth-of-type(even) {
66
        &:nth-of-type(even) {
54
            background-color: $card-bg;
67
            background-color: $table-accent-bg;
-
 
68
        }
-
 
69
    }
-
 
70
    .fcontainer {
-
 
71
        .grouped_settings,
55
        }
72
        .root_setting {
-
 
73
            .fitem {
-
 
74
                margin: map-get($spacers, 1) 0 !important; /* stylelint-disable declaration-no-important */
-
 
75
                .col-form-label {
-
 
76
                    padding-top: 0;
56
        .fitem {
77
                }
57
            /* These checkboxes with no label on the left. */
78
                /* These checkboxes with no label on the left. */
58
            .col-md-3.checkbox {
79
                .col-md-3.checkbox {
59
                width: 0%;
80
                    width: 0%;
60
            }
81
                }
61
            .col-md-9.checkbox {
82
                .col-md-9.checkbox {
62
                width: 100%;
83
                    width: 100%;
-
 
84
                    left: 0;
63
                left: 0;
85
                }
64
            }
86
            }
65
        }
87
        }
66
    }
88
    }
Línea 200... Línea 222...
200
    }
222
    }
201
    .state12 {
223
    .state12 {
202
        background: $backup-restore-state12-bg;
224
        background: $backup-restore-state12-bg;
203
    }
225
    }
204
}
226
}
205
 
-