@oat-sa/tao-core-ui 1.5.4 → 1.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist/ckeditor/ckConfigurator.js +9 -1
  2. package/dist/mediaEditor/mediaEditorComponent.js +5 -3
  3. package/dist/mediaEditor/plugins/mediaDimension/mediaDimensionComponent.js +46 -25
  4. package/dist/mediaplayer/css/player.css +104 -14
  5. package/dist/mediaplayer/css/player.css.map +1 -1
  6. package/dist/mediaplayer/players/html5.js +767 -0
  7. package/dist/mediaplayer/players/youtube.js +470 -0
  8. package/dist/mediaplayer/players.js +35 -0
  9. package/dist/mediaplayer/support.js +134 -0
  10. package/dist/mediaplayer/utils/reminder.js +198 -0
  11. package/dist/mediaplayer/utils/timeObserver.js +149 -0
  12. package/dist/mediaplayer/youtubeManager.js +177 -0
  13. package/dist/mediaplayer.js +1251 -1912
  14. package/dist/previewer.js +25 -19
  15. package/package.json +1 -1
  16. package/scss/basic.scss +1 -0
  17. package/scss/inc/_jquery.nouislider.scss +254 -0
  18. package/src/ckeditor/ckConfigurator.js +10 -1
  19. package/src/itemButtonList/css/item-button-list.css +225 -0
  20. package/src/itemButtonList/css/item-button-list.css.map +1 -0
  21. package/src/mediaEditor/mediaEditorComponent.js +25 -26
  22. package/src/mediaEditor/plugins/mediaDimension/mediaDimensionComponent.js +83 -63
  23. package/src/mediaplayer/css/player.css +104 -14
  24. package/src/mediaplayer/css/player.css.map +1 -1
  25. package/src/mediaplayer/players/html5.js +564 -0
  26. package/src/mediaplayer/players/youtube.js +323 -0
  27. package/src/mediaplayer/players.js +29 -0
  28. package/src/mediaplayer/scss/player.scss +125 -16
  29. package/src/mediaplayer/support.js +126 -0
  30. package/src/mediaplayer/tpl/audio.tpl +6 -0
  31. package/src/mediaplayer/tpl/player.tpl +11 -32
  32. package/src/mediaplayer/tpl/source.tpl +1 -0
  33. package/src/mediaplayer/tpl/video.tpl +6 -0
  34. package/src/mediaplayer/tpl/youtube.tpl +1 -0
  35. package/src/mediaplayer/utils/reminder.js +184 -0
  36. package/src/mediaplayer/utils/timeObserver.js +143 -0
  37. package/src/mediaplayer/youtubeManager.js +161 -0
  38. package/src/mediaplayer.js +1217 -1901
  39. package/src/previewer.js +40 -33
  40. package/src/searchModal/css/advancedSearch.css +190 -0
  41. package/src/searchModal/css/advancedSearch.css.map +1 -0
  42. package/src/searchModal/css/searchModal.css +506 -0
  43. package/src/searchModal/css/searchModal.css.map +1 -0
@@ -0,0 +1,506 @@
1
+ /*
2
+ Usage:
3
+ - linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
4
+ if 3 colors used then the position of each will be 33,33%
5
+ - linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
6
+ first param - color, second - position. Also you can use px or other valid units for set position.
7
+ */
8
+ /* Do not edit */
9
+ .section-container {
10
+ top: 0 !important;
11
+ }
12
+
13
+ .section-container .flex-container-full {
14
+ -ms-order: 0;
15
+ order: 0;
16
+ flex-item-align: stretch;
17
+ align-self: stretch;
18
+ flex: 0 0 100%;
19
+ }
20
+
21
+ .section-container .flex-container-half {
22
+ -ms-order: 0;
23
+ order: 0;
24
+ flex-item-align: stretch;
25
+ align-self: stretch;
26
+ flex: 0 0 50%;
27
+ }
28
+
29
+ .section-container .flex-container-third {
30
+ -ms-order: 0;
31
+ order: 0;
32
+ flex-item-align: stretch;
33
+ align-self: stretch;
34
+ flex: 0 0 33.33333%;
35
+ }
36
+
37
+ .section-container .flex-container-quarter {
38
+ -ms-order: 0;
39
+ order: 0;
40
+ flex-item-align: stretch;
41
+ align-self: stretch;
42
+ flex: 0 0 25%;
43
+ }
44
+
45
+ .section-container .flex-container-remaining {
46
+ -ms-order: 0;
47
+ order: 0;
48
+ flex-item-align: stretch;
49
+ align-self: stretch;
50
+ flex: 1 1 480px;
51
+ }
52
+
53
+ .section-container .flex-container-main-form {
54
+ -ms-order: 0;
55
+ order: 0;
56
+ flex-item-align: stretch;
57
+ align-self: stretch;
58
+ flex: 0 0 500px;
59
+ margin: 0 20px 20px 0;
60
+ width: 100%;
61
+ }
62
+
63
+ .section-container .flex-container-main-form .form-content {
64
+ max-width: 100%;
65
+ }
66
+
67
+ .section-container .flex-container-navi {
68
+ -ms-order: 0;
69
+ order: 0;
70
+ flex-item-align: stretch;
71
+ align-self: stretch;
72
+ flex: 0 0 280px;
73
+ }
74
+
75
+ .section-container .section-header {
76
+ border: none;
77
+ }
78
+
79
+ .section-container .content-panel {
80
+ width: 100%;
81
+ height: 100%;
82
+ margin: 0;
83
+ padding: 0;
84
+ border: none !important;
85
+ display: -ms-flex;
86
+ display: flex;
87
+ flex-direction: row;
88
+ flex-wrap: nowrap;
89
+ justify-content: flex-start;
90
+ align-content: flex-start;
91
+ align-items: stretch;
92
+ }
93
+
94
+ .section-container .tab-container {
95
+ border: none;
96
+ display: none;
97
+ list-style-type: none;
98
+ padding: 0;
99
+ margin: 0;
100
+ }
101
+
102
+ .section-container .tab-container li {
103
+ float: left;
104
+ position: relative;
105
+ top: 0;
106
+ padding: 0;
107
+ margin: 0 1px 0px 0;
108
+ border-top: 1px solid #f3f1ef !important;
109
+ border-bottom: 1px solid #f3f1ef !important;
110
+ background: #f3f1ef !important;
111
+ }
112
+
113
+ .section-container .tab-container li a {
114
+ top: 0 !important;
115
+ margin-bottom: 0 !important;
116
+ padding: 6px 16px;
117
+ text-decoration: none;
118
+ min-height: 32px;
119
+ color: #222;
120
+ float: left;
121
+ }
122
+
123
+ .section-container .tab-container li.active, .section-container .tab-container li:hover {
124
+ border-bottom-color: #4a86ad !important;
125
+ border-top-color: #6e9ebd !important;
126
+ background: #266d9c !important;
127
+ }
128
+
129
+ .section-container .tab-container li.active a, .section-container .tab-container li:hover a {
130
+ background: transparent !important;
131
+ border-color: transparent !important;
132
+ color: white !important;
133
+ text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
134
+ }
135
+
136
+ .section-container .tab-container li.disabled:hover {
137
+ background: #f3f1ef !important;
138
+ }
139
+
140
+ .section-container .tab-container li.disabled:hover a {
141
+ cursor: not-allowed !important;
142
+ color: #222 !important;
143
+ }
144
+
145
+ .section-container .ui-container {
146
+ display: none;
147
+ background: #f3f1ef;
148
+ -ms-order: 0;
149
+ order: 0;
150
+ flex-item-align: stretch;
151
+ align-self: stretch;
152
+ flex: 0 0 280px;
153
+ border-right: 1px #ddd solid;
154
+ }
155
+
156
+ .section-container .ui-container .block-title {
157
+ font-size: 14px;
158
+ font-size: 1.4rem;
159
+ padding: 2px 8px;
160
+ margin: 0;
161
+ }
162
+
163
+ .section-container .ui-container .tree-action-bar-box {
164
+ margin: 10px 0;
165
+ opacity: 0;
166
+ }
167
+
168
+ .section-container .ui-container .tree-action-bar-box.active {
169
+ opacity: 1;
170
+ -webkit-opacity: 0.25s ease-in-out;
171
+ -moz-opacity: 0.25s ease-in-out;
172
+ opacity: 0.25s ease-in-out;
173
+ }
174
+
175
+ .section-container .content-container {
176
+ border: none;
177
+ -ms-order: 0;
178
+ order: 0;
179
+ flex-item-align: stretch;
180
+ align-self: stretch;
181
+ flex: 1 1 auto;
182
+ flex: 1 1;
183
+ overflow: auto;
184
+ }
185
+
186
+ .section-container .content-block {
187
+ padding: 20px;
188
+ overflow-y: auto;
189
+ display: -ms-flex;
190
+ display: flex;
191
+ flex-direction: row;
192
+ flex-wrap: wrap;
193
+ justify-content: flex-start;
194
+ align-content: flex-start;
195
+ align-items: stretch;
196
+ }
197
+
198
+ .section-container .content-block > .grid-container {
199
+ width: 100%;
200
+ }
201
+
202
+ .section-container .content-block .data-container-wrapper {
203
+ padding: 0px 20px 0 0;
204
+ }
205
+
206
+ .section-container .content-block .data-container-wrapper:before, .section-container .content-block .data-container-wrapper:after {
207
+ content: ' ';
208
+ display: table;
209
+ }
210
+
211
+ .section-container .content-block .data-container-wrapper:after {
212
+ clear: both;
213
+ }
214
+
215
+ .section-container .content-block .data-container-wrapper > section,
216
+ .section-container .content-block .data-container-wrapper .data-container {
217
+ width: 260px;
218
+ margin: 0 20px 20px 0;
219
+ float: left;
220
+ border: 1px solid #ddd;
221
+ border-radius: 2px;
222
+ -webkit-border-radius: 2px;
223
+ }
224
+
225
+ .section-container .content-block .data-container-wrapper > section.double,
226
+ .section-container .content-block .data-container-wrapper .data-container.double {
227
+ width: 540px;
228
+ }
229
+
230
+ .section-container .content-block .data-container-wrapper > section .emptyContentFooter,
231
+ .section-container .content-block .data-container-wrapper .data-container .emptyContentFooter {
232
+ display: none;
233
+ }
234
+
235
+ .section-container .content-block .data-container-wrapper > section .tree,
236
+ .section-container .content-block .data-container-wrapper .data-container .tree {
237
+ border: none;
238
+ max-width: none;
239
+ max-height: none;
240
+ }
241
+
242
+ .section-container .content-block .data-container-wrapper > section form,
243
+ .section-container .content-block .data-container-wrapper .data-container form {
244
+ background: none;
245
+ border: none;
246
+ margin: 0;
247
+ padding: 0;
248
+ }
249
+
250
+ .section-container .content-block .data-container-wrapper > section > header,
251
+ .section-container .content-block .data-container-wrapper > section .ui-widget-header,
252
+ .section-container .content-block .data-container-wrapper .data-container > header,
253
+ .section-container .content-block .data-container-wrapper .data-container .ui-widget-header {
254
+ background: #f3f1ef;
255
+ border-width: 0px !important;
256
+ border-bottom: 1px #ddd solid !important;
257
+ }
258
+
259
+ .section-container .content-block .data-container-wrapper > section > header h1,
260
+ .section-container .content-block .data-container-wrapper > section > header h6,
261
+ .section-container .content-block .data-container-wrapper > section .ui-widget-header h1,
262
+ .section-container .content-block .data-container-wrapper > section .ui-widget-header h6,
263
+ .section-container .content-block .data-container-wrapper .data-container > header h1,
264
+ .section-container .content-block .data-container-wrapper .data-container > header h6,
265
+ .section-container .content-block .data-container-wrapper .data-container .ui-widget-header h1,
266
+ .section-container .content-block .data-container-wrapper .data-container .ui-widget-header h6 {
267
+ padding: 4px;
268
+ margin: 0;
269
+ font-size: 14px;
270
+ font-size: 1.4rem;
271
+ }
272
+
273
+ .section-container .content-block .data-container-wrapper > section > div,
274
+ .section-container .content-block .data-container-wrapper > section .ui-widget-content,
275
+ .section-container .content-block .data-container-wrapper > section .container-content,
276
+ .section-container .content-block .data-container-wrapper .data-container > div,
277
+ .section-container .content-block .data-container-wrapper .data-container .ui-widget-content,
278
+ .section-container .content-block .data-container-wrapper .data-container .container-content {
279
+ border-width: 0px !important;
280
+ overflow-y: auto;
281
+ min-height: 250px;
282
+ padding: 5px;
283
+ }
284
+
285
+ .section-container .content-block .data-container-wrapper > section > div .icon-grip,
286
+ .section-container .content-block .data-container-wrapper > section .ui-widget-content .icon-grip,
287
+ .section-container .content-block .data-container-wrapper > section .container-content .icon-grip,
288
+ .section-container .content-block .data-container-wrapper .data-container > div .icon-grip,
289
+ .section-container .content-block .data-container-wrapper .data-container .ui-widget-content .icon-grip,
290
+ .section-container .content-block .data-container-wrapper .data-container .container-content .icon-grip {
291
+ cursor: move;
292
+ }
293
+
294
+ .section-container .content-block .data-container-wrapper > section > footer,
295
+ .section-container .content-block .data-container-wrapper .data-container > footer {
296
+ min-height: 33px;
297
+ }
298
+
299
+ .section-container .content-block .data-container-wrapper > section > footer,
300
+ .section-container .content-block .data-container-wrapper > section .data-container-footer,
301
+ .section-container .content-block .data-container-wrapper .data-container > footer,
302
+ .section-container .content-block .data-container-wrapper .data-container .data-container-footer {
303
+ background: #f3f1ef;
304
+ text-align: right !important;
305
+ padding: 4px;
306
+ border-width: 0px !important;
307
+ border-top: 1px #ddd solid !important;
308
+ }
309
+
310
+ .section-container .content-block .data-container-wrapper > section > footer .square,
311
+ .section-container .content-block .data-container-wrapper > section .data-container-footer .square,
312
+ .section-container .content-block .data-container-wrapper .data-container > footer .square,
313
+ .section-container .content-block .data-container-wrapper .data-container .data-container-footer .square {
314
+ width: 28px;
315
+ }
316
+
317
+ .section-container .content-block .data-container-wrapper > section > footer .square span,
318
+ .section-container .content-block .data-container-wrapper > section .data-container-footer .square span,
319
+ .section-container .content-block .data-container-wrapper .data-container > footer .square span,
320
+ .section-container .content-block .data-container-wrapper .data-container .data-container-footer .square span {
321
+ padding: 0;
322
+ left: 0;
323
+ }
324
+
325
+ .section-container .content-block .data-container-wrapper > section ol,
326
+ .section-container .content-block .data-container-wrapper .data-container ol {
327
+ margin: 0 0 0 15px;
328
+ padding: 10px;
329
+ }
330
+
331
+ .section-container .content-block #form-container.ui-widget-content {
332
+ border: none !important;
333
+ }
334
+
335
+ .section-container .content-block form:not(.list-container) {
336
+ border: 1px #ddd solid;
337
+ background: #f3f1ef;
338
+ padding: 30px;
339
+ border: 1px solid #ddd;
340
+ border-radius: 2px;
341
+ -webkit-border-radius: 2px;
342
+ }
343
+
344
+ .section-container .content-block [class^='btn-'],
345
+ .section-container .content-block [class*=' btn-'] {
346
+ margin: 0 2px;
347
+ }
348
+
349
+ .search-modal {
350
+ width: 100% !important;
351
+ }
352
+
353
+ .search-modal.search-modal {
354
+ max-height: 100%;
355
+ min-height: 320px;
356
+ height: 100%;
357
+ padding: 0px;
358
+ }
359
+
360
+ .search-modal .ui-container {
361
+ display: flex;
362
+ flex-direction: column;
363
+ justify-content: space-between;
364
+ padding: 64px 0px 20px 20px;
365
+ }
366
+
367
+ .search-modal .ui-container .filters-container {
368
+ flex: 1 1 auto;
369
+ height: 100%;
370
+ min-height: 0;
371
+ display: flex;
372
+ flex-direction: column;
373
+ }
374
+
375
+ .search-modal .ui-container .basic-search-container {
376
+ padding-right: 20px;
377
+ flex: 0 0 auto;
378
+ }
379
+
380
+ .search-modal .ui-container .basic-search-container .class-filter-container {
381
+ cursor: pointer;
382
+ z-index: 2;
383
+ }
384
+
385
+ .search-modal .ui-container .filter-container {
386
+ position: relative;
387
+ margin-bottom: 8px;
388
+ }
389
+
390
+ .search-modal .ui-container .filter-container:last-child {
391
+ padding-bottom: 16px;
392
+ }
393
+
394
+ .search-modal .ui-container .filter-container > .icon-find,
395
+ .search-modal .ui-container .filter-container > .icon-folder {
396
+ position: absolute;
397
+ top: 7px;
398
+ left: 8px;
399
+ color: #666;
400
+ }
401
+
402
+ .search-modal .ui-container .filter-container .icon-down {
403
+ position: absolute;
404
+ top: 1px;
405
+ right: 1px;
406
+ padding: 5px;
407
+ background: white;
408
+ }
409
+
410
+ .search-modal .ui-container .filter-container > input,
411
+ .search-modal .ui-container .filter-container > textarea {
412
+ width: 100%;
413
+ padding-left: 28px;
414
+ }
415
+
416
+ .search-modal .ui-container .filter-container .class-filter {
417
+ cursor: pointer;
418
+ resize: none;
419
+ white-space: nowrap;
420
+ overflow: hidden;
421
+ }
422
+
423
+ .search-modal .ui-container .filter-container .class-filter[readonly] {
424
+ opacity: 1 !important;
425
+ }
426
+
427
+ .search-modal .ui-container .filter-container .class-tree {
428
+ display: none;
429
+ position: absolute;
430
+ top: 27px;
431
+ left: 0px;
432
+ width: 275px;
433
+ font-size: 1.2rem;
434
+ }
435
+
436
+ .search-modal .ui-container .filter-container .class-tree main {
437
+ overflow-y: auto;
438
+ border: 1px solid black;
439
+ }
440
+
441
+ .search-modal .ui-container .buttons-container {
442
+ flex: 0 0 auto;
443
+ padding-right: 4px;
444
+ display: flex;
445
+ justify-content: space-between;
446
+ }
447
+
448
+ .search-modal .ui-container .buttons-container button {
449
+ flex: 1 1 auto;
450
+ margin-right: 16px;
451
+ vertical-align: top;
452
+ }
453
+
454
+ .search-modal .ui-container .buttons-container .btn-transparent {
455
+ background-color: transparent;
456
+ border: 1px solid black;
457
+ color: black;
458
+ text-shadow: none;
459
+ }
460
+
461
+ @media screen and (min-width: 840px) {
462
+ .search-modal .content-container {
463
+ padding: 64px !important;
464
+ }
465
+ }
466
+
467
+ .search-modal .content-container .no-datatable-container {
468
+ display: flex;
469
+ flex-direction: column;
470
+ align-items: center;
471
+ }
472
+
473
+ .search-modal .content-container .no-datatable-container .no-datatable-icon {
474
+ color: #e4ecef;
475
+ font-size: 3.5em;
476
+ margin-bottom: 30px;
477
+ }
478
+
479
+ .search-modal .go-to-item {
480
+ background-color: transparent !important;
481
+ border: 1px solid black !important;
482
+ color: black !important;
483
+ text-shadow: none !important;
484
+ }
485
+
486
+ .search-modal .actions {
487
+ width: 12%;
488
+ }
489
+
490
+ .search-modal .modal-close-left {
491
+ position: absolute;
492
+ left: 20px;
493
+ top: 20px;
494
+ cursor: pointer;
495
+ font-weight: bold;
496
+ color: #222 !important;
497
+ background-color: transparent;
498
+ padding: 0;
499
+ height: 24px;
500
+ }
501
+
502
+ .search-modal .modal-close-left .icon-close {
503
+ font-size: 2.4rem;
504
+ }
505
+
506
+ /*# sourceMappingURL=searchModal.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../../scss/inc/_functions.scss","../scss/searchModal.scss","../../../scss/inc/fonts/_tao-icon-vars.scss","../../../scss/inc/_colors.scss"],"names":[],"mappings":"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","file":"searchModal.css","sourcesContent":["@mixin iterate-sprite($iconList, $x, $y, $direction, $prefix:'') {\n @each $icon in $iconList {\n #{$prefix}#{$icon} {\n background-position: $x * 1px $y * 1px;\n }\n @if $direction == 'x' {\n $x: $x - 16;\n } @else {\n $y: $y - 16;\n }\n }\n}\n\n/*\nUsage:\n- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,\n if 3 colors used then the position of each will be 33,33%\n- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,\n first param - color, second - position. Also you can use px or other valid units for set position.\n*/\n@mixin linear-gradient($colorList, $direction: 'to right') {\n $percentage: 0;\n $units: '%';\n $count: length($colorList);\n $increment: 100 / ($count - 1);\n $css: #{$direction + ', '};\n $sep: ', ';\n @each $colorItem in $colorList {\n $color: $colorItem;\n @if (length($colorItem) > 1) {\n $color: nth($colorItem, 1);\n $percentage: nth($colorItem, 2);\n $units: '';\n }\n @if ($percentage >= 100 or index($colorList, $colorItem) == $count) {\n $sep: '';\n }\n $css: #{$css + $color + ' ' + $percentage + $units + $sep};\n $percentage: $percentage + $increment;\n }\n background: linear-gradient( #{$css} );\n}\n\n@mixin grid-unit($span, $numCols: 12, $gutter: 0) {\n $gridPx: 840;\n $rawSpanPx: (($gridPx - ($numCols * $gutter)) / $numCols);\n $spanPx: $rawSpanPx * $span + (($span - 1) * $gutter);\n $spanPercent: widthPerc($spanPx, $gridPx);\n $marginPercent: widthPerc($gutter, $gridPx);\n margin-left: $marginPercent;\n width: $spanPercent;\n}\n\n\n@mixin vendor-prefix($property, $value, $whatToPrefix: property, $prefixes: (-webkit-, -moz-, -ms-, -o-, '')) {\n @if $whatToPrefix == 'property' {\n @each $prefix in $prefixes {\n #{$prefix + $property}: #{$value};\n }\n }\n @else if $whatToPrefix == 'value' {\n @each $prefix in $prefixes {\n #{$property}: #{$prefix + $value};\n }\n }\n}\n@mixin flex-container($wrapBehavior: nowrap, $direction : row) {\n @include vendor-prefix(display, flex, value, (-ms-, -webkit-, ''));\n\n @include vendor-prefix(flex-direction, $direction, property, (-ms-, -webkit-, ''));\n @include vendor-prefix(flex-wrap, $wrapBehavior, property, (-ms-, -webkit-, ''));\n\n @include vendor-prefix(justify-content, flex-start, property, (-webkit-, ''));\n\n @include vendor-prefix(align-content, flex-start, property, (-webkit-, ''));\n\n @include vendor-prefix(align-items, stretch, property, (-webkit-, ''));\n}\n\n@mixin simple-flex-box($width: auto, $minWidth: 1) {\n\n @include vendor-prefix(order, 0, property, (-ms-, -webkit-, ''));\n flex-item-align: stretch;\n -ms-flex-item-align: stretch;\n @include vendor-prefix(align-self, stretch, property, (-webkit-, ''));\n\n // if both, min width and width are set, width will win this conflict\n @if ($width == auto) {\n @if ($minWidth != 1) {\n @include vendor-prefix(flex, 1 1 $minWidth, property, (-ms-, -webkit-, ''));\n }\n @else {\n @include vendor-prefix(flex, 1 1 auto, property, (-ms-, -webkit-, ''));\n // @see https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis#Values\n // for a discussion auto vs. main-size\n @include vendor-prefix(flex, 1 1, property, (-ms-, -webkit-, ''));\n }\n }\n @else {\n @include vendor-prefix(flex, 0 0 $width, property, (-ms-, -webkit-, ''));\n }\n}\n\n\n@mixin box-shadow($horiz: 1px, $vert: 1px, $blur: 2px, $spread: 0, $color: rgba(0, 0, 0, .2)) {\n @include vendor-prefix(box-shadow, $horiz $vert $blur $spread $color, property);\n}\n\n@mixin simple-border($color: #ddd) {\n border: 1px solid $color;\n border-radius: 2px;\n -webkit-border-radius: 2px;\n}\n\n@mixin border-radius($radius: 2) {\n -moz-border-radius: $radius * 1px;\n -webkit-border-radius: $radius * 1px;\n border-radius: $radius * 1px;\n}\n\n@mixin border-radius-top($radius: 2) {\n -webkit-border-top-left-radius: $radius * 1px;\n -webkit-border-top-right-radius: $radius * 1px;\n -moz-border-radius-topleft: $radius * 1px;\n -moz-border-radius-topright: $radius * 1px;\n border-top-left-radius: $radius * 1px;\n border-top-right-radius: $radius * 1px;\n}\n\n@mixin border-radius-bottom($radius: 2) {\n -webkit-border-bottom-right-radius: $radius * 1px;\n -webkit-border-bottom-left-radius: $radius * 1px;\n -moz-border-radius-bottomright: $radius * 1px;\n -moz-border-radius-bottomleft: $radius * 1px;\n border-bottom-right-radius: $radius * 1px;\n border-bottom-left-radius: $radius * 1px;\n}\n\n@mixin border-radius-left($radius: 2) {\n -webkit-border-top-left-radius: $radius * 1px;\n -webkit-border-bottom-left-radius: $radius * 1px;\n -moz-border-radius-topleft: $radius * 1px;\n -moz-border-radius-bottomleft: $radius * 1px;\n border-top-left-radius: $radius * 1px;\n border-bottom-left-radius: $radius * 1px;\n}\n\n@mixin border-radius-right($radius: 2) {\n -webkit-border-top-right-radius: $radius * 1px;\n -webkit-border-bottom-right-radius: $radius * 1px;\n -moz-border-radius-topright: $radius * 1px;\n -moz-border-radius-bottomright: $radius * 1px;\n border-top-right-radius: $radius * 1px;\n border-bottom-right-radius: $radius * 1px;\n}\n\n@mixin border-radius-top-left($radius: 2) {\n -webkit-border-top-left-radius: $radius * 1px;\n -moz-border-radius-topleft: $radius * 1px;\n border-top-left-radius: $radius * 1px;\n}\n\n@mixin border-radius-top-right($radius: 2) {\n -webkit-border-top-right-radius: $radius * 1px;\n -moz-border-radius-topright: $radius * 1px;\n border-top-right-radius: $radius * 1px;\n}\n\n@mixin border-radius-bottom-right($radius: 2) {\n -webkit-border-bottom-right-radius: $radius * 1px;\n -moz-border-radius-bottomright: $radius * 1px;\n border-bottom-right-radius: $radius * 1px;\n}\n\n@mixin border-radius-bottom-left($radius: 2) {\n -webkit-border-bottom-left-radius: $radius * 1px;\n -moz-border-radius-bottomleft: $radius * 1px;\n border-bottom-left-radius: $radius * 1px;\n}\n\n@mixin border-box() {\n -moz-box-sizing: border-box;\n -webkit-box-sizing: border-box;\n box-sizing: border-box;\n}\n\n@function whiten($color, $white: 0.3) {\n @return mix(#fff, $color, ($white * 100) * 1%);\n}\n\n@function blacken($color, $black: 0.3) {\n @return mix(#000, $color, ($black * 100) * 1%);\n}\n\n@function widthPerc($colWidth, $context) {\n @return ($colWidth * 100 / $context) * 1%\n}\n\n@function remDist($fontSizePx) {\n @return ($fontSizePx / 10) * 1rem\n}\n\n@function black($alpha: 1) {\n @return (rgba(0, 0, 0, $alpha))\n}\n\n@function white($alpha: 1) {\n @return (rgba(255, 255, 255, $alpha))\n}\n\n@mixin font-size($remPx, $important: false) {\n @if $important == true {\n font-size: ($remPx) * 1px !important;\n font-size: ($remPx / 10) * 1rem !important;\n }\n @else {\n font-size: ($remPx) * 1px;\n font-size: ($remPx / 10) * 1rem;\n }\n}\n\n\n@mixin keyframes($name) {\n @-o-keyframes #{$name} { @content };\n @-moz-keyframes #{$name} { @content };\n @-webkit-keyframes #{$name} { @content };\n @keyframes #{$name} { @content };\n}\n\n\n@mixin animation($value, $type:'') {\n $animation: animation;\n @if $type != '' {\n $animation: $animation + '-' + $type;\n }\n @include vendor-prefix($animation, $value, property);\n}\n\n/// CSS transition mixin to the current selection (apply also vendor prefixes).\n/// See <https://developer.mozilla.org/en-US/docs/Web/CSS/transition> for the values\n///\n/// @param {property} [$type = all] the CSS property to apply the transition to\n/// @param {time} [$duration = .5s] the transition property\n/// @param {timing-function} [$effect = ease-out] the transition property\n@mixin transition($type : all, $duration : 0.5s, $effect : ease-out, $delay : 0s){\n @include vendor-prefix(transition, $type + ', ' + $duration + ', ' + $effect + ', ' + $delay, property);\n}\n\n@mixin fade($duration: 1s){\n\n @include keyframes(fade) {\n 0% {opacity:0;}\n 50% {opacity:1;}\n 100% {opacity:0;}\n }\n\n @include vendor-prefix(animation, fade 1s forwards, property);\n}\n\n@mixin repeat(){\n @include animation(infinite, iteration-count);\n}\n\n@mixin largeHeading() {\n @include font-size(20);\n font-family: $headingFont;\n font-style: normal;\n}\n\n@mixin disableSelect() {\n @include vendor-prefix(user-select, none, property);\n}\n","@import 'inc/bootstrap';\n$classTreeVariables: (\n top: 27px,\n left: 0px,\n width: 275px,\n font-size: 1.2rem\n);\n\n.section-container {\n // some variations of flex children\n $flexCols: full, half, third, quarter;\n @for $i from 1 through length($flexCols) {\n $width: (100 / ($i)) * 1%;\n $flexCol: #{nth($flexCols, $i)};\n .flex-container-#{$flexCol} {\n @include simple-flex-box($width);\n }\n }\n\n // 'whatever-is-left' container\n .flex-container-remaining {\n @include simple-flex-box(auto, 480px);\n }\n\n // main form on left hand side\n .flex-container-main-form {\n @include simple-flex-box(500px);\n margin: 0 20px 20px 0;\n width: 100%;\n\n .form-content {\n max-width: 100%;\n }\n }\n\n // the one for the sidebar that usually holds tree\n .flex-container-navi {\n @include simple-flex-box($treeSidebar * 1px);\n }\n\n // @todo all simple-flex-box references below should be removed once all templates are upgraded\n\n top: 0 !important;\n\n .section-header {\n border: none;\n }\n\n .content-panel {\n width: 100%;\n height: 100%;\n margin: 0;\n padding: 0;\n border: none !important;\n @include flex-container();\n }\n\n .tab-container {\n border: none;\n display: none;\n list-style-type: none;\n padding: 0;\n margin: 0;\n li {\n float: left;\n position: relative;\n top: 0;\n padding: 0;\n margin: 0 1px 0px 0;\n border-top: 1px solid $canvas !important;\n border-bottom: 1px solid $canvas !important;\n background: $canvas !important;\n a {\n top: 0 !important;\n margin-bottom: 0 !important;\n padding: 6px 16px;\n text-decoration: none;\n min-height: 32px;\n color: $textColor;\n float: left;\n }\n &.active,\n &:hover {\n border-bottom-color: whiten($info, 0.25) !important;\n border-top-color: whiten($info, 0.4) !important;\n background: whiten($info, 0.1) !important;\n a {\n background: transparent !important;\n border-color: transparent !important;\n color: $textHighlight !important;\n text-shadow: 1px 1px 0 black(0.2);\n }\n }\n &.disabled:hover {\n background: $canvas !important;\n a {\n cursor: not-allowed !important;\n color: $textColor !important;\n }\n }\n }\n }\n\n .ui-container {\n display: none;\n background: $canvas;\n @include simple-flex-box($treeSidebar * 1px);\n border-right: 1px $uiGeneralContentBorder solid;\n .block-title {\n @include font-size(14);\n padding: 2px 8px;\n margin: 0;\n }\n .tree-action-bar-box {\n margin: 10px 0;\n opacity: 0;\n &.active {\n opacity: 1;\n @include vendor-prefix(opacity, 0.25s ease-in-out, property, (-webkit-, -moz-, ''));\n }\n }\n }\n\n .content-container {\n border: none;\n @include simple-flex-box();\n overflow: auto;\n }\n\n .content-block {\n padding: 20px;\n overflow-y: auto;\n @include flex-container(wrap);\n & > .grid-container {\n width: 100%;\n }\n\n .data-container-wrapper {\n padding: 0px 20px 0 0;\n &:before,\n &:after {\n content: ' ';\n display: table;\n }\n &:after {\n clear: both;\n }\n & > section,\n .data-container {\n width: 260px;\n margin: 0 20px 20px 0;\n float: left;\n @include simple-border();\n &.double {\n width: 540px;\n }\n .emptyContentFooter {\n display: none;\n }\n .tree {\n border: none;\n max-width: none;\n max-height: none;\n }\n form {\n background: none;\n border: none;\n margin: 0;\n padding: 0;\n }\n & > header,\n .ui-widget-header {\n background: $canvas;\n border-width: 0px !important;\n border-bottom: 1px #ddd solid !important;\n h1,\n h6 {\n padding: 4px;\n margin: 0;\n @include font-size(14);\n }\n }\n & > div,\n .ui-widget-content,\n .container-content {\n border-width: 0px !important;\n overflow-y: auto;\n min-height: 250px;\n padding: 5px;\n .icon-grip {\n cursor: move;\n }\n }\n\n & > footer {\n min-height: 33px;\n }\n & > footer,\n .data-container-footer {\n background: $canvas;\n text-align: right !important;\n padding: 4px;\n border-width: 0px !important;\n border-top: 1px #ddd solid !important;\n .square {\n width: 28px;\n span {\n padding: 0;\n left: 0;\n }\n }\n }\n ol {\n margin: 0 0 0 15px;\n padding: 10px;\n }\n }\n }\n\n #form-container.ui-widget-content {\n border: none !important;\n }\n form:not(.list-container) {\n border: 1px $uiGeneralContentBorder solid;\n background: $canvas;\n padding: 30px;\n @include simple-border();\n }\n [class^='btn-'],\n [class*=' btn-'] {\n margin: 0 2px;\n }\n }\n}\n\n.search-modal {\n width: 100% !important;\n // Increasing specificity\n &.search-modal {\n max-height: 100%;\n min-height: 320px; \n height: 100%;\n padding: 0px;\n }\n .ui-container {\n display: flex;\n flex-direction: column;\n justify-content: space-between;\n padding: 64px 0px 20px 20px;\n .filters-container {\n flex: 1 1 auto;\n height: 100%;\n min-height: 0;\n display: flex;\n flex-direction: column;\n }\n .basic-search-container {\n padding-right: 20px;\n flex: 0 0 auto;\n .class-filter-container {\n cursor: pointer;\n z-index: 2;\n }\n }\n .filter-container {\n position: relative;\n margin-bottom: 8px;\n &:last-child {\n padding-bottom: 16px;\n }\n > .icon-find,\n > .icon-folder {\n position: absolute;\n top: 7px;\n left: 8px;\n color: #666;\n }\n .icon-down {\n position: absolute;\n top: 1px;\n right: 1px;\n padding: 5px;\n background: white;\n }\n > input,\n > textarea {\n width: 100%;\n padding-left: 28px;\n }\n .class-filter {\n cursor: pointer;\n resize: none;\n white-space: nowrap;\n overflow: hidden;\n &[readonly]{\n opacity: 1 !important;\n }\n }\n .class-tree {\n display: none;\n position: absolute;\n top: map-get($classTreeVariables, top);\n left: map-get($classTreeVariables, left);\n width: map-get($classTreeVariables, width);\n font-size: map-get($classTreeVariables, font-size);\n\n main {\n overflow-y: auto;\n border: 1px solid black;\n }\n }\n }\n .buttons-container {\n flex: 0 0 auto;\n padding-right: 4px;\n display: flex;\n justify-content: space-between;\n button {\n flex: 1 1 auto;\n margin-right: 16px;\n vertical-align: top;\n }\n .btn-transparent {\n background-color: transparent;\n border: 1px solid black;\n color: black;\n text-shadow: none;\n }\n }\n }\n .content-container {\n @media screen and (min-width: 840px) {\n padding: 64px !important;\n }\n .no-datatable-container {\n display: flex;\n flex-direction: column;\n align-items: center;\n .no-datatable-icon {\n color: $lightBlueGrey;\n font-size: 3.5em;\n margin-bottom: 30px;\n }\n }\n }\n\n // Overwrite some not customizable styles of datatable and pagination components\n .go-to-item {\n background-color: transparent !important;\n border: 1px solid black !important;\n color: black !important;\n text-shadow: none !important;\n }\n\n .actions {\n width: 12%;\n }\n\n // Custom class for close modal button, so it positioned on the top-left corner instead of top-right (default)\n .modal-close-left {\n position: absolute;\n left: 20px;\n top: 20px;\n cursor: pointer;\n font-weight: bold;\n color: $textColor !important;\n background-color: transparent;\n padding: 0;\n height: 24px;\n .icon-close {\n font-size: 2.4rem;\n }\n }\n}\n\n\n/*# sourceMappingURL=searchModal.css.map */","/* Do not edit */@mixin tao-icon-setup {\n /* use !important to prevent issues with browser extensions that change fonts */\n font-family: 'tao' !important;\n speak: none;\n font-style: normal;\n font-weight: normal;\n font-variant: normal;\n text-transform: none;\n line-height: 1;\n\n /* Better Font Rendering =========== */\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n@mixin icon-offline { content: \"\\e913\"; }\n@mixin icon-online { content: \"\\e914\"; }\n@mixin icon-tab { content: \"\\e90d\"; }\n@mixin icon-untab { content: \"\\e90e\"; }\n@mixin icon-multi-select { content: \"\\e90b\"; }\n@mixin icon-clipboard { content: \"\\e90a\"; }\n@mixin icon-filebox { content: \"\\e909\"; }\n@mixin icon-click-to-speak { content: \"\\e907\"; }\n@mixin icon-speech-bubble { content: \"\\f0e5\"; }\n@mixin icon-microphone { content: \"\\f130\"; }\n@mixin icon-microphone-off { content: \"\\f131\"; }\n@mixin icon-disconnect { content: \"\\e905\"; }\n@mixin icon-connect { content: \"\\e906\"; }\n@mixin icon-eliminate { content: \"\\e904\"; }\n@mixin icon-wheelchair { content: \"\\e903\"; }\n@mixin icon-text-marker { content: \"\\e902\"; }\n@mixin icon-unshield { content: \"\\e32a\"; }\n@mixin icon-shield { content: \"\\e8e8\"; }\n@mixin icon-tree { content: \"\\e6b4\"; }\n@mixin icon-home { content: \"\\e6b3\"; }\n@mixin icon-shared-file { content: \"\\e6b2\"; }\n@mixin icon-end-attempt { content: \"\\e603\"; }\n@mixin icon-icon { content: \"\\f1c5\"; }\n@mixin icon-radio-bg { content: \"\\e600\"; }\n@mixin icon-checkbox-bg { content: \"\\e601\"; }\n@mixin icon-tag { content: \"\\e602\"; }\n@mixin icon-style { content: \"\\e604\"; }\n@mixin icon-ownership-transfer { content: \"\\e605\"; }\n@mixin icon-property-advanced { content: \"\\e606\"; }\n@mixin icon-property-add { content: \"\\e607\"; }\n@mixin icon-repository-add { content: \"\\e608\"; }\n@mixin icon-repository-remove { content: \"\\e609\"; }\n@mixin icon-repository { content: \"\\e60a\"; }\n@mixin icon-result-server { content: \"\\e60b\"; }\n@mixin icon-folder { content: \"\\e60c\"; }\n@mixin icon-folder-open { content: \"\\e60d\"; }\n@mixin icon-left { content: \"\\e60e\"; }\n@mixin icon-right { content: \"\\e60f\"; }\n@mixin icon-up { content: \"\\e610\"; }\n@mixin icon-down { content: \"\\e611\"; }\n@mixin icon-undo { content: \"\\e612\"; }\n@mixin icon-redo { content: \"\\e613\"; }\n@mixin icon-screen { content: \"\\e614\"; }\n@mixin icon-laptop { content: \"\\e615\"; }\n@mixin icon-tablet { content: \"\\e616\"; }\n@mixin icon-phone { content: \"\\e617\"; }\n@mixin icon-move { content: \"\\e618\"; }\n@mixin icon-bin { content: \"\\e619\"; }\n@mixin icon-shuffle { content: \"\\e61a\"; }\n@mixin icon-print { content: \"\\e61b\"; }\n@mixin icon-tools { content: \"\\e61c\"; }\n@mixin icon-settings { content: \"\\e61d\"; }\n@mixin icon-video { content: \"\\e61e\"; }\n@mixin icon-find { content: \"\\e61f\"; }\n@mixin icon-image { content: \"\\e620\"; }\n@mixin icon-edit { content: \"\\e621\"; }\n@mixin icon-document { content: \"\\e622\"; }\n@mixin icon-resize-grid { content: \"\\e623\"; }\n@mixin icon-resize { content: \"\\e624\"; }\n@mixin icon-help { content: \"\\e625\"; }\n@mixin icon-mobile-menu { content: \"\\e626\"; }\n@mixin icon-fix { content: \"\\e627\"; }\n@mixin icon-unlock { content: \"\\e628\"; }\n@mixin icon-lock { content: \"\\e629\"; }\n@mixin icon-ul { content: \"\\e62a\"; }\n@mixin icon-ol { content: \"\\e62b\"; }\n@mixin icon-email { content: \"\\e62c\"; }\n@mixin icon-download { content: \"\\e62d\"; }\n@mixin icon-logout { content: \"\\e62e\"; }\n@mixin icon-login { content: \"\\e62f\"; }\n@mixin icon-spinner { content: \"\\e630\"; }\n@mixin icon-preview { content: \"\\e631\"; }\n@mixin icon-external { content: \"\\e632\"; }\n@mixin icon-time { content: \"\\e633\"; }\n@mixin icon-save { content: \"\\e634\"; }\n@mixin icon-warning { content: \"\\e635\"; }\n@mixin icon-add { content: \"\\e636\"; }\n@mixin icon-error { content: \"\\e900\"; }\n@mixin icon-close { content: \"\\e637\"; }\n@mixin icon-success { content: \"\\e638\"; }\n@mixin icon-remove { content: \"\\e639\"; }\n@mixin icon-info { content: \"\\e63a\"; }\n@mixin icon-danger { content: \"\\e63b\"; }\n@mixin icon-users { content: \"\\e63c\"; }\n@mixin icon-user { content: \"\\e63d\"; }\n@mixin icon-test-taker { content: \"\\e63e\"; }\n@mixin icon-test-takers { content: \"\\e63f\"; }\n@mixin icon-item { content: \"\\e640\"; }\n@mixin icon-test { content: \"\\e641\"; }\n@mixin icon-delivery { content: \"\\e642\"; }\n@mixin icon-eye-slash { content: \"\\e643\"; }\n@mixin icon-result { content: \"\\e644\"; }\n@mixin icon-delivery-small { content: \"\\e645\"; }\n@mixin icon-upload { content: \"\\e646\"; }\n@mixin icon-result-small { content: \"\\e647\"; }\n@mixin icon-mobile-preview { content: \"\\e648\"; }\n@mixin icon-extension { content: \"\\e649\"; }\n@mixin icon-desktop-preview { content: \"\\e64a\"; }\n@mixin icon-tablet-preview { content: \"\\e64b\"; }\n@mixin icon-insert-horizontal-line { content: \"\\e64c\"; }\n@mixin icon-table { content: \"\\e64d\"; }\n@mixin icon-anchor { content: \"\\e64e\"; }\n@mixin icon-unlink { content: \"\\e64f\"; }\n@mixin icon-link { content: \"\\e650\"; }\n@mixin icon-right-left { content: \"\\e651\"; }\n@mixin icon-left-right { content: \"\\e652\"; }\n@mixin icon-special-character { content: \"\\e653\"; }\n@mixin icon-source { content: \"\\e654\"; }\n@mixin icon-new-page { content: \"\\e655\"; }\n@mixin icon-templates { content: \"\\e656\"; }\n@mixin icon-cut { content: \"\\e657\"; }\n@mixin icon-replace { content: \"\\e658\"; }\n@mixin icon-copy { content: \"\\e659\"; }\n@mixin icon-paste { content: \"\\e65a\"; }\n@mixin icon-select-all { content: \"\\e65b\"; }\n@mixin icon-paste-text { content: \"\\e65c\"; }\n@mixin icon-paste-word { content: \"\\e65d\"; }\n@mixin icon-bold { content: \"\\e65e\"; }\n@mixin icon-italic { content: \"\\e65f\"; }\n@mixin icon-underline { content: \"\\e660\"; }\n@mixin icon-subscript { content: \"\\e661\"; }\n@mixin icon-superscript { content: \"\\e662\"; }\n@mixin icon-strike-through { content: \"\\e663\"; }\n@mixin icon-decrease-indent { content: \"\\e664\"; }\n@mixin icon-increase-indent { content: \"\\e665\"; }\n@mixin icon-block-quote { content: \"\\e666\"; }\n@mixin icon-div-container { content: \"\\e667\"; }\n@mixin icon-align-left { content: \"\\e668\"; }\n@mixin icon-center { content: \"\\e669\"; }\n@mixin icon-align-right { content: \"\\e66a\"; }\n@mixin icon-justify { content: \"\\e66b\"; }\n@mixin icon-choice { content: \"\\e66c\"; }\n@mixin icon-inline-choice { content: \"\\e66d\"; }\n@mixin icon-match { content: \"\\e66e\"; }\n@mixin icon-associate { content: \"\\e66f\"; }\n@mixin icon-media { content: \"\\e670\"; }\n@mixin icon-graphic-order { content: \"\\e671\"; }\n@mixin icon-hotspot { content: \"\\e672\"; }\n@mixin icon-graphic-gap { content: \"\\e673\"; }\n@mixin icon-graphic-associate { content: \"\\e674\"; }\n@mixin icon-select-point { content: \"\\e675\"; }\n@mixin icon-pin { content: \"\\e676\"; }\n@mixin icon-import { content: \"\\e677\"; }\n@mixin icon-export { content: \"\\e678\"; }\n@mixin icon-move-item { content: \"\\e679\"; }\n@mixin icon-meta-data { content: \"\\e67a\"; }\n@mixin icon-slider { content: \"\\e67b\"; }\n@mixin icon-summary-report { content: \"\\e67c\"; }\n@mixin icon-text-entry { content: \"\\e67d\"; }\n@mixin icon-extended-text { content: \"\\e67e\"; }\n@mixin icon-eraser { content: \"\\e67f\"; }\n@mixin icon-row { content: \"\\e680\"; }\n@mixin icon-column { content: \"\\e681\"; }\n@mixin icon-text-color { content: \"\\e682\"; }\n@mixin icon-background-color { content: \"\\e683\"; }\n@mixin icon-spell-check { content: \"\\e684\"; }\n@mixin icon-polygon { content: \"\\e685\"; }\n@mixin icon-rectangle { content: \"\\e686\"; }\n@mixin icon-gap-match { content: \"\\e687\"; }\n@mixin icon-order { content: \"\\e688\"; }\n@mixin icon-hottext { content: \"\\e689\"; }\n@mixin icon-free-form { content: \"\\e68a\"; }\n@mixin icon-step-backward { content: \"\\e68b\"; }\n@mixin icon-fast-backward { content: \"\\e68c\"; }\n@mixin icon-backward { content: \"\\e68d\"; }\n@mixin icon-play { content: \"\\e68e\"; }\n@mixin icon-pause { content: \"\\e68f\"; }\n@mixin icon-stop { content: \"\\e690\"; }\n@mixin icon-forward { content: \"\\e691\"; }\n@mixin icon-fast-forward { content: \"\\e692\"; }\n@mixin icon-step-forward { content: \"\\e693\"; }\n@mixin icon-ellipsis { content: \"\\e694\"; }\n@mixin icon-circle { content: \"\\e695\"; }\n@mixin icon-target { content: \"\\e696\"; }\n@mixin icon-guide-arrow { content: \"\\e697\"; }\n@mixin icon-range-slider-right { content: \"\\e698\"; }\n@mixin icon-range-slider-left { content: \"\\e699\"; }\n@mixin icon-radio-checked { content: \"\\e69a\"; }\n@mixin icon-checkbox-indeterminate { content: \"\\e901\"; }\n@mixin icon-checkbox { content: \"\\e69b\"; }\n@mixin icon-checkbox-crossed { content: \"\\e69c\"; }\n@mixin icon-checkbox-checked { content: \"\\e69d\"; }\n@mixin icon-result-nok { content: \"\\e69e\"; }\n@mixin icon-result-ok { content: \"\\e69f\"; }\n@mixin icon-not-evaluated { content: \"\\e6a0\"; }\n@mixin icon-filter { content: \"\\e6a1\"; }\n@mixin icon-translate { content: \"\\e6a2\"; }\n@mixin icon-eject { content: \"\\e6a3\"; }\n@mixin icon-continue { content: \"\\e6a4\"; }\n@mixin icon-radio { content: \"\\e6a5\"; }\n@mixin icon-sphere { content: \"\\e6a6\"; }\n@mixin icon-reset { content: \"\\e6a7\"; }\n@mixin icon-smaller { content: \"\\e6a8\"; }\n@mixin icon-larger { content: \"\\e6a9\"; }\n@mixin icon-clock { content: \"\\e6aa\"; }\n@mixin icon-font { content: \"\\e6ab\"; }\n@mixin icon-maths { content: \"\\e6ac\"; }\n@mixin icon-grip { content: \"\\e6ad\"; }\n@mixin icon-rubric { content: \"\\e6ae\"; }\n@mixin icon-audio { content: \"\\e6af\"; }\n@mixin icon-grip-h { content: \"\\e6b0\"; }\n@mixin icon-magicwand { content: \"\\e6b1\"; }\n@mixin icon-loop { content: \"\\ea2e\"; }\n@mixin icon-calendar { content: \"\\e953\"; }\n@mixin icon-reload { content: \"\\e984\"; }\n@mixin icon-speed { content: \"\\e9a6\"; }\n@mixin icon-volume { content: \"\\ea27\"; }\n@mixin icon-contrast { content: \"\\e9d5\"; }\n@mixin icon-headphones { content: \"\\e910\"; }\n@mixin icon-compress { content: \"\\f066\"; }\n@mixin icon-map-o { content: \"\\f278\"; }\n@mixin icon-variable { content: \"\\e908\"; }\n@mixin icon-tooltip { content: \"\\e90c\"; }\n@mixin icon-globe { content: \"\\e9c9\"; }\n@mixin icon-highlighter { content: \"\\e90f\"; }\n@mixin icon-eliminate-crossed { content: \"\\e911\"; }\n@mixin icon-play-from-here { content: \"\\e912\"; }\n@mixin icon-wrap-inline { content: \"\\e917\"; }\n@mixin icon-wrap-right { content: \"\\e915\"; }\n@mixin icon-wrap-left { content: \"\\e916\"; }\n","// buttons and alerts\n$success: rgb(14, 145, 75);\n$info: rgb(14, 93, 145);\n$warning: rgb(216, 174, 91);\n$danger: rgb(201, 96, 67);\n$error: rgb(186, 18, 43);\n$activeInteraction: rgb(195, 90, 19);\n\n// corporate identity\n$logoRed: rgb(186, 18, 43);\n$grey: rgb(173, 161, 148);\n$darkBlueGrey: rgb(164, 187, 197);\n$mediumBlueGrey: rgb(193, 212, 220);\n$lightBlueGrey: rgb(228, 236, 239);\n$brownRedGrey: rgb(154, 137, 123);\n$darkBrown: rgb(111, 99, 89);\n$websiteBorder: rgb(141, 148, 158);\n\n// ui elements, these should only variations of the above\n// naming convention: jQueryUi theme roller -> camelCase\n\n$textColor: #222;\n$textHighlight: white;\n\n$uiGeneralContentBg: white();\n$uiGeneralContentBorder: #ddd;\n\n$uiHeaderBg: #D4D5D7;\n\n$uiClickableDefaultBg: #f3f1ef;\n$uiClickableHoverBg: whiten($info, .2);\n//$uiClickableActiveBg: $uiHeaderBg;\n$uiClickableActiveBg: whiten($websiteBorder, .2);\n//$uiClickableActiveBg: #aaa;\n\n$uiSelectableSelectedBg: whiten($info, .2);\n$uiSelectableSelectedHoverBg: whiten($info, .1);\n$uiSelectableHoverBg: whiten($info, .9);\n\n$uiOverlay: $lightBlueGrey;\n\n// sidebars etc.\n$canvas: mix(#fff, $grey, 85%);\n\n// colors taken from feedback.scss\n$successBgColor: whiten($success, .8);\n$successBorderColor: whiten($success, .1);\n\n$infoBgColor: whiten($info, .8);\n$infoBorderColor: whiten($info, .1);\n\n$warningBgColor: whiten($warning, .8);\n$warningBorderColor: whiten($warning, .1);\n\n$dangerBgColor: whiten($danger, .8);\n$dangerBorderColor: whiten($danger, .1);\n\n$errorBgColor: whiten($error, .8);\n$errorBorderColor: whiten($error, .1);\n\n\n$darkBar : rgb(51, 51, 51);\n$darkBarTxt : rgb(230, 230, 230);\n$darkBarIcon : rgb(220, 220, 220);\n\n$actionLinkColor: #276D9B;\n$actionLinkHoverColor: #4F83A7;\n\n\n$colorWheel-01: #C3BA13;\n$colorWheel-02: #84A610;\n$colorWheel-03: #2B8E0E;\n$colorWheel-04: #0F9787;\n$colorWheel-05: #0E5D91;\n$colorWheel-06: #0D2689;\n$colorWheel-07: #400D83;\n$colorWheel-08: #960E7D;\n$colorWheel-09: #BA122B;\n$colorWheel-10: #C34713;\n$colorWheel-11: #C36F13;\n$colorWheel-12: #C39413;\n"]}