Proyectos de Subversion Moodle

Rev

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

Rev 1 Rev 1441
Línea 42... Línea 42...
42
    & > textarea.form-control {
42
    & > textarea.form-control {
43
        width: 100%;
43
        width: 100%;
44
    }
44
    }
45
}
45
}
Línea 46... Línea 46...
46
 
46
 
47
// Override the default bootstrap custom-select width.
47
// Override the default bootstrap form-select width.
48
.custom-select {
48
.form-select {
49
    width: auto;
49
    width: auto;
50
    max-width: 100%;
50
    max-width: 100%;
Línea 51... Línea 51...
51
}
51
}
52
 
52
 
53
#jump-to-activity.custom-select {
53
#jump-to-activity.form-select {
Línea 54... Línea 54...
54
    width: 100%;
54
    width: 100%;
55
}
55
}
Línea 210... Línea 210...
210
#id_availabilityconditionsjson[aria-hidden=true],
210
#id_availabilityconditionsjson[aria-hidden=true],
211
.availability-field [aria-hidden=true] {
211
.availability-field [aria-hidden=true] {
212
    display: none;
212
    display: none;
213
}
213
}
Línea -... Línea 214...
-
 
214
 
-
 
215
.availability-field img {
-
 
216
    width: 16px;
-
 
217
    height: 16px;
-
 
218
}
214
 
219
 
215
.availability-eye {
220
.availability-eye {
216
    clear: left;
221
    clear: left;
217
    float: left;
222
    float: left;
218
}
223
}
Línea 271... Línea 276...
271
    margin: $dropdown-spacer 0 0;
276
    margin: $dropdown-spacer 0 0;
272
    padding: $dropdown-padding-y 0;
277
    padding: $dropdown-padding-y 0;
273
    z-index: 3;
278
    z-index: 3;
274
}
279
}
Línea -... Línea 280...
-
 
280
 
-
 
281
$form-select-disabled-color: $gray-600 !default;
-
 
282
$form-select-disabled-bg: $gray-200 !default;
275
 
283
 
276
.form-autocomplete-suggestions li {
284
.form-autocomplete-suggestions li {
277
    list-style-type: none;
285
    list-style-type: none;
278
    padding: $dropdown-item-padding-y $dropdown-item-padding-x;
286
    padding: $dropdown-item-padding-y $dropdown-item-padding-x;
279
    margin: 0;
287
    margin: 0;
280
    cursor: pointer;
288
    cursor: pointer;
-
 
289
    color: $body-color;
-
 
290
    word-break: normal;
-
 
291
    overflow-wrap: anywhere;
281
    color: $body-color;
292
    white-space: normal;
282
    &:hover,
293
    &:hover,
283
    &:focus,
294
    &:focus,
284
    &[aria-selected="true"] {
295
    &[aria-selected="true"] {
285
        background-color: $dropdown-link-active-bg;
296
        background-color: $dropdown-link-active-bg;
286
        color: $dropdown-link-active-color;
297
        color: $dropdown-link-active-color;
287
    }
298
    }
288
    &[aria-disabled="true"] {
299
    &[aria-disabled="true"] {
289
        pointer-events: none;
300
        pointer-events: none;
290
        color: $custom-select-disabled-color;
301
        color: $form-select-disabled-color;
291
        background-color: $custom-select-disabled-bg;
302
        background-color: $form-select-disabled-bg;
292
    }
303
    }
293
    &.suggestions-heading {
304
    &.suggestions-heading {
294
        pointer-events: none;
305
        pointer-events: none;
295
        font-weight: bold;
306
        font-weight: bold;
Línea 409... Línea 420...
409
 
420
 
410
// The autocomplete popup needs a display:block container to correctly position to popup.
421
// The autocomplete popup needs a display:block container to correctly position to popup.
411
.felement[data-fieldtype="autocomplete"],
422
.felement[data-fieldtype="autocomplete"],
412
.felement[data-fieldtype="tags"] {
423
.felement[data-fieldtype="tags"] {
-
 
424
    display: block !important; /* stylelint-disable-line declaration-no-important */
413
    display: block !important; /* stylelint-disable-line declaration-no-important */
425
    position: static;
Línea 414... Línea 426...
414
}
426
}
415
 
427
 
416
// Show editor at 100% width by default.
428
// Show editor at 100% width by default.
Línea 491... Línea 503...
491
            @include border-radius($input-border-radius);
503
            @include border-radius($input-border-radius);
492
        }
504
        }
493
        .form-control-lg:not(:last-child) {
505
        .form-control-lg:not(:last-child) {
494
            @include border-radius($input-border-radius-lg);
506
            @include border-radius($input-border-radius-lg);
495
        }
507
        }
496
        .input-group-append .toggle-sensitive-btn {
508
        .toggle-sensitive-btn {
497
            display: none;
509
            display: none;
498
        }
510
        }
499
    }
511
    }
500
}
512
}