mirror of
https://github.com/moodle/moodle.git
synced 2025-04-28 11:55:58 +02:00
MDL-81816 core_theme: Refactor theme-color-level for BS5
This commit is contained in:
parent
1938c438ea
commit
d265064d53
7
.upgradenotes/MDL-81816-2024060307371918.yml
Normal file
7
.upgradenotes/MDL-81816-2024060307371918.yml
Normal file
@ -0,0 +1,7 @@
|
||||
issueNumber: MDL-81816
|
||||
notes:
|
||||
theme_boost:
|
||||
- message: >-
|
||||
Bridged theme-color-level using a new shift-color function to prepare
|
||||
for its deprecation in Boostrap 5.
|
||||
type: improved
|
@ -1,5 +1,39 @@
|
||||
/* Bootstrap 5 bridge classes */
|
||||
|
||||
/*
|
||||
* These variables used to bridge the gap between Bootstrap 4 and Bootstrap 5 for
|
||||
* alert and list-group-item.
|
||||
*/
|
||||
|
||||
// Reduces the background color intensity by 80%. This is the definition in BS5.
|
||||
$alert-bg-scale: -80% !default;
|
||||
// Reduces the border color intensity by 70%. This is the definition in BS5.
|
||||
$alert-border-scale: -70% !default;
|
||||
// Increases the text color intensity by 50%. This is the definition in BS5.
|
||||
$alert-color-scale: 50% !default;
|
||||
|
||||
/*
|
||||
* These function used to bridge the gap between Bootstrap 4 and Bootstrap 5 and
|
||||
* and will be located in __functions.scss in Bootstrap 5
|
||||
* This file should be removed as part of MDL-75669.
|
||||
*/
|
||||
|
||||
// Tint a color: mix a color with white based on the provided weight.
|
||||
@function tint-color($color, $weight) {
|
||||
@return mix(white, $color, $weight);
|
||||
}
|
||||
|
||||
// Shade a color: mix a color with black.
|
||||
// This function darkens a given color with black based on the provided weight.
|
||||
@function shade-color($color, $weight) {
|
||||
@return mix(black, $color, $weight);
|
||||
}
|
||||
|
||||
// Shade the color if the weight is positive, else tint it.
|
||||
@function shift-color($color, $weight) {
|
||||
@return if($weight > 0, shade-color($color, $weight), tint-color($color, -$weight));
|
||||
}
|
||||
|
||||
/* These classes are used to bridge the gap between Bootstrap 4 and Bootstrap 5. */
|
||||
/* This file should be removed as part of MDL-75669. */
|
||||
.g-0 {
|
||||
|
@ -6,8 +6,8 @@ $dropzone-border: $gray-900 !default;
|
||||
|
||||
$collapse-list-item-padding-y: 0.5rem !default;
|
||||
$collapse-list-item-padding-x: 1rem !default;
|
||||
$collapse-list-item-hover-bg: theme-color-level('info', -11) !default;
|
||||
$collapse-list-item-hover-border: theme-color-level('info', -9) !default;
|
||||
$collapse-list-item-hover-bg: shift-color($info, -90%) !default;
|
||||
$collapse-list-item-hover-border: shift-color($info, -70%) !default;
|
||||
|
||||
$thin-scroll-bg-thumb: $gray-600 !default;
|
||||
$thin-scroll-bg-hover: $gray-700 !default;
|
||||
@ -2626,11 +2626,11 @@ $picker-emojis-per-row: 7 !default;
|
||||
@each $color, $value in $theme-colors {
|
||||
.alert-#{$color} {
|
||||
a {
|
||||
color: darken(theme-color-level($color, $alert-color-level), 10%);
|
||||
color: darken(shift-color($value, $alert-color-scale), 10%);
|
||||
}
|
||||
// Darken the close button text colour inside notification alerts for better contrast.
|
||||
.btn-close {
|
||||
color: darken(theme-color-level($color, $alert-color-level), 20%);
|
||||
color: darken(shift-color($value, $alert-color-scale), 20%);
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
@ -549,9 +549,9 @@ span.editinstructions {
|
||||
width: fit-content;
|
||||
|
||||
@include alert-variant(
|
||||
theme-color-level('info', $alert-bg-level),
|
||||
theme-color-level('info', $alert-border-level),
|
||||
theme-color-level('info', $alert-color-level)
|
||||
shift-color($info, $alert-bg-scale),
|
||||
shift-color($info, $alert-border-scale),
|
||||
shift-color($info, $alert-color-scale)
|
||||
);
|
||||
}
|
||||
|
||||
@ -1101,9 +1101,9 @@ $divider-hover-color: $primary !default;
|
||||
}
|
||||
@each $color, $value in $theme-colors {
|
||||
&.btn-#{$color} {
|
||||
$bg-color: theme-color-level($color, $alert-bg-level);
|
||||
$bg-color: shift-color($value, $alert-bg-scale);
|
||||
@include button-variant($bg-color, $bg-color, $value);
|
||||
color: theme-color-level($color, $alert-color-level);
|
||||
color: shift-color($value, $alert-color-scale);
|
||||
&:hover {
|
||||
color: color-yiq($value);
|
||||
}
|
||||
@ -1632,8 +1632,8 @@ $divider-hover-color: $primary !default;
|
||||
@include border-radius();
|
||||
font-size: $font-size-sm;
|
||||
font-weight: bold;
|
||||
color: theme-color-level("primary", $alert-color-level);
|
||||
background-color: theme-color-level("primary", $alert-bg-level);
|
||||
color: shift-color($primary, $alert-color-scale);
|
||||
background-color: shift-color($primary, $alert-bg-scale);
|
||||
&:hover,
|
||||
&:focus {
|
||||
color: color-yiq($primary);
|
||||
@ -1758,10 +1758,10 @@ $divider-hover-color: $primary !default;
|
||||
|
||||
&:hover,
|
||||
&:focus {
|
||||
background-color: theme-color-level("primary", $alert-bg-level);
|
||||
background-color: shift-color($primary, $alert-bg-scale);
|
||||
|
||||
a {
|
||||
color: theme-color-level("primary", $alert-color-level);
|
||||
color: shift-color($primary, $alert-color-scale);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -2,8 +2,8 @@ $courseindex-link-color: $list-group-action-color !default;
|
||||
$courseindex-link-color-selected: color-yiq($primary) !default;
|
||||
$courseindex-link-dimmed-color: $gray-600 !default;
|
||||
$courseindex-link-hover-color: black !default;
|
||||
$courseindex-item-dragging-bg: theme-color-level('info', -11) !default;
|
||||
$courseindex-item-dragging-border: theme-color-level('info', -9) !default;
|
||||
$courseindex-item-dragging-bg: shift-color($info, -90%) !default;
|
||||
$courseindex-item-dragging-border: shift-color($info, -70%) !default;
|
||||
$courseindex-item-active-border: $gray-300 !default;
|
||||
$courseindex-item-active-bg: $gray-100 !default;
|
||||
$courseindex-item-page-bg: $primary !default;
|
||||
|
@ -157,7 +157,7 @@
|
||||
margin-right: 28px;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
color: #{theme-color-level('success', 2)};
|
||||
color: #{shift-color($success, 20%)};
|
||||
|
||||
input {
|
||||
margin-bottom: 0;
|
||||
|
@ -1475,7 +1475,7 @@ $popout-header-height: 4rem;
|
||||
margin-bottom: $alert-margin-bottom;
|
||||
border: $alert-border-width solid transparent;
|
||||
@include border-radius($alert-border-radius);
|
||||
@include alert-variant(theme-color-level('info', $alert-bg-level), theme-color-level('info', $alert-border-level), theme-color-level('info', $alert-color-level)); /* stylelint-disable-line max-line-length */
|
||||
@include alert-variant(shift-color($info, $alert-bg-scale), shift-color($info, $alert-border-scale), shift-color($info, $alert-color-scale)); /* stylelint-disable-line max-line-length */
|
||||
}
|
||||
|
||||
.assignfeedback_editpdf_menu {
|
||||
|
@ -315,7 +315,7 @@ body.path-question-type {
|
||||
}
|
||||
.que .outcome,
|
||||
.que .comment {
|
||||
@include alert-variant(theme-color-level('warning', $alert-bg-level), theme-color-level('warning', $alert-border-level), theme-color-level('warning', $alert-color-level - 0.9)); /* stylelint-disable-line max-line-length */
|
||||
@include alert-variant(shift-color($warning, $alert-bg-scale), shift-color($warning, $alert-border-scale), shift-color($warning, $alert-color-scale - 9%)); /* stylelint-disable-line max-line-length */
|
||||
// Darken link colour inside comments for better colour contrast against regular text.
|
||||
a {
|
||||
color: darken($link-color, 30%);
|
||||
@ -323,7 +323,7 @@ body.path-question-type {
|
||||
}
|
||||
|
||||
.que .formulation {
|
||||
@include alert-variant(theme-color-level('info', $alert-bg-level - 1.30), theme-color-level('info', $alert-border-level), theme-color-level('info', $alert-color-level + 4)); /* stylelint-disable-line max-line-length */
|
||||
@include alert-variant(shift-color($info, $alert-bg-scale), shift-color($info, $alert-border-scale), shift-color($info, $alert-color-scale + 40%)); /* stylelint-disable-line max-line-length */
|
||||
}
|
||||
|
||||
.que.multichoice .answer div.r0 .icon.fa-check,
|
||||
@ -354,7 +354,7 @@ body.path-question-type {
|
||||
}
|
||||
|
||||
.que .comment {
|
||||
@include alert-variant(theme-color-level('success', $alert-bg-level), theme-color-level('success', $alert-border-level), theme-color-level('success', $alert-color-level)); /* stylelint-disable-line max-line-length */
|
||||
@include alert-variant(shift-color($success, $alert-bg-scale), shift-color($success, $alert-border-scale), shift-color($success, $alert-color-scale)); /* stylelint-disable-line max-line-length */
|
||||
}
|
||||
|
||||
.que .ablock {
|
||||
|
@ -5,10 +5,11 @@
|
||||
}
|
||||
|
||||
@mixin toast-variant($color) {
|
||||
background-color: rgba(theme-color-level($color, $alert-bg-level), .95);
|
||||
color: theme-color-level($color, $alert-color-level);
|
||||
$color-value: map-get($theme-colors, $color);
|
||||
background-color: rgba(shift-color($color-value, $alert-bg-scale), .95);
|
||||
color: shift-color($color-value, $alert-color-scale);
|
||||
.toast-header {
|
||||
color: theme-color-level($color, $alert-color-level);
|
||||
color: shift-color($color-value, $alert-color-scale);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -7,17 +7,17 @@
|
||||
* preset files instead.
|
||||
*/
|
||||
|
||||
$state-success-bg: theme-color-level("success", -10) !default;
|
||||
$state-success-border: theme-color-level("success", -9) !default;
|
||||
$state-success-bg: shift-color($success, -80%) !default;
|
||||
$state-success-border: shift-color($success, -70%) !default;
|
||||
|
||||
$state-info-bg: theme-color-level("info", -10) !default;
|
||||
$state-info-border: theme-color-level("info", -9) !default;
|
||||
$state-info-bg: shift-color($info, -80%) !default;
|
||||
$state-info-border: shift-color($info, -70%) !default;
|
||||
|
||||
$state-warning-bg: theme-color-level("warning", -10) !default;
|
||||
$state-warning-border: theme-color-level("warning", -10) !default;
|
||||
$state-warning-bg: shift-color($warning, -80%) !default;
|
||||
$state-warning-border: shift-color($warning, -80%) !default;
|
||||
|
||||
$state-danger-bg: theme-color-level("danger", -10) !default;
|
||||
$state-danger-border: theme-color-level("danger", -9) !default;
|
||||
$state-danger-bg: shift-color($danger, -80%) !default;
|
||||
$state-danger-border: shift-color($danger, -70%) !default;
|
||||
|
||||
$primary-nav-padding-y: ($spacer * 0.25) !default;
|
||||
$primary-nav-padding-x: ($spacer * 0.5) !default;
|
||||
@ -33,10 +33,10 @@ $box-shadow-drawer-right: 0 .25rem .8rem rgba($black, .025) !default;
|
||||
|
||||
$moremenu-height: 60px !default;
|
||||
|
||||
$primary-light-background: theme-color-level('primary', -12) !default;
|
||||
$primary-light-border: theme-color-level('primary', -2) !default;
|
||||
$primary-light-background: shift-color($primary, -90%) !default;
|
||||
$primary-light-border: shift-color($primary, -20%) !default;
|
||||
$primary-light-color: $body-color;
|
||||
$primary-light-hover: theme-color-level('primary', -10) !default;
|
||||
$primary-light-hover: shift-color($primary, -80%) !default;
|
||||
$activity-iconcontainer-height: 52px;
|
||||
$activity-iconcontainer-width: 52px;
|
||||
|
||||
|
@ -23002,6 +23002,15 @@ a.text-dark:hover, a.text-dark:focus {
|
||||
}
|
||||
|
||||
/* Bootstrap 5 bridge classes */
|
||||
/*
|
||||
* These variables used to bridge the gap between Bootstrap 4 and Bootstrap 5 for
|
||||
* alert and list-group-item.
|
||||
*/
|
||||
/*
|
||||
* These function used to bridge the gap between Bootstrap 4 and Bootstrap 5 and
|
||||
* and will be located in __functions.scss in Bootstrap 5
|
||||
* This file should be removed as part of MDL-75669.
|
||||
*/
|
||||
/* These classes are used to bridge the gap between Bootstrap 4 and Bootstrap 5. */
|
||||
/* This file should be removed as part of MDL-75669. */
|
||||
/**
|
||||
@ -23261,7 +23270,7 @@ button.btn-close:focus:hover,
|
||||
}
|
||||
|
||||
.bg-primary-light {
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
|
||||
.fitem.advanced .text-info {
|
||||
@ -25592,23 +25601,23 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-primary a {
|
||||
color: #041d34;
|
||||
color: #041c31;
|
||||
}
|
||||
.alert-primary .btn-close {
|
||||
color: #000305;
|
||||
color: #000102;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-secondary a {
|
||||
color: #525557;
|
||||
color: #4e5153;
|
||||
}
|
||||
.alert-secondary .btn-close {
|
||||
color: #393b3d;
|
||||
color: #353739;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-success a, .environmenttable .ok a {
|
||||
color: #0c1b0b;
|
||||
color: #0b190a;
|
||||
}
|
||||
.alert-success .btn-close, .environmenttable .ok .btn-close {
|
||||
color: black;
|
||||
@ -25616,7 +25625,7 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-info a {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
.alert-info .btn-close {
|
||||
color: black;
|
||||
@ -25624,31 +25633,31 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-warning a, .environmenttable .warn a {
|
||||
color: #573e1c;
|
||||
color: #523b1a;
|
||||
}
|
||||
.alert-warning .btn-close, .environmenttable .warn .btn-close {
|
||||
color: #302310;
|
||||
color: #2b1f0e;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-danger a, .environmenttable .error a {
|
||||
color: #3d0f0a;
|
||||
color: #390e09;
|
||||
}
|
||||
.alert-danger .btn-close, .environmenttable .error .btn-close {
|
||||
color: #110403;
|
||||
color: #0d0302;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-light a {
|
||||
color: #686868;
|
||||
color: #636363;
|
||||
}
|
||||
.alert-light .btn-close {
|
||||
color: #4e4e4f;
|
||||
color: #494a4a;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-dark a {
|
||||
color: #040505;
|
||||
color: #030404;
|
||||
}
|
||||
.alert-dark .btn-close {
|
||||
color: black;
|
||||
@ -25918,8 +25927,8 @@ body.dragging .dragging {
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
.collapse-list .collapse-list-item:hover, .collapse-list .collapse-list-item:focus {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
.collapse-list .collapse-list-item-content .collapse-list-item {
|
||||
padding-left: calc(1rem * 3);
|
||||
@ -27369,27 +27378,27 @@ aside[id^=block-region-side-] .block_recentlyaccesseditems .card:nth-of-type(n+4
|
||||
|
||||
.block-add {
|
||||
color: #0f6cbf;
|
||||
background-color: #f5f9fc;
|
||||
border-color: #3584c9;
|
||||
background-color: #e7f0f9;
|
||||
border-color: #3f89cc;
|
||||
border-radius: 0.5rem;
|
||||
width: 100%;
|
||||
border-width: 1px;
|
||||
}
|
||||
.block-add hr {
|
||||
border-top-color: #3077b5;
|
||||
border-top-color: #337cbf;
|
||||
}
|
||||
.block-add .alert-link {
|
||||
color: #0b5190;
|
||||
}
|
||||
.block-add .pluscontainer {
|
||||
border: 1px solid #3584c9;
|
||||
border: 1px solid #3f89cc;
|
||||
border-radius: 50%;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
.block-add:hover {
|
||||
cursor: pointer;
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
.block-add:hover .activity-add-text {
|
||||
text-decoration: underline;
|
||||
@ -28545,15 +28554,15 @@ span.editinstructions {
|
||||
z-index: 9999;
|
||||
border: 0 solid transparent;
|
||||
width: fit-content;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b8dce2;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
span.editinstructions hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
span.editinstructions .alert-link {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
|
||||
/* COURSES LISTINGS AND COURSE SUMMARY */
|
||||
@ -29141,7 +29150,7 @@ span.editinstructions .alert-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
.btn.add-section:hover, .btn.add-section:focus {
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
border: 2px solid #0f6cbf;
|
||||
color: #0f6cbf;
|
||||
}
|
||||
@ -29336,7 +29345,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #cfe2f2;
|
||||
border-color: #cfe2f2;
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-primary:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-primary:hover {
|
||||
@ -29382,7 +29391,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #f5f6f8;
|
||||
border-color: #f5f6f8;
|
||||
color: #6b6e71;
|
||||
color: #676a6d;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-secondary:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-secondary:hover {
|
||||
@ -29428,7 +29437,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #d7e4d6;
|
||||
border-color: #d7e4d6;
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-success:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-success:hover {
|
||||
@ -29474,7 +29483,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #cce6ea;
|
||||
border-color: #cce6ea;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-info:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-info:hover {
|
||||
@ -29520,7 +29529,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #fcefdc;
|
||||
border-color: #fcefdc;
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-warning:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-warning:hover {
|
||||
@ -29566,7 +29575,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #f4d6d2;
|
||||
border-color: #f4d6d2;
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-danger:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-danger:hover {
|
||||
@ -29612,7 +29621,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #fefefe;
|
||||
border-color: #fefefe;
|
||||
color: #818182;
|
||||
color: #7c7d7d;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-light:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-light:hover {
|
||||
@ -29658,7 +29667,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #d6d8d9;
|
||||
border-color: #d6d8d9;
|
||||
color: #1b1e21;
|
||||
color: #1a1d20;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-dark:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-dark:hover {
|
||||
@ -29863,7 +29872,7 @@ span.editinstructions .alert-link {
|
||||
border-radius: 0.5rem;
|
||||
font-size: 0.8203125rem;
|
||||
font-weight: bold;
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
background-color: #cfe2f2;
|
||||
}
|
||||
.btn.add-content:hover, .btn.add-content:focus {
|
||||
@ -29973,7 +29982,7 @@ span.editinstructions .alert-link {
|
||||
background-color: #cfe2f2;
|
||||
}
|
||||
.move-activity-tree .collapse-list-item:hover a, .move-activity-tree .collapse-list-item:focus a {
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
}
|
||||
.move-activity-tree .collapse-list-item a {
|
||||
color: #1d2125;
|
||||
@ -32316,12 +32325,12 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
.que .comment {
|
||||
color: #8e662e;
|
||||
background-color: #fcefdc;
|
||||
border-color: #fbe8cd;
|
||||
border-color: #fbe6ca;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .outcome hr,
|
||||
.que .comment hr {
|
||||
border-top-color: #f9ddb5;
|
||||
border-top-color: #f9dbb2;
|
||||
}
|
||||
.que .outcome .alert-link,
|
||||
.que .comment .alert-link {
|
||||
@ -32333,13 +32342,13 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
}
|
||||
|
||||
.que .formulation {
|
||||
color: #001a1e;
|
||||
background-color: #e7f3f5;
|
||||
border-color: #b8dce2;
|
||||
color: #000d0f;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b3d9e0;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .formulation hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
.que .formulation .alert-link {
|
||||
color: black;
|
||||
@ -32373,16 +32382,16 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
}
|
||||
|
||||
.que .comment {
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
background-color: #d7e4d6;
|
||||
border-color: #c6dac6;
|
||||
border-color: #c2d7c2;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .comment hr {
|
||||
border-top-color: #b7d0b7;
|
||||
border-top-color: #b3cdb3;
|
||||
}
|
||||
.que .comment .alert-link {
|
||||
color: #0c1b0b;
|
||||
color: #0b190a;
|
||||
}
|
||||
|
||||
.que .ablock {
|
||||
@ -33117,7 +33126,7 @@ body.path-question-type .mform fieldset.hidden {
|
||||
|
||||
#adminsettings span.error {
|
||||
display: inline-block;
|
||||
border: 1px solid #f0c5c1;
|
||||
border: 1px solid #efc1bc;
|
||||
border-radius: 4px;
|
||||
background-color: #f4d6d2;
|
||||
padding: 4px;
|
||||
@ -34930,16 +34939,16 @@ img.userpicture {
|
||||
margin-bottom: 1rem;
|
||||
border: 0 solid transparent;
|
||||
border-radius: 0.5rem;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b8dce2;
|
||||
border-color: #b3d9e0;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.assignfeedback_editpdf_widget .label hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
.assignfeedback_editpdf_widget .label .alert-link {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
|
||||
.assignfeedback_editpdf_menu {
|
||||
@ -35610,7 +35619,7 @@ p.arrow_button {
|
||||
|
||||
.btn.btn-icon.icons-collapse-expand {
|
||||
color: #0f6cbf;
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
.btn.btn-icon.icons-collapse-expand:hover {
|
||||
outline: 2px solid #0f6cbf;
|
||||
@ -35815,7 +35824,7 @@ p.arrow_button {
|
||||
margin-right: 28px;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
color: #2d662a;
|
||||
color: #2a6228;
|
||||
}
|
||||
.gradingform_rubric .criterion .score input {
|
||||
margin-bottom: 0;
|
||||
@ -35922,12 +35931,12 @@ p.arrow_button {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode]:focus > .collapse-list-item:first-child {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode][data-selected=true] > .collapse-list-item:first-child {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
color: #0f6cbf;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode] .collapse-list-item-content[aria-hidden=true] {
|
||||
@ -37893,10 +37902,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-success {
|
||||
background-color: rgba(215, 228, 214, 0.95);
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.toast.toast-success .toast-header {
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.toast.toast-success .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37904,10 +37913,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-danger {
|
||||
background-color: rgba(244, 214, 210, 0.95);
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.toast.toast-danger .toast-header {
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.toast.toast-danger .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37915,10 +37924,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-info {
|
||||
background-color: rgba(204, 230, 234, 0.95);
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.toast.toast-info .toast-header {
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.toast.toast-info .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37926,10 +37935,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-warning {
|
||||
background-color: rgba(252, 239, 220, 0.95);
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.toast.toast-warning .toast-header {
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.toast.toast-warning .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -38598,8 +38607,8 @@ div.editor_atto_toolbar button .icon {
|
||||
cursor: move;
|
||||
}
|
||||
.courseindex .courseindex-item.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
border: 1px solid #b3d9e0;
|
||||
background-color: #e6f2f5;
|
||||
}
|
||||
.courseindex .courseindex-item.active {
|
||||
background-color: #f8f9fa;
|
||||
@ -38657,8 +38666,8 @@ div.editor_atto_toolbar button .icon {
|
||||
border-left: solid 3px transparent;
|
||||
}
|
||||
.courseindex .courseindex-section.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
border: 1px solid #b3d9e0;
|
||||
background-color: #e6f2f5;
|
||||
}
|
||||
.courseindex .courseindex-section .current-badge {
|
||||
line-height: 1.5;
|
||||
@ -39004,15 +39013,15 @@ div.editor_atto_toolbar button .icon {
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info {
|
||||
border-radius: 0.5rem;
|
||||
color: #1d2125;
|
||||
background-color: #f5f9fc;
|
||||
border-color: #3584c9;
|
||||
background-color: #e7f0f9;
|
||||
border-color: #3f89cc;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 0.6em 1.5em;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info hr {
|
||||
border-top-color: #3077b5;
|
||||
border-top-color: #337cbf;
|
||||
}
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info .alert-link {
|
||||
color: #070808;
|
||||
|
@ -23002,6 +23002,15 @@ a.text-dark:hover, a.text-dark:focus {
|
||||
}
|
||||
|
||||
/* Bootstrap 5 bridge classes */
|
||||
/*
|
||||
* These variables used to bridge the gap between Bootstrap 4 and Bootstrap 5 for
|
||||
* alert and list-group-item.
|
||||
*/
|
||||
/*
|
||||
* These function used to bridge the gap between Bootstrap 4 and Bootstrap 5 and
|
||||
* and will be located in __functions.scss in Bootstrap 5
|
||||
* This file should be removed as part of MDL-75669.
|
||||
*/
|
||||
/* These classes are used to bridge the gap between Bootstrap 4 and Bootstrap 5. */
|
||||
/* This file should be removed as part of MDL-75669. */
|
||||
/**
|
||||
@ -23261,7 +23270,7 @@ button.btn-close:focus:hover,
|
||||
}
|
||||
|
||||
.bg-primary-light {
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
|
||||
.fitem.advanced .text-info {
|
||||
@ -25592,23 +25601,23 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-primary a {
|
||||
color: #041d34;
|
||||
color: #041c31;
|
||||
}
|
||||
.alert-primary .btn-close {
|
||||
color: #000305;
|
||||
color: #000102;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-secondary a {
|
||||
color: #525557;
|
||||
color: #4e5153;
|
||||
}
|
||||
.alert-secondary .btn-close {
|
||||
color: #393b3d;
|
||||
color: #353739;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-success a, .environmenttable .ok a {
|
||||
color: #0c1b0b;
|
||||
color: #0b190a;
|
||||
}
|
||||
.alert-success .btn-close, .environmenttable .ok .btn-close {
|
||||
color: black;
|
||||
@ -25616,7 +25625,7 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-info a {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
.alert-info .btn-close {
|
||||
color: black;
|
||||
@ -25624,31 +25633,31 @@ input[disabled] {
|
||||
}
|
||||
|
||||
.alert-warning a, .environmenttable .warn a {
|
||||
color: #573e1c;
|
||||
color: #523b1a;
|
||||
}
|
||||
.alert-warning .btn-close, .environmenttable .warn .btn-close {
|
||||
color: #302310;
|
||||
color: #2b1f0e;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-danger a, .environmenttable .error a {
|
||||
color: #3d0f0a;
|
||||
color: #390e09;
|
||||
}
|
||||
.alert-danger .btn-close, .environmenttable .error .btn-close {
|
||||
color: #110403;
|
||||
color: #0d0302;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-light a {
|
||||
color: #686868;
|
||||
color: #636363;
|
||||
}
|
||||
.alert-light .btn-close {
|
||||
color: #4e4e4f;
|
||||
color: #494a4a;
|
||||
opacity: 0.6;
|
||||
}
|
||||
|
||||
.alert-dark a {
|
||||
color: #040505;
|
||||
color: #030404;
|
||||
}
|
||||
.alert-dark .btn-close {
|
||||
color: black;
|
||||
@ -25918,8 +25927,8 @@ body.dragging .dragging {
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
.collapse-list .collapse-list-item:hover, .collapse-list .collapse-list-item:focus {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
.collapse-list .collapse-list-item-content .collapse-list-item {
|
||||
padding-left: calc(1rem * 3);
|
||||
@ -27369,27 +27378,27 @@ aside[id^=block-region-side-] .block_recentlyaccesseditems .card:nth-of-type(n+4
|
||||
|
||||
.block-add {
|
||||
color: #0f6cbf;
|
||||
background-color: #f5f9fc;
|
||||
border-color: #3584c9;
|
||||
background-color: #e7f0f9;
|
||||
border-color: #3f89cc;
|
||||
border-radius: 0.25rem;
|
||||
width: 100%;
|
||||
border-width: 1px;
|
||||
}
|
||||
.block-add hr {
|
||||
border-top-color: #3077b5;
|
||||
border-top-color: #337cbf;
|
||||
}
|
||||
.block-add .alert-link {
|
||||
color: #0b5190;
|
||||
}
|
||||
.block-add .pluscontainer {
|
||||
border: 1px solid #3584c9;
|
||||
border: 1px solid #3f89cc;
|
||||
border-radius: 50%;
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
}
|
||||
.block-add:hover {
|
||||
cursor: pointer;
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
.block-add:hover .activity-add-text {
|
||||
text-decoration: underline;
|
||||
@ -28545,15 +28554,15 @@ span.editinstructions {
|
||||
z-index: 9999;
|
||||
border: 0 solid transparent;
|
||||
width: fit-content;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b8dce2;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
span.editinstructions hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
span.editinstructions .alert-link {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
|
||||
/* COURSES LISTINGS AND COURSE SUMMARY */
|
||||
@ -29141,7 +29150,7 @@ span.editinstructions .alert-link {
|
||||
font-weight: bold;
|
||||
}
|
||||
.btn.add-section:hover, .btn.add-section:focus {
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
border: 2px solid #0f6cbf;
|
||||
color: #0f6cbf;
|
||||
}
|
||||
@ -29336,7 +29345,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #cfe2f2;
|
||||
border-color: #cfe2f2;
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-primary:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-primary:hover {
|
||||
@ -29382,7 +29391,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #f5f6f8;
|
||||
border-color: #f5f6f8;
|
||||
color: #6b6e71;
|
||||
color: #676a6d;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-secondary:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-secondary:hover {
|
||||
@ -29428,7 +29437,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #d7e4d6;
|
||||
border-color: #d7e4d6;
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-success:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-success:hover {
|
||||
@ -29474,7 +29483,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #cce6ea;
|
||||
border-color: #cce6ea;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-info:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-info:hover {
|
||||
@ -29520,7 +29529,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #fcefdc;
|
||||
border-color: #fcefdc;
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-warning:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-warning:hover {
|
||||
@ -29566,7 +29575,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #f4d6d2;
|
||||
border-color: #f4d6d2;
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-danger:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-danger:hover {
|
||||
@ -29612,7 +29621,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #fefefe;
|
||||
border-color: #fefefe;
|
||||
color: #818182;
|
||||
color: #7c7d7d;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-light:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-light:hover {
|
||||
@ -29658,7 +29667,7 @@ span.editinstructions .alert-link {
|
||||
color: #1d2125;
|
||||
background-color: #d6d8d9;
|
||||
border-color: #d6d8d9;
|
||||
color: #1b1e21;
|
||||
color: #1a1d20;
|
||||
}
|
||||
.activity-item .activity-completion button.btn-dark:hover,
|
||||
.activity-item .activity-completion a[role=button].btn-dark:hover {
|
||||
@ -29863,7 +29872,7 @@ span.editinstructions .alert-link {
|
||||
border-radius: 0.25rem;
|
||||
font-size: 0.8203125rem;
|
||||
font-weight: bold;
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
background-color: #cfe2f2;
|
||||
}
|
||||
.btn.add-content:hover, .btn.add-content:focus {
|
||||
@ -29973,7 +29982,7 @@ span.editinstructions .alert-link {
|
||||
background-color: #cfe2f2;
|
||||
}
|
||||
.move-activity-tree .collapse-list-item:hover a, .move-activity-tree .collapse-list-item:focus a {
|
||||
color: #083863;
|
||||
color: #083660;
|
||||
}
|
||||
.move-activity-tree .collapse-list-item a {
|
||||
color: #1d2125;
|
||||
@ -32316,12 +32325,12 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
.que .comment {
|
||||
color: #8e662e;
|
||||
background-color: #fcefdc;
|
||||
border-color: #fbe8cd;
|
||||
border-color: #fbe6ca;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .outcome hr,
|
||||
.que .comment hr {
|
||||
border-top-color: #f9ddb5;
|
||||
border-top-color: #f9dbb2;
|
||||
}
|
||||
.que .outcome .alert-link,
|
||||
.que .comment .alert-link {
|
||||
@ -32333,13 +32342,13 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
}
|
||||
|
||||
.que .formulation {
|
||||
color: #001a1e;
|
||||
background-color: #e7f3f5;
|
||||
border-color: #b8dce2;
|
||||
color: #000d0f;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b3d9e0;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .formulation hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
.que .formulation .alert-link {
|
||||
color: black;
|
||||
@ -32373,16 +32382,16 @@ body.path-question-type .fitem .col-form-label.sr-only:not(legend):not([for=id_c
|
||||
}
|
||||
|
||||
.que .comment {
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
background-color: #d7e4d6;
|
||||
border-color: #c6dac6;
|
||||
border-color: #c2d7c2;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.que .comment hr {
|
||||
border-top-color: #b7d0b7;
|
||||
border-top-color: #b3cdb3;
|
||||
}
|
||||
.que .comment .alert-link {
|
||||
color: #0c1b0b;
|
||||
color: #0b190a;
|
||||
}
|
||||
|
||||
.que .ablock {
|
||||
@ -33117,7 +33126,7 @@ body.path-question-type .mform fieldset.hidden {
|
||||
|
||||
#adminsettings span.error {
|
||||
display: inline-block;
|
||||
border: 1px solid #f0c5c1;
|
||||
border: 1px solid #efc1bc;
|
||||
border-radius: 4px;
|
||||
background-color: #f4d6d2;
|
||||
padding: 4px;
|
||||
@ -34930,16 +34939,16 @@ img.userpicture {
|
||||
margin-bottom: 1rem;
|
||||
border: 0 solid transparent;
|
||||
border-radius: 0.25rem;
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
background-color: #cce6ea;
|
||||
border-color: #b8dce2;
|
||||
border-color: #b3d9e0;
|
||||
/* stylelint-disable-line max-line-length */
|
||||
}
|
||||
.assignfeedback_editpdf_widget .label hr {
|
||||
border-top-color: #a6d3db;
|
||||
border-top-color: #a1d0d9;
|
||||
}
|
||||
.assignfeedback_editpdf_widget .label .alert-link {
|
||||
color: #00171b;
|
||||
color: #001518;
|
||||
}
|
||||
|
||||
.assignfeedback_editpdf_menu {
|
||||
@ -35610,7 +35619,7 @@ p.arrow_button {
|
||||
|
||||
.btn.btn-icon.icons-collapse-expand {
|
||||
color: #0f6cbf;
|
||||
background-color: #f5f9fc;
|
||||
background-color: #e7f0f9;
|
||||
}
|
||||
.btn.btn-icon.icons-collapse-expand:hover {
|
||||
outline: 2px solid #0f6cbf;
|
||||
@ -35815,7 +35824,7 @@ p.arrow_button {
|
||||
margin-right: 28px;
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
color: #2d662a;
|
||||
color: #2a6228;
|
||||
}
|
||||
.gradingform_rubric .criterion .score input {
|
||||
margin-bottom: 0;
|
||||
@ -35922,12 +35931,12 @@ p.arrow_button {
|
||||
padding-left: 2rem;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode]:focus > .collapse-list-item:first-child {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode][data-selected=true] > .collapse-list-item:first-child {
|
||||
background-color: #e0f0f2;
|
||||
border-color: #b8dce2;
|
||||
background-color: #e6f2f5;
|
||||
border-color: #b3d9e0;
|
||||
color: #0f6cbf;
|
||||
}
|
||||
.path-grade-edit-tree .collapse-list .unlist [data-for=sectionnode] .collapse-list-item-content[aria-hidden=true] {
|
||||
@ -37827,10 +37836,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-success {
|
||||
background-color: rgba(215, 228, 214, 0.95);
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.toast.toast-success .toast-header {
|
||||
color: #1c3f1a;
|
||||
color: #1b3d19;
|
||||
}
|
||||
.toast.toast-success .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37838,10 +37847,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-danger {
|
||||
background-color: rgba(244, 214, 210, 0.95);
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.toast.toast-danger .toast-header {
|
||||
color: #691911;
|
||||
color: #651910;
|
||||
}
|
||||
.toast.toast-danger .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37849,10 +37858,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-info {
|
||||
background-color: rgba(204, 230, 234, 0.95);
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.toast.toast-info .toast-header {
|
||||
color: #00434e;
|
||||
color: #00414b;
|
||||
}
|
||||
.toast.toast-info .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -37860,10 +37869,10 @@ div.editor_atto_toolbar button .icon {
|
||||
}
|
||||
.toast.toast-warning {
|
||||
background-color: rgba(252, 239, 220, 0.95);
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.toast.toast-warning .toast-header {
|
||||
color: #7d5a29;
|
||||
color: #785727;
|
||||
}
|
||||
.toast.toast-warning .toast-body:before {
|
||||
margin: 2px 5px 0 0;
|
||||
@ -38532,8 +38541,8 @@ div.editor_atto_toolbar button .icon {
|
||||
cursor: move;
|
||||
}
|
||||
.courseindex .courseindex-item.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
border: 1px solid #b3d9e0;
|
||||
background-color: #e6f2f5;
|
||||
}
|
||||
.courseindex .courseindex-item.active {
|
||||
background-color: #f8f9fa;
|
||||
@ -38591,8 +38600,8 @@ div.editor_atto_toolbar button .icon {
|
||||
border-left: solid 3px transparent;
|
||||
}
|
||||
.courseindex .courseindex-section.dragging {
|
||||
border: 1px solid #b8dce2;
|
||||
background-color: #e0f0f2;
|
||||
border: 1px solid #b3d9e0;
|
||||
background-color: #e6f2f5;
|
||||
}
|
||||
.courseindex .courseindex-section .current-badge {
|
||||
line-height: 1.5;
|
||||
@ -38938,15 +38947,15 @@ div.editor_atto_toolbar button .icon {
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info {
|
||||
border-radius: 0.25rem;
|
||||
color: #1d2125;
|
||||
background-color: #f5f9fc;
|
||||
border-color: #3584c9;
|
||||
background-color: #e7f0f9;
|
||||
border-color: #3f89cc;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
padding: 0.6em 1.5em;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info hr {
|
||||
border-top-color: #3077b5;
|
||||
border-top-color: #337cbf;
|
||||
}
|
||||
.moodlenet-share-dialog .modal-body .moodlenet-share-activity-info .alert-link {
|
||||
color: #070808;
|
||||
|
Loading…
x
Reference in New Issue
Block a user