@oat-sa/tao-core-ui 1.58.2 → 1.59.0

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 (75) hide show
  1. package/package.json +1 -1
  2. package/scss/.DS_Store +0 -0
  3. package/scss/ckeditor/.DS_Store +0 -0
  4. package/scss/ckeditor/skins/.DS_Store +0 -0
  5. package/scss/ckeditor/skins/tao/.DS_Store +0 -0
  6. package/scss/ckeditor/skins/tao/scss/editor.scss +17 -0
  7. package/scss/ckeditor/skins/tao/scss/inc/_menu.scss +1 -6
  8. package/src/.DS_Store +0 -0
  9. package/src/css/basic.css +7835 -0
  10. package/src/css/basic.css.map +1 -0
  11. package/src/css/ckeditor/skins/tao/css/dialog.css +950 -0
  12. package/src/css/ckeditor/skins/tao/css/dialog.css.map +1 -0
  13. package/src/css/ckeditor/skins/tao/css/editor.css +1850 -0
  14. package/src/css/ckeditor/skins/tao/css/editor.css.map +1 -0
  15. package/src/scss/.DS_Store +0 -0
  16. package/src/scss/basic.scss +16 -0
  17. package/src/scss/ckeditor/skins/tao/scss/dialog.scss +763 -0
  18. package/src/scss/ckeditor/skins/tao/scss/editor.scss +111 -0
  19. package/src/scss/ckeditor/skins/tao/scss/inc/_ck-icons.scss +59 -0
  20. package/src/scss/ckeditor/skins/tao/scss/inc/_colorpanel.scss +118 -0
  21. package/src/scss/ckeditor/skins/tao/scss/inc/_elementspath.scss +69 -0
  22. package/src/scss/ckeditor/skins/tao/scss/inc/_mainui.scss +194 -0
  23. package/src/scss/ckeditor/skins/tao/scss/inc/_menu.scss +181 -0
  24. package/src/scss/ckeditor/skins/tao/scss/inc/_panel.scss +200 -0
  25. package/src/scss/ckeditor/skins/tao/scss/inc/_presets.scss +32 -0
  26. package/src/scss/ckeditor/skins/tao/scss/inc/_reset.scss +101 -0
  27. package/src/scss/ckeditor/skins/tao/scss/inc/_richcombo.scss +213 -0
  28. package/src/scss/ckeditor/skins/tao/scss/inc/_tao.scss +59 -0
  29. package/src/scss/ckeditor/skins/tao/scss/inc/_toolbar.scss +301 -0
  30. package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot +0 -0
  31. package/src/scss/font/source-sans-pro/source-sans-pro-italic.eot.b64 +1 -0
  32. package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff +0 -0
  33. package/src/scss/font/source-sans-pro/source-sans-pro-italic.woff.b64 +1 -0
  34. package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot +0 -0
  35. package/src/scss/font/source-sans-pro/source-sans-pro-regular.eot.b64 +1 -0
  36. package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff +0 -0
  37. package/src/scss/font/source-sans-pro/source-sans-pro-regular.woff.b64 +1 -0
  38. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot +0 -0
  39. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.eot.b64 +1 -0
  40. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff +0 -0
  41. package/src/scss/font/source-sans-pro/source-sans-pro-semibold-italic.woff.b64 +1 -0
  42. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot +0 -0
  43. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.eot.b64 +1 -0
  44. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff +0 -0
  45. package/src/scss/font/source-sans-pro/source-sans-pro-semibold.woff.b64 +1 -0
  46. package/src/scss/font/tao/tao.eot +0 -0
  47. package/src/scss/font/tao/tao.svg +235 -0
  48. package/src/scss/font/tao/tao.ttf +0 -0
  49. package/src/scss/font/tao/tao.woff +0 -0
  50. package/src/scss/inc/_base.scss +496 -0
  51. package/src/scss/inc/_bootstrap.scss +6 -0
  52. package/src/scss/inc/_buttons.scss +114 -0
  53. package/src/scss/inc/_colors.scss +88 -0
  54. package/src/scss/inc/_feedback.scss +150 -0
  55. package/src/scss/inc/_flex-grid.scss +15 -0
  56. package/src/scss/inc/_fonts.scss +4 -0
  57. package/src/scss/inc/_forms.scss +827 -0
  58. package/src/scss/inc/_functions.scss +283 -0
  59. package/src/scss/inc/_grid.scss +66 -0
  60. package/src/scss/inc/_jquery.nouislider.scss +254 -0
  61. package/src/scss/inc/_normalize.scss +528 -0
  62. package/src/scss/inc/_report.scss +68 -0
  63. package/src/scss/inc/_secondary-properties.scss +89 -0
  64. package/src/scss/inc/_select2.scss +634 -0
  65. package/src/scss/inc/_toolbars.scss +155 -0
  66. package/src/scss/inc/_tooltip.scss +312 -0
  67. package/src/scss/inc/_variables.scss +21 -0
  68. package/src/scss/inc/base/_highlight.scss +5 -0
  69. package/src/scss/inc/base/_list-style.scss +59 -0
  70. package/src/scss/inc/base/_svg.scss +3 -0
  71. package/src/scss/inc/base/_table.scss +63 -0
  72. package/src/scss/inc/fonts/_source-sans-pro.scss +29 -0
  73. package/src/scss/inc/fonts/_tao-icon-classes.scss +226 -0
  74. package/src/scss/inc/fonts/_tao-icon-def.scss +12 -0
  75. package/src/scss/inc/fonts/_tao-icon-vars.scss +240 -0
Binary file
Binary file
@@ -0,0 +1,496 @@
1
+ // this combines the most common features from normalize, h5bp main and tao base
2
+
3
+ //these vars enables you to include this base in a scoped env.
4
+ $mainContainer : html !default;
5
+
6
+ // Those styles can't be scoped because it's the base to use REM
7
+ html {
8
+ -webkit-text-size-adjust: 100%;
9
+ -ms-text-size-adjust: 100%;
10
+ font-size: 62.5%;
11
+ line-height: 1.4;
12
+ -moz-box-sizing: border-box;
13
+ -webkit-box-sizing: border-box;
14
+ box-sizing: border-box;
15
+ -webkit-background-size: cover;
16
+ -moz-background-size: cover;
17
+ -o-background-size: cover;
18
+ background-size: cover;
19
+ &.fullscreen {
20
+ width: 100%;
21
+ }
22
+ }
23
+
24
+ body {
25
+ -moz-box-sizing: border-box;
26
+ -webkit-box-sizing: border-box;
27
+ box-sizing: border-box;
28
+ font-size: 14px;
29
+ }
30
+
31
+ // cannot be scoped
32
+ ::-webkit-scrollbar-corner { background-color: ThreeDHighlight;}
33
+
34
+ #{$mainContainer} {
35
+
36
+ *, *:before, *:after {
37
+ -moz-box-sizing: border-box;
38
+ -webkit-box-sizing: border-box;
39
+ box-sizing: border-box;
40
+ }
41
+
42
+ &, body{
43
+ color: $textColor;
44
+ font-family: $regularFont;
45
+ font-weight: normal;
46
+ margin: 0;
47
+ padding: 0;
48
+ position: relative;
49
+ height: 100%;
50
+ z-index: 0;
51
+ line-height: 1.4;
52
+ background: white;
53
+ border-width: 1px;
54
+ @if($mainContainer != html){
55
+ @include font-size(14);
56
+ }
57
+ }
58
+
59
+ address, article, aside, audio, blockquote, dd, div, dl, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header,
60
+ hr, noscript, ol, output, p, pre, section, summary, ul, main {
61
+ margin-top: 0;
62
+ padding-top: 0;
63
+ padding-bottom: 0;
64
+ white-space: normal;
65
+ }
66
+
67
+ h1 {
68
+ font-size: 2em;
69
+ margin: 0.67em 0;
70
+ }
71
+
72
+ h2 {
73
+ font-size: 1.5em;
74
+ margin: 0.83em 0;
75
+ }
76
+
77
+ h3 {
78
+ font-size: 1.17em;
79
+ margin: 1em 0;
80
+ }
81
+
82
+ h4 {
83
+ font-size: 1em;
84
+ margin: 1.33em 0;
85
+ }
86
+
87
+ h5 {
88
+ font-size: 0.83em;
89
+ margin: 1.67em 0;
90
+ }
91
+
92
+ h6 {
93
+ font-size: 0.67em;
94
+ margin: 2.33em 0;
95
+ }
96
+
97
+ blockquote {
98
+ margin: 1em 40px;
99
+ }
100
+
101
+ blockquote, dd, dl, fieldset, figure, h1, h2, h3, h4, h5, h6,
102
+ hr, ol, p, pre, ul {
103
+ display: block;
104
+ margin-bottom: 10px;
105
+ white-space: normal;
106
+ }
107
+
108
+ h1, h2, h3, h4, h5, h6 {
109
+ font-weight: normal;
110
+ font-style: normal;
111
+ }
112
+
113
+ iframe {
114
+ border: none;
115
+ }
116
+
117
+ audio,
118
+ canvas,
119
+ video,
120
+ svg {
121
+ display: inline-block;
122
+ vertical-align: middle;
123
+ }
124
+
125
+ // the above rule breaks SVG on MathJax and thus requires a reset
126
+ .MathJax svg {
127
+ display: inline;
128
+ vertical-align: baseline;
129
+ }
130
+
131
+ a {
132
+ cursor: pointer;
133
+ background: transparent;
134
+ text-decoration: none;
135
+ outline: 0;
136
+ color: $uiClickableHoverBg;
137
+ &:focus {
138
+ outline: thin dotted;
139
+ }
140
+ &:hover {
141
+ text-decoration: underline;
142
+ color: $info;
143
+ &:before, &:after {
144
+ text-decoration: none !important;
145
+ }
146
+ }
147
+ &.block {
148
+ color: $textColor;
149
+ text-decoration: none;
150
+ display: block;
151
+ }
152
+ &[rel="external"] span.icon-external {
153
+ &:before {
154
+ @include font-size(11);
155
+ padding: 0 0 0 4px;
156
+ position: relative;
157
+ top: 1px;
158
+ }
159
+ }
160
+ }
161
+
162
+ b, .b, strong, .strong {
163
+ font-weight: bold;
164
+ }
165
+
166
+ i, .i, em, .em, dfn {
167
+ font-style: italic;
168
+ }
169
+
170
+ code, pre, kdb, samp {
171
+ font-family: $monospaceFont;
172
+ @include font-size(14);
173
+ }
174
+
175
+ pre {
176
+ white-space: pre;
177
+ white-space: pre-wrap;
178
+ word-wrap: break-word;
179
+ }
180
+
181
+ code {
182
+ background: whiten($lightBlueGrey, .5);
183
+ padding: 2px 6px;
184
+ display: inline-block;
185
+ margin: 0 3px;
186
+ @include border-radius();
187
+ }
188
+
189
+ hr {
190
+ display: block;
191
+ height: 1px;
192
+ border: 0;
193
+ border-top: 1px solid #ccc;
194
+ margin: 1em 0;
195
+ padding: 0;
196
+ }
197
+
198
+ q {
199
+ quotes: "\201C" "\201D" "\2018" "\2019";
200
+ &:before,
201
+ &:after {
202
+ content: '';
203
+ content: none;
204
+ }
205
+ }
206
+
207
+ small {
208
+ @include font-size(11);
209
+ }
210
+
211
+ sub,
212
+ sup {
213
+ font-size: .75em;
214
+ line-height: 0;
215
+ position: relative;
216
+ vertical-align: baseline;
217
+ }
218
+
219
+ sup {
220
+ top: -0.5em;
221
+ }
222
+
223
+ sub {
224
+ bottom: -0.25em;
225
+ }
226
+
227
+ img {
228
+ border: 0;
229
+ max-width: 100%;
230
+ }
231
+
232
+ svg:not(:root) {
233
+ overflow: hidden;
234
+ }
235
+
236
+
237
+ fieldset {
238
+ border: 0;
239
+ margin: 0;
240
+ padding: 0;
241
+ }
242
+
243
+ legend {
244
+ border: 0;
245
+ padding: 0;
246
+ }
247
+
248
+ textarea {
249
+ overflow: auto;
250
+ vertical-align: top;
251
+ resize: vertical;
252
+ }
253
+
254
+ label, button {
255
+ cursor: pointer;
256
+ }
257
+
258
+ button {
259
+ vertical-align: middle;
260
+ outline: 0;
261
+ overflow: visible;
262
+ border: none;
263
+ }
264
+
265
+ button, input {
266
+ &::-moz-focus-inner {
267
+ border: 0;
268
+ padding: 0;
269
+ }
270
+ // avoid usage of the IE clear button
271
+ &::-ms-clear {
272
+ display: none;
273
+ }
274
+ &::-ms-reveal {
275
+ display: none;
276
+ }
277
+ }
278
+
279
+ button,
280
+ input,
281
+ select,
282
+ textarea {
283
+ font-family: $regularFont;
284
+ font-weight: normal;
285
+ line-height: normal;
286
+ text-transform: none;
287
+ vertical-align: baseline;
288
+ }
289
+
290
+ button,
291
+ html input[type="button"],
292
+ input[type="reset"],
293
+ input[type="submit"] {
294
+ -webkit-appearance: button;
295
+ cursor: pointer;
296
+ }
297
+
298
+ input {
299
+ @include simple-border();
300
+ @include border-radius(1);
301
+
302
+ &[type="search"] {
303
+ -webkit-appearance: textfield;
304
+ -moz-box-sizing: content-box;
305
+ -webkit-box-sizing: content-box;
306
+ box-sizing: content-box;
307
+ &::-webkit-search-cancel-button,
308
+ &::-webkit-search-decoration {
309
+ -webkit-appearance: none;
310
+ }
311
+ }
312
+
313
+ &[type="checkbox"],
314
+ &[type="radio"] {
315
+ box-sizing: border-box;
316
+ padding: 0;
317
+ }
318
+ }
319
+
320
+ select {
321
+ max-width: 100%;
322
+ }
323
+
324
+ audio:not([controls]),
325
+ [hidden], template,
326
+ .hidden, .deleted,
327
+ .js, .js-hide {
328
+ display: none !important;
329
+ }
330
+
331
+ .visuallyhidden {
332
+ border: 0;
333
+ clip: rect(0 0 0 0);
334
+ height: 1px;
335
+ margin: -1px;
336
+ overflow: hidden;
337
+ padding: 0;
338
+ position: absolute;
339
+ width: 1px;
340
+ &.focusable {
341
+ &:active,
342
+ &:focus {
343
+ clip: auto;
344
+ height: auto;
345
+ margin: 0;
346
+ overflow: visible;
347
+ position: static;
348
+ width: auto;
349
+ }
350
+ }
351
+ }
352
+
353
+ .invisible {
354
+ visibility: hidden;
355
+ }
356
+
357
+ .viewport-hidden {
358
+ position: absolute;
359
+ left: -10000px;
360
+ top: -10000px;
361
+ }
362
+
363
+ .clearfix {
364
+ &:before, &:after {
365
+ content: " ";
366
+ display: table;
367
+ }
368
+ &:after {
369
+ clear: both;
370
+ }
371
+ }
372
+
373
+ .clear {
374
+ display: block;
375
+ clear: both;
376
+ }
377
+
378
+
379
+ .lft,
380
+ .wrap-left {
381
+ display: inline;
382
+ float: left;
383
+ }
384
+
385
+ .rgt,
386
+ .wrap-right {
387
+ display: inline;
388
+ float: right;
389
+ }
390
+
391
+ .wrap-left {
392
+ margin: 20px 20px 20px 0;
393
+ }
394
+
395
+ .wrap-right {
396
+ margin: 20px 0 20px 20px;
397
+ }
398
+
399
+ .txt-ctr {
400
+ text-align: center;
401
+ }
402
+
403
+ .txt-lft {
404
+ text-align: left;
405
+ }
406
+
407
+ .txt-rgt {
408
+ text-align: right;
409
+ }
410
+
411
+ .txt-jty {
412
+ text-align: justify;
413
+ }
414
+
415
+ // added to make _u_ in ck QTI compatible
416
+ .txt-underline {
417
+ text-decoration: underline;
418
+ font-size : inherit;
419
+ }
420
+
421
+ .txt-highlight {
422
+ padding: 0 5px;
423
+ background: #FF6416;
424
+ color: white;
425
+ }
426
+
427
+ ::-moz-selection {
428
+ background: #b3d4fc;
429
+ text-shadow: none;
430
+ }
431
+
432
+ ::selection {
433
+ background: #b3d4fc;
434
+ text-shadow: none;
435
+ }
436
+
437
+ .placeholder {
438
+ color: #777 !important;
439
+ }
440
+
441
+ ::-webkit-input-placeholder {
442
+ color: #777 !important;
443
+ }
444
+
445
+ :-moz-placeholder {
446
+ color: #777 !important;
447
+ }
448
+
449
+ ::-moz-placeholder {
450
+ color: #777 !important;
451
+ }
452
+
453
+ .truncate {
454
+ white-space: nowrap;
455
+ overflow: hidden;
456
+ text-overflow: ellipsis;
457
+ }
458
+
459
+ .disabled, *:disabled {
460
+ cursor: default;
461
+ opacity: .7;
462
+ }
463
+
464
+ .overlay, .ui-widget-overlay {
465
+ background: white(.9);
466
+ }
467
+
468
+ .ui-widget {
469
+ font-family: $regularFont;
470
+ font-size: 1.4rem !important;
471
+ }
472
+
473
+ .ui-widget .ui-widget {
474
+ font-size: 1.4rem !important;
475
+ }
476
+
477
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
478
+ font-family: $regularFont;
479
+ font-size: 1.4rem !important;
480
+ }
481
+
482
+
483
+
484
+ // everything on list styles and counters
485
+ @import 'base/list-style';
486
+
487
+ // everything tables
488
+ @import 'base/table';
489
+
490
+ // everything svg
491
+ @import 'base/svg';
492
+
493
+ // everything user highlight
494
+ @import 'base/highlight';
495
+
496
+ }
@@ -0,0 +1,6 @@
1
+ // to be included into your scss files, don't forget to set the includePaths (--load-path) in your compiler
2
+ //@charset "UTF-8";
3
+ @import "inc/variables";
4
+ @import "inc/functions";
5
+ @import "inc/colors";
6
+ @import "inc/fonts/tao-icon-vars";
@@ -0,0 +1,114 @@
1
+ @mixin generic-btn-primary($color, $background) {
2
+ color: $color;
3
+ background-color: whiten($background, .1);
4
+ text-shadow: 1px 1px 0 blacken($background, .2);
5
+ }
6
+
7
+ @mixin generic-btn-secondary($color, $background) {
8
+ color: whiten($color, .1);
9
+ border: 1px solid whiten($color, .1);
10
+ background-color: $background;
11
+ text-shadow: none;
12
+ }
13
+
14
+ %generic-btn-code {
15
+ @include border-radius(3);
16
+ font-size: 14px !important;
17
+ font-size: 1.4rem !important;
18
+ cursor: pointer;
19
+ text-decoration: none !important;
20
+ vertical-align: middle;
21
+ outline: 0;
22
+ overflow: visible;
23
+ border: none;
24
+ display: inline-block;
25
+ line-height: 2.5;
26
+ padding: 0 15px;
27
+ font-weight: normal;
28
+ font-style: normal;
29
+ text-align: center;
30
+ height: 35px;
31
+ @include generic-btn-primary(white(), $uiClickableActiveBg);
32
+ &.btn-secondary {
33
+ @include generic-btn-secondary($uiClickableActiveBg, $uiGeneralContentBg);
34
+ line-height: 2.3;
35
+ }
36
+ &.small {
37
+ line-height: 1.8;
38
+ height: 25px;
39
+ &.btn-secondary {
40
+ line-height: 1.5;
41
+ }
42
+ [class^="icon-"], [class*=" icon-"] {
43
+ @include font-size(13);
44
+ }
45
+ }
46
+ [class^="icon-"], [class*=" icon-"] {
47
+ font: tao !important;
48
+ font-family:tao;
49
+ @include font-size(14);
50
+ line-height: 1;
51
+ padding: 0 9px 0 0;
52
+ position: relative;
53
+ top: 1px;
54
+ left: -1px;
55
+ text-shadow: 0 1px 0 black(.1);
56
+ &.r {
57
+ padding: 0 0 0 9px;
58
+ }
59
+ }
60
+ &:hover {
61
+ opacity: .85;
62
+ }
63
+ &.btn-info {
64
+ @include generic-btn-primary(white(), $info);
65
+ &.btn-secondary {
66
+ @include generic-btn-secondary($info, $uiGeneralContentBg);
67
+ }
68
+ }
69
+ &.btn-error {
70
+ @include generic-btn-primary(white(), $error);
71
+ &.btn-secondary {
72
+ @include generic-btn-secondary($error, $uiGeneralContentBg);
73
+ }
74
+ }
75
+
76
+ &.btn-success {
77
+ @include generic-btn-primary(white(), $success);
78
+ &.btn-secondary {
79
+ @include generic-btn-secondary($success, $uiGeneralContentBg);
80
+ }
81
+ }
82
+
83
+ &.btn-warning {
84
+ @include generic-btn-primary(white(), $warning);
85
+ &.btn-secondary {
86
+ @include generic-btn-secondary($warning, $uiGeneralContentBg);
87
+ }
88
+ }
89
+ }
90
+
91
+ // this construction was needed to avoid problems with extending this code elsewhere
92
+ [class^="btn-"], [class*=" btn-"], .btn-default,
93
+ button, input[type="submit"], input[type="reset"] {
94
+ @extend %generic-btn-code;
95
+ }
96
+
97
+ /* todo move to main ? */
98
+ .disabled, button[disabled] {
99
+ // !important is required here to overwrite any other inherited rule no matter the specificity,
100
+ // as the disabled style must be consistent all across the stylesheet
101
+ background-color: whiten($websiteBorder, .3) !important;
102
+ text-shadow: 1px 1px 0 white(.8) !important;
103
+ cursor: not-allowed !important;
104
+ opacity: .55 !important;
105
+ color: #000 !important;
106
+ border: none !important;
107
+ }
108
+
109
+ // jquery ui
110
+ .ui-button {
111
+ [class^="icon-"], [class*=" icon-"] {
112
+ font-family: tao !important;
113
+ }
114
+ }
@@ -0,0 +1,88 @@
1
+ // buttons and alerts
2
+ $success: rgb(14, 145, 75);
3
+ $info: rgb(14, 93, 145);
4
+ $warning: rgb(216, 174, 91);
5
+ $danger: rgb(201, 96, 67);
6
+ $error: rgb(186, 18, 43);
7
+ $activeInteraction: rgb(195, 90, 19);
8
+
9
+ // corporate identity
10
+ $logoRed: rgb(186, 18, 43);
11
+ $grey: rgb(173, 161, 148);
12
+ $darkBlueGrey: rgb(164, 187, 197);
13
+ $mediumBlueGrey: rgb(193, 212, 220);
14
+ $lightBlueGrey: rgb(228, 236, 239);
15
+ $brownRedGrey: rgb(154, 137, 123);
16
+ $darkBrown: rgb(111, 99, 89);
17
+ $websiteBorder: rgb(141, 148, 158);
18
+
19
+ // ui elements, these should only variations of the above
20
+ // naming convention: jQueryUi theme roller -> camelCase
21
+
22
+ $textColor: #222;
23
+ $textHighlight: white;
24
+
25
+ $uiGeneralContentBg: white();
26
+ $uiGeneralContentBorder: #ddd;
27
+
28
+ $uiHeaderBg: #d4d5d7;
29
+
30
+ $uiClickableDefaultBg: #f3f1ef;
31
+ $uiClickableHoverBg: whiten($info, 0.2);
32
+ //$uiClickableActiveBg: $uiHeaderBg;
33
+ $uiClickableActiveBg: whiten($websiteBorder, 0.2);
34
+ //$uiClickableActiveBg: #aaa;
35
+
36
+ $uiSelectableSelectedBg: whiten($info, 0.2);
37
+ $uiSelectableSelectedHoverBg: whiten($info, 0.1);
38
+ $uiSelectableHoverBg: whiten($info, 0.9);
39
+
40
+ $uiOverlay: $lightBlueGrey;
41
+
42
+ // new layout. Implemented now only for review panel
43
+ $uiReviewPanelBg: #f2f2f2;
44
+ $uiReviewPanelTextDisabled: hsl(0, 0%, 45%);
45
+ $uiReviewPanelTextDefault: hsl(0, 0%, 12%);
46
+ $uiReviewPanelBgDefault: $uiGeneralContentBg;
47
+ $uiReviewPanelPrimaryHighlight: hsl(208, 100%, 32%);
48
+ $uiReviewPanelBgInverted: $uiReviewPanelTextDefault;
49
+ $uiReviewPanelTextInverted: $uiGeneralContentBg;
50
+
51
+ // sidebars etc.
52
+ $canvas: mix(#fff, $grey, 85%);
53
+
54
+ // colors taken from feedback.scss
55
+ $successBgColor: whiten($success, 0.8);
56
+ $successBorderColor: whiten($success, 0.1);
57
+
58
+ $infoBgColor: whiten($info, 0.8);
59
+ $infoBorderColor: whiten($info, 0.1);
60
+
61
+ $warningBgColor: whiten($warning, 0.8);
62
+ $warningBorderColor: whiten($warning, 0.1);
63
+
64
+ $dangerBgColor: whiten($danger, 0.8);
65
+ $dangerBorderColor: whiten($danger, 0.1);
66
+
67
+ $errorBgColor: whiten($error, 0.8);
68
+ $errorBorderColor: whiten($error, 0.1);
69
+
70
+ $darkBar: rgb(51, 51, 51);
71
+ $darkBarTxt: rgb(230, 230, 230);
72
+ $darkBarIcon: rgb(220, 220, 220);
73
+
74
+ $actionLinkColor: #276d9b;
75
+ $actionLinkHoverColor: #4f83a7;
76
+
77
+ $colorWheel-01: #c3ba13;
78
+ $colorWheel-02: #84a610;
79
+ $colorWheel-03: #2b8e0e;
80
+ $colorWheel-04: #0f9787;
81
+ $colorWheel-05: #0e5d91;
82
+ $colorWheel-06: #0d2689;
83
+ $colorWheel-07: #400d83;
84
+ $colorWheel-08: #960e7d;
85
+ $colorWheel-09: #ba122b;
86
+ $colorWheel-10: #c34713;
87
+ $colorWheel-11: #c36f13;
88
+ $colorWheel-12: #c39413;