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: theme-color-level("success", -10) !default;
|
|
|
11 |
$state-success-border: theme-color-level("success", -9) !default;
|
|
|
12 |
|
|
|
13 |
$state-info-bg: theme-color-level("info", -10) !default;
|
|
|
14 |
$state-info-border: theme-color-level("info", -9) !default;
|
|
|
15 |
|
|
|
16 |
$state-warning-bg: theme-color-level("warning", -10) !default;
|
|
|
17 |
$state-warning-border: theme-color-level("warning", -10) !default;
|
|
|
18 |
|
|
|
19 |
$state-danger-bg: theme-color-level("danger", -10) !default;
|
|
|
20 |
$state-danger-border: theme-color-level("danger", -9) !default;
|
|
|
21 |
|
|
|
22 |
$primary-nav-padding-y: ($spacer * 0.25) !default;
|
|
|
23 |
$primary-nav-padding-x: ($spacer * 0.5) !default;
|
|
|
24 |
|
|
|
25 |
$navbar-height: 60px !default;
|
|
|
26 |
$stickyfooter-height: calc(max(80px, calc(#{$font-size-base} * 3))) !default;
|
|
|
27 |
$course-content-maxwidth: 830px !default;
|
|
|
28 |
$medium-content-maxwidth: 1120px !default;
|
|
|
29 |
$h5p-content-maxwidth: 960px !default;
|
|
|
30 |
|
|
|
31 |
$box-shadow-drawer-left: -0.25rem .25rem .8rem rgba($black, .025) !default;
|
|
|
32 |
$box-shadow-drawer-right: 0 .25rem .8rem rgba($black, .025) !default;
|
|
|
33 |
|
|
|
34 |
$moremenu-height: 60px !default;
|
|
|
35 |
|
|
|
36 |
$primary-light-background: theme-color-level('primary', -12) !default;
|
|
|
37 |
$primary-light-border: theme-color-level('primary', -2) !default;
|
|
|
38 |
$primary-light-color: $body-color;
|
|
|
39 |
$primary-light-hover: theme-color-level('primary', -10) !default;
|
|
|
40 |
$activity-iconcontainer-height: 52px;
|
|
|
41 |
$activity-iconcontainer-width: 52px;
|
|
|
42 |
|
|
|
43 |
$activity-icon-administration-bg: #da58ef !default;
|
|
|
44 |
$activity-icon-assessment-bg: #f90086 !default;
|
|
|
45 |
$activity-icon-collaboration-bg: #5b40ff !default;
|
|
|
46 |
$activity-icon-communication-bg: #eb6200 !default;
|
|
|
47 |
$activity-icon-content-bg: #0099ad !default;
|
|
|
48 |
$activity-icon-interactivecontent-bg: #8d3d1b !default;
|
|
|
49 |
|
|
|
50 |
$activity-icon-administration-filter:
|
|
|
51 |
invert(45%) sepia(46%) saturate(3819%) hue-rotate(260deg) brightness(101%) contrast(87%) !default;
|
|
|
52 |
$activity-icon-assessment-filter:
|
|
|
53 |
invert(36%) sepia(98%) saturate(6969%) hue-rotate(315deg) brightness(90%) contrast(119%) !default;
|
|
|
54 |
$activity-icon-collaboration-filter:
|
|
|
55 |
invert(25%) sepia(54%) saturate(6226%) hue-rotate(245deg) brightness(100%) contrast(102%) !default;
|
|
|
56 |
$activity-icon-communication-filter:
|
|
|
57 |
invert(48%) sepia(74%) saturate(4887%) hue-rotate(11deg) brightness(102%) contrast(101%) !default;
|
|
|
58 |
$activity-icon-content-filter:
|
|
|
59 |
invert(49%) sepia(52%) saturate(4675%) hue-rotate(156deg) brightness(89%) contrast(102%) !default;
|
|
|
60 |
$activity-icon-interactivecontent-filter:
|
|
|
61 |
invert(25%) sepia(63%) saturate(1152%) hue-rotate(344deg) brightness(94%) contrast(91%) !default;
|
|
|
62 |
|
|
|
63 |
$activity-icon-colors: () !default;
|
|
|
64 |
$activity-icon-colors: map-merge(
|
|
|
65 |
(
|
|
|
66 |
"administration": $activity-icon-administration-filter,
|
|
|
67 |
"assessment": $activity-icon-assessment-filter,
|
|
|
68 |
"collaboration": $activity-icon-collaboration-filter,
|
|
|
69 |
"communication": $activity-icon-communication-filter,
|
|
|
70 |
"content": $activity-icon-content-filter,
|
|
|
71 |
"interactivecontent": $activity-icon-interactivecontent-filter,
|
|
|
72 |
),
|
|
|
73 |
$activity-icon-colors
|
|
|
74 |
);
|
|
|
75 |
|
|
|
76 |
// Atto
|
|
|
77 |
$atto-content-wrap-bg: $white !default;
|
|
|
78 |
$atto-content-wrap-color: #333 !default;
|
|
|
79 |
$atto-toolbar-bg: #f2f2f2 !default;
|
|
|
80 |
$atto-toolbar-border-color: #ccc !default;
|
|
|
81 |
$atto-toolbar-group-bg: $white !default;
|
|
|
82 |
$atto-toolbar-group-border-bottom-color: #b3b3b3 !default;
|
|
|
83 |
$atto-toolbar-button-color: $gray-700 !default;
|
|
|
84 |
$atto-toolbar-button-hover-bg: #ebebeb !default;
|
|
|
85 |
$atto-toolbar-button-active-bg: #dfdfdf !default;
|
|
|
86 |
$atto-toolbar-button-gradient-inner: $white !default;
|
|
|
87 |
$atto-toolbar-button-gradient-outer: #dfdfdf !default;
|
|
|
88 |
$atto-control-icon-bg: $white !default;
|
|
|
89 |
$atto-notif-info: #f2f2f2 !default;
|
|
|
90 |
$atto-notif-warning: #ffd700 !default;
|
|
|
91 |
|
|
|
92 |
|
|
|
93 |
// Backup restore
|
|
|
94 |
$backup-restore-wibbler-border-color: $black !default;
|
|
|
95 |
$backup-restore-state0-bg: #eee !default;
|
|
|
96 |
$backup-restore-state1-bg: #ddd !default;
|
|
|
97 |
$backup-restore-state2-bg: #ccc !default;
|
|
|
98 |
$backup-restore-state3-bg: #bbb !default;
|
|
|
99 |
$backup-restore-state4-bg: #aaa !default;
|
|
|
100 |
$backup-restore-state5-bg: #999 !default;
|
|
|
101 |
$backup-restore-state6-bg: #888 !default;
|
|
|
102 |
$backup-restore-state7-bg: #777 !default;
|
|
|
103 |
$backup-restore-state8-bg: #666 !default;
|
|
|
104 |
$backup-restore-state9-bg: #555 !default;
|
|
|
105 |
$backup-restore-state10-bg: #444 !default;
|
|
|
106 |
$backup-restore-state11-bg: #333 !default;
|
|
|
107 |
$backup-restore-state12-bg: #222 !default;
|
|
|
108 |
|
|
|
109 |
|
|
|
110 |
// Calendar
|
|
|
111 |
$calendar-month-clickable-bg: #ededed !default;
|
|
|
112 |
|
|
|
113 |
|
|
|
114 |
// Chat
|
|
|
115 |
$chat-users-list-img-border-color: #ccc !default;
|
|
|
116 |
|
|
|
117 |
|
|
|
118 |
// Core
|
|
|
119 |
$yui-overlay-bg: #ffee69 !default;
|
|
|
120 |
$yui-overlay-color: $black !default;
|
|
|
121 |
$yui-overlay-border-color: #a6982b !default;
|
|
|
122 |
$yui-overlay-border-top-color: #d4c237 !default;
|
|
|
123 |
|
|
|
124 |
$comment-meta-color: gray !default;
|
|
|
125 |
$comment-paging-current-border-color: #ccc !default;
|
|
|
126 |
|
|
|
127 |
$tags-tagarea-border-color: #e3e3e3 !default;
|
|
|
128 |
$tags-tagarea-title-color: #999 !default;
|
|
|
129 |
$tags-tagarea-title-border-color: #e3e3e3 !default;
|
|
|
130 |
$tags-tagarea-title-text-shadow-color: rgba($white, .5) !default;
|
|
|
131 |
|
|
|
132 |
$webservice-doc-td-border-color: $black !default;
|
|
|
133 |
|
|
|
134 |
$userenrolment-link-hover-border-color: #666 !default;
|
|
|
135 |
|
|
|
136 |
$corelightbox-bg: #ccc !default;
|
|
|
137 |
|
|
|
138 |
$dialogue-base-bg: $white !default;
|
|
|
139 |
$dialogue-base-border-color: #ccc !default;
|
|
|
140 |
$dialogue-base-hd-border-color: #dee2e6 !default;
|
|
|
141 |
|
|
|
142 |
$dialogue-exception-label-bg: #eee !default;
|
|
|
143 |
$dialogue-exception-label-border-color: #ccc !default;
|
|
|
144 |
$dialogue-exception-pre-bg: $white !default;
|
|
|
145 |
$dialogue-exception-pre-border-color: #ccc !default;
|
|
|
146 |
$dialogue-exception-file-color: navy !default;
|
|
|
147 |
$dialogue-exception-call-color: #333 !default;
|
|
|
148 |
$dialogue-exception-call-border-color: #eee !default;
|
|
|
149 |
|
|
|
150 |
$dialogue-lightbox-bg: $white !default;
|
|
|
151 |
|
|
|
152 |
$chooserdialogue-bg: #f2f2f2 !default;
|
|
|
153 |
$chooserdialogue-options-border-color: #bbb !default;
|
|
|
154 |
|
|
|
155 |
$choosercontainer-label-border-color: $white !default;
|
|
|
156 |
$choosercontainer-instruction-bg: $white !default;
|
|
|
157 |
$choosercontainer-chooseform-selected-bg: $white !default;
|
|
|
158 |
|
|
|
159 |
$formlisting-bg: $white !default;
|
|
|
160 |
$formlisting-border-color: #ddd !default;
|
|
|
161 |
|
|
|
162 |
$formlistingmore-bg: whitesmoke !default;
|
|
|
163 |
$formlistingmore-border-color: #ddd !default;
|
|
|
164 |
$formlistingmore-color: #9da0a4 !default;
|
|
|
165 |
|
|
|
166 |
$formlistingrow-bg: #f7f7f9 !default;
|
|
|
167 |
$formlistingrow-border-color: #e1e1e8 !default;
|
|
|
168 |
|
|
|
169 |
$criteria-desc-bg: #f9f9f9 !default;
|
|
|
170 |
$criteria-desc-border-color: #eee !default;
|
|
|
171 |
|
|
|
172 |
$hover-tooltip-bg: $white !default;
|
|
|
173 |
$hover-tooltip-border-color: rgba($black, .2) !default;
|
|
|
174 |
$hover-tooltip-border-top-color: $white !default;
|
|
|
175 |
|
|
|
176 |
$sr-only-active-bg: $white !default;
|
|
|
177 |
|
|
|
178 |
$overlay-icon-bg: rgba($white, .6) !default;
|
|
|
179 |
$overlay-preview-bg: rgba($white, .8) !default;
|
|
|
180 |
|
|
|
181 |
|
|
|
182 |
// Course
|
|
|
183 |
$course-cat-without-actions-color: #333 !default;
|
|
|
184 |
$course-listing-color: #a1a1a8 !default;
|
|
|
185 |
|
|
|
186 |
|
|
|
187 |
// Debug
|
|
|
188 |
$phpinfo-color: $black !default;
|
|
|
189 |
$phpinfo-bg: #ccc !default;
|
|
|
190 |
$phpinfo-border-color: $black !default;
|
|
|
191 |
$phpinfo-e-bg: #ccf !default;
|
|
|
192 |
$phpinfo-h-bg: #99c !default;
|
|
|
193 |
|
|
|
194 |
|
|
|
195 |
// Filemanager
|
|
|
196 |
$filemanager-panel-button-bg: $white !default;
|
|
|
197 |
$filemanager-panel-button-shadow: #999 !default;
|
|
|
198 |
$filemanager-picker-bg: $white !default;
|
|
|
199 |
$filemanager-picker-active-bg: #f2f2f2 !default;
|
|
|
200 |
$filemanager-thumbnail-border-color: $white !default;
|
|
|
201 |
$filemanager-thumbnail-img-border-color: #ddd !default;
|
|
|
202 |
$filemanager-thumbnail-shadow: #ccc !default;
|
|
|
203 |
$filemanager-thumbnail-over-bg: $white !default;
|
|
|
204 |
$filemanager-thumbnail-hover-border-color: #ddd !default;
|
|
|
205 |
$filemanager-thumbnail-hover-shadow: #ccc !default;
|
|
|
206 |
$filemanager-filename-bg: $white !default;
|
|
|
207 |
$filemanager-picker-table-border-color: #bbb !default;
|
|
|
208 |
$filemanager-ygtvfocus-bg: #eee !default;
|
|
|
209 |
$filemanager-picker-thumbnail-bg: $white !default;
|
|
|
210 |
$filemanager-picker-thumbnail-border-color: #ddd !default;
|
|
|
211 |
$filemanager-item-disabled-bg: #ebebe4 !default;
|
|
|
212 |
|
|
|
213 |
$filemanager-yui-table-border-color: #bbb !default;
|
|
|
214 |
$filemanager-yui-table-header-bg: $white !default;
|
|
|
215 |
$filemanager-yui-table-header-border-bottom-color: #ccc !default;
|
|
|
216 |
$filemanager-yui-table-header-border-left-color: $white !default;
|
|
|
217 |
$filemanager-yui-table-header-color: #555 !default;
|
|
|
218 |
$filemanager-yui-table-cell-odd-bg: #f6f6f6 !default;
|
|
|
219 |
$filemanager-yui-table-cell-odd-border-color: #f6f6f6 !default;
|
|
|
220 |
$filemanager-yui-table-cell-even-bg: $white !default;
|
|
|
221 |
$filemanager-yui-table-cell-even-border-color: $white !default;
|
|
|
222 |
|
|
|
223 |
$filemanager-dnd-border-color: #bbb !default;
|
|
|
224 |
$filemanager-dnd-upload-target-bg: $white !default;
|
|
|
225 |
$filemanager-dnd-upload-target-border-color: #fb7979 !default;
|
|
|
226 |
$filemanager-dnd-upload-target-shadow: $white !default;
|
|
|
227 |
$filemanager-dnd-upload-over-bg: $white !default;
|
|
|
228 |
$filemanager-dnd-upload-over-border-color: #6c8cd3 !default;
|
|
|
229 |
|
|
|
230 |
$filemanager-select-bg: #f9f9f9 !default;
|
|
|
231 |
$filemanager-select-border-color: #bbb !default;
|
|
|
232 |
|
|
|
233 |
|
|
|
234 |
// Forms
|
|
|
235 |
$forms-autocomplete-bg: $white !default;
|
|
|
236 |
$forms-adminsettings-border-bottom-color: #e5e5e5 !default;
|
|
|
237 |
|
|
|
238 |
|
|
|
239 |
// Grade
|
|
|
240 |
$grade-manage-action-border-color: #aaa !default;
|
|
|
241 |
$grade-criterion-level-hover-bg: #dff0d8 !default;
|
|
|
242 |
$grade-criterion-level-currentchecked-bg: #fff0f0 !default;
|
|
|
243 |
$grade-criterion-level-checked-bg: #d0ffd0 !default;
|
|
|
244 |
$grade-criterion-level-checked-border-color: #555 !default;
|
|
|
245 |
$grade-criterion-level-delete-bg: #ddd !default;
|
|
|
246 |
$grade-table-td-bg: $white !default;
|
|
|
247 |
$grade-table-toggle-icon-color: #1d2125 !default;
|
|
|
248 |
$grade-badge-bg: #ced4da !default;
|
|
|
249 |
$grade-badge-color: #1d2125 !default;
|
|
|
250 |
$grade-search-hover-color: $white !default;
|
|
|
251 |
$grade-search-container-border-color: #dee2e6 !default;
|
|
|
252 |
|
|
|
253 |
|
|
|
254 |
// Message
|
|
|
255 |
$message-selected-bg: #4f94cd !default;
|
|
|
256 |
$message-selected-color: $white !default;
|
|
|
257 |
$message-preference-table-border-color: #ddd !default;
|
|
|
258 |
$message-notif-area-border-color: #e3e3e3 !default;
|
|
|
259 |
$message-notif-area-timestamp-color: #666 !default;
|
|
|
260 |
$message-clickable-hover-shadow: rgba($black, .3) !default;
|
|
|
261 |
$message-loading-bg: rgba($white, 0.5) !default;
|
|
|
262 |
$message-drawer-shadow: rgba($black, .08) !default;
|
|
|
263 |
|
|
|
264 |
|
|
|
265 |
// Modules
|
|
|
266 |
$modules-badge-bg: #f6f6f6 !default;
|
|
|
267 |
$modules-badge-color: #5b5b5b !default;
|
|
|
268 |
$modules-rating-aggregate-bg: #f6f6f6 !default;
|
|
|
269 |
$modules-rating-aggregate-color: #5b5b5b !default;
|
|
|
270 |
$modules-forum-muted-color: #707070 !default;
|
|
|
271 |
$modules-forum-post-border-color: #dee2e6 !default;
|
|
|
272 |
$modules-highlight-bg: rgba(0, 123, 255, 0.5) !default;
|
|
|
273 |
|
|
|
274 |
|
|
|
275 |
// Moodlenet
|
|
|
276 |
$moodlenet-share-notice-bg: #f8f9fa !default;
|
|
|
277 |
|
|
|
278 |
|
|
|
279 |
// Popover
|
|
|
280 |
$popover-standard-border-color: #ddd !default;
|
|
|
281 |
$popover-region-toggle-border-bottom-color: $white !default;
|
|
|
282 |
$popover-count-color: $white !default;
|
|
|
283 |
$popover-region-container-bg: $white !default;
|
|
|
284 |
|
|
|
285 |
|
|
|
286 |
// Question
|
|
|
287 |
$question-choice-bg: #f2f2f2 !default;
|
|
|
288 |
$question-choice-color: #333 !default;
|
|
|
289 |
$question-choice-text-shadow: $white !default;
|
|
|
290 |
$question-choice-shadow: #666 !default;
|
|
|
291 |
$question-border-color: #ccc !default;
|
|
|
292 |
$question-border-bottom-color: #bbb !default;
|
|
|
293 |
$question-gradient-start-color: $white !default;
|
|
|
294 |
$question-gradient-end-color: #ccc !default;
|
|
|
295 |
$question-type-bg: $white !default;
|
|
|
296 |
$question-type-shadow: #ccc !default;
|
|
|
297 |
$question-import-error-border-color: #555 !default;
|
|
|
298 |
$question-bank-header-color: #444 !default;
|
|
|
299 |
$question-quiz-edit-border-color: #ddd !default;
|
|
|
300 |
|
|
|
301 |
|
|
|
302 |
// Report builder
|
|
|
303 |
$report-audience-border-color: rgba($black, .125) !default;
|
|
|
304 |
|
|
|
305 |
|
|
|
306 |
// User
|
|
|
307 |
$user-loading-icon-bg: rgba($white, 0.7) !default;
|