HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/i/e/s/iestorre/moodleAW/moodle310/theme/boost/scss/moodle/bs2-compat.scss
// Some - backwards compatibility for BS2. We may have plugins and user content targeted for BS2.

// Well -> Panel -> Card. We skipped panel (BS3) so lets just support well and card.
.well {
    @extend .card;
}

// Some things just got renamed.
.img-responsive {
    @extend .img-fluid;
}

.text-error {
    @extend .text-danger;
}

.btn-default {
    @extend .btn-secondary;
}

// Labels and badges.

.label {
    @extend .tag;
    @include tag-variant($tag-default-bg);
}

.label-success {
    @include tag-variant($tag-success-bg);
}

.label-info {
    @include tag-variant($tag-info-bg);
}

.label-warning {
    @include tag-variant($tag-warning-bg);
}

.label-important {
    @include tag-variant($tag-danger-bg);
}

.badge {
    @extend .tag;
    @include tag-variant($tag-default-bg);
    @include border-radius($font-size-root / 2);
}

.badge-success {
    @include tag-variant($tag-success-bg);
}

.badge-info {
    @include tag-variant($tag-info-bg);
}

.badge-warning {
    @include tag-variant($tag-warning-bg);
}

.badge-important {
    @include tag-variant($tag-danger-bg);
}

// Floats.
.pull-left {
    @include pull-left();
}

.pull-right {
    @include pull-right();
}