| 1 | efrain | 1 | /**
 | 
        
           |  |  | 2 |  * Moodle variables
 | 
        
           |  |  | 3 |  *
 | 
        
           |  |  | 4 |  * Variables written for Moodle specific components
 | 
        
           |  |  | 5 |  *
 | 
        
           |  |  | 6 |  * Please do not override any Bootstrap variables here, custom Bootstrap variable should go in
 | 
        
           |  |  | 7 |  * preset files instead.
 | 
        
           |  |  | 8 |  */
 | 
        
           |  |  | 9 |   | 
        
           |  |  | 10 | $state-success-bg: $green-100 !default;
 | 
        
           |  |  | 11 | $state-success-border: $green-600 !default;
 | 
        
           |  |  | 12 |   | 
        
           |  |  | 13 | $state-info-bg: $blue-100 !default;
 | 
        
           |  |  | 14 | $state-info-border: $blue-600 !default;
 | 
        
           |  |  | 15 |   | 
        
           |  |  | 16 | $state-warning-bg: $yellow-200 !default;
 | 
        
           |  |  | 17 | $state-warning-border: $yellow-600 !default;
 | 
        
           |  |  | 18 |   | 
        
           |  |  | 19 | $state-danger-bg: $red-100 !default;
 | 
        
           |  |  | 20 | $state-danger-border: $red-600 !default;
 | 
        
           |  |  | 21 |   | 
        
           |  |  | 22 |   | 
        
           |  |  | 23 | $primary-nav-padding-y: ($spacer * 0.25) !default;
 | 
        
           |  |  | 24 | $primary-nav-padding-x: ($spacer * 0.5) !default;
 | 
        
           |  |  | 25 |   | 
        
           |  |  | 26 | $course-content-maxwidth: $wrapper-md !default;
 | 
        
           |  |  | 27 | $h5p-content-maxwidth: 960px !default;
 | 
        
           |  |  | 28 |   | 
        
           |  |  | 29 | $box-shadow-drawer-left: -0.25rem .25rem .8rem rgba($black, .025) !default;
 | 
        
           |  |  | 30 | $box-shadow-drawer-right: 0 .25rem .8rem rgba($black, .025) !default;
 | 
        
           |  |  | 31 |   | 
        
           |  |  | 32 | $stickyfooter-height: 60px !default;
 | 
        
           |  |  | 33 | $moremenu-height: 60px !default;
 | 
        
           |  |  | 34 |   | 
        
           |  |  | 35 | $primary-light-background: theme-color-level('primary', -12) !default;
 | 
        
           |  |  | 36 | $primary-light-border: theme-color-level('primary', -2) !default;
 | 
        
           |  |  | 37 | $primary-light-color: $body-color;
 | 
        
           |  |  | 38 | $primary-light-hover: theme-color-level('primary', -10) !default;
 | 
        
           |  |  | 39 | $activity-iconcontainer-height: 40px;
 | 
        
           |  |  | 40 | $activity-iconcontainer-width: 40px;
 | 
        
           |  |  | 41 |   | 
        
           |  |  | 42 | $icon-color-administraion: #5d63f6 !default;
 | 
        
           |  |  | 43 | $icon-color-assessment: #eb66a2 !default;
 | 
        
           |  |  | 44 | $icon-color-collaboration: #f7634d !default;
 | 
        
           |  |  | 45 | $icon-color-communication: #11a676 !default;
 | 
        
           |  |  | 46 | $icon-color-content: #399be2 !default;
 | 
        
           |  |  | 47 | $icon-color-interface: #a378ff !default;
 | 
        
           |  |  | 48 |   | 
        
           |  |  | 49 | $activity-icon-colors: () !default;
 | 
        
           |  |  | 50 | $activity-icon-colors: map-merge(
 | 
        
           |  |  | 51 |     (
 | 
        
           |  |  | 52 |         "administration": $icon-color-administraion,
 | 
        
           |  |  | 53 |         "assessment": $icon-color-assessment,
 | 
        
           |  |  | 54 |         "collaboration": $icon-color-collaboration,
 | 
        
           |  |  | 55 |         "communication": $icon-color-communication,
 | 
        
           |  |  | 56 |         "content": $icon-color-content,
 | 
        
           |  |  | 57 |         "interface": $icon-color-interface
 | 
        
           |  |  | 58 |     ),
 | 
        
           |  |  | 59 |     $activity-icon-colors
 | 
        
           |  |  | 60 | );
 |