@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
@@ -0,0 +1,827 @@
1
+ // Harmonize focus style between browsers
2
+ $autofillFocusBorderColor: $colorWheel-01;
3
+ $autofillBgColor: rgb(250, 255, 189); // = Chrome default setting
4
+
5
+ @mixin focus-style {
6
+ border: 1px solid $info !important;
7
+ &:-webkit-autofill {
8
+ border-color: $autofillFocusBorderColor !important;
9
+ }
10
+ }
11
+ input,
12
+ select,
13
+ textarea {
14
+ &:focus {
15
+ outline: none;
16
+ }
17
+ &:not(.error):not(.select2-input):focus {
18
+ @include focus-style;
19
+ }
20
+ }
21
+
22
+ label, .form_desc {
23
+ display: inline-block;
24
+ cursor: pointer;
25
+ margin-bottom: 5px;
26
+ padding-right: 10px;
27
+
28
+ abbr {
29
+ color: $info;
30
+ border-bottom: none;
31
+ cursor: inherit;
32
+ text-decoration: none;
33
+ padding-left: 2px;
34
+ }
35
+ }
36
+
37
+ #loginForm {
38
+ label {
39
+ abbr {
40
+ display:none;
41
+ }
42
+ }
43
+ }
44
+
45
+ .uploader .file-upload.grid-row {
46
+ max-width: none;
47
+ }
48
+
49
+ .file-upload {
50
+ display: inline-block;
51
+ position: relative;
52
+ overflow:hidden;
53
+ max-width: 300px;
54
+ .file-name {
55
+ padding: 2px 5px;
56
+ background: white;
57
+ &.placeholder {
58
+ font-style: italic;
59
+ color: whiten($textColor, .8);
60
+ }
61
+ @include simple-border();
62
+ &.active {
63
+ font-style: normal;
64
+ color: $textColor;
65
+ }
66
+ }
67
+ input[type="file"] {
68
+ font-size: 80px !important;
69
+ position: absolute;
70
+ left: auto;
71
+ right: 0;
72
+ top: 0;
73
+ opacity: 0;
74
+ cursor: pointer;
75
+ }
76
+
77
+ &:hover {
78
+ .btn-info {
79
+ opacity: .85;
80
+ }
81
+ }
82
+ }
83
+
84
+ .uri-container {
85
+ position: relative;
86
+ display: inline-block;
87
+ width: 65%;
88
+ overflow:hidden;
89
+ input {
90
+ &.final {
91
+ width: calc(100% - 30px) !important;
92
+ position: absolute;
93
+ left: 0;
94
+ top: 0;
95
+ border-color: #bbb;
96
+ height: 100%;
97
+ border-top-right-radius: 0;
98
+ border-bottom-right-radius: 0;
99
+ border-right: none;
100
+ }
101
+ }
102
+ .clipboard-command {
103
+ position: absolute;
104
+ top: 0;
105
+ right: 0;
106
+ background: whiten($uiHeaderBg, .3);
107
+ cursor: pointer;
108
+ color: $textColor;
109
+ display: block;
110
+ width: 30px;
111
+ height: 100%;
112
+ text-align:center;
113
+ line-height: 23px;
114
+ text-shadow: none;
115
+ border: 1px #ccc solid;
116
+ border-top-right-radius: 2px;
117
+ border-bottom-right-radius: 2px;
118
+ &:hover {
119
+ background: whiten($uiHeaderBg, .45);
120
+ }
121
+ }
122
+ }
123
+
124
+ .file-drop {
125
+ height: 150px;
126
+ overflow-y: auto;
127
+ border: solid 1px $uiGeneralContentBorder;
128
+ position: relative;
129
+ .dragholder{
130
+ padding-top: 20px;
131
+ text-align: center;
132
+ color: $uiGeneralContentBorder;
133
+ @include font-size(20);
134
+ }
135
+ &.drag-hover {
136
+ border-color: $uiClickableHoverBg;
137
+ color: $uiClickableHoverBg;
138
+ &:after {
139
+ content: attr(data-drop-msg);
140
+ position: absolute;
141
+ top: 0;
142
+ left: 0;
143
+ right: 0;
144
+ bottom: 0;
145
+ width: 75%;
146
+ height: 30px;
147
+ padding: 5px;
148
+ background-color: $info;
149
+ color: white();
150
+ text-align: center;
151
+ margin: auto;
152
+ }
153
+ }
154
+ ul {
155
+ list-style-type: none;
156
+ position: relative;
157
+ margin: 0;
158
+ padding: 0;
159
+ & > li{
160
+ position: relative;
161
+ padding: 6px 60px 6px 6px;
162
+ @include simple-border;
163
+ @extend .truncate;
164
+ &:before {
165
+ @include tao-icon-setup;
166
+ @include icon-document;
167
+ @include font-size(14);
168
+ line-height: 14px;
169
+ margin-right: 5px;
170
+ color: $info;
171
+ }
172
+ .size {
173
+ color: $info;
174
+ margin-left: 5px;
175
+ font-style: italic;
176
+ }
177
+ .status {
178
+ position: absolute;
179
+ right: 30px;
180
+ top: 6px;
181
+ &.sending:before {
182
+ @include tao-icon-setup;
183
+ @include icon-download;
184
+ @include fade(2s);
185
+ @include repeat;
186
+ }
187
+ &.success:before{
188
+ @include tao-icon-setup;
189
+ @include icon-success;
190
+ color: $success;
191
+ }
192
+ &.error:before{
193
+ @include tao-icon-setup;
194
+ @include icon-error;
195
+ color: $error;
196
+ }
197
+ }
198
+ .icon-close {
199
+ position: absolute;
200
+ right: 6px;
201
+ top: 6px;
202
+ }
203
+ }
204
+ }
205
+ }
206
+
207
+
208
+ .pseudo-label-box {
209
+ position: relative;
210
+ cursor: pointer;
211
+ & > label {
212
+ width: 20px;
213
+ position: absolute;
214
+ top: 0;
215
+ margin: 0;
216
+ left: 0;
217
+
218
+ & + div {
219
+ cursor: pointer;
220
+ margin-left: 24px;
221
+ }
222
+ }
223
+ abbr {
224
+ border: none;
225
+ color: $info;
226
+ }
227
+ }
228
+
229
+ ol, ul {
230
+ &.horizontal {
231
+ .pseudo-label-box {
232
+ & > label {
233
+ & + div {
234
+ display: table;
235
+ }
236
+ }
237
+ }
238
+ }
239
+ }
240
+
241
+ input[type="color"],
242
+ input[type="date"],
243
+ input[type="datetime"],
244
+ input[type="datetime-local"],
245
+ input[type="email"],
246
+ input[type="month"],
247
+ input[type="number"],
248
+ input[type="range"],
249
+ input[type="search"],
250
+ input[type="tel"],
251
+ input[type="time"],
252
+ input[type="text"],
253
+ input[type="password"],
254
+ input[type="url"],
255
+ input[type="week"],
256
+ textarea,
257
+ select {
258
+ @include simple-border();
259
+ @include border-radius(2);
260
+ font-family: $regularFont;
261
+ padding: 4px;
262
+ min-width: 150px;
263
+ background-color: white;
264
+ color: $textColor;
265
+ max-width: 300px;
266
+
267
+ &.disabled, &[disabled], &[readonly] {
268
+ color: $textColor;
269
+ opacity: .55 !important;
270
+ cursor: default;
271
+ }
272
+ &.disabled, &[disabled] {
273
+ cursor: not-allowed !important;
274
+ }
275
+
276
+ & ~ .validate-error {
277
+ color: $error;
278
+ }
279
+ &.error {
280
+ border-color: $error;
281
+ color: $error;
282
+ & + .form-error{
283
+ color: $error;
284
+ text-align: right;
285
+ }
286
+ }
287
+ }
288
+
289
+ input[type="text"].viewable-hiddenbox-input,
290
+ input[type="password"].viewable-hiddenbox-input {
291
+ @include border-radius-right(0);
292
+ border-right-width: 0;
293
+ -webkit-tap-highlight-color: rgba(0,0,0,0); // remove the gray overlay when input field is tapped on iPad
294
+ &:focus {
295
+ border-right-width: 0 !important;
296
+ }
297
+ &::-ms-reveal {
298
+ display: none; // remove microsoft password toggler
299
+ }
300
+ }
301
+
302
+ .viewable-hiddenbox-toggle {
303
+ @include simple-border();
304
+ @include border-radius-right(2);
305
+ @include border-radius-left(0);
306
+ border-left-width: 0;
307
+ padding: 2px 4px 0;
308
+ background-color: white;
309
+ color: whiten($textColor, .3);
310
+ cursor: pointer;
311
+
312
+ &:hover {
313
+ color: $textColor;
314
+ }
315
+ }
316
+
317
+ .viewable-hiddenbox-input.error + .viewable-hiddenbox-toggle {
318
+ border-color: $error;
319
+ }
320
+
321
+ .viewable-hiddenbox-input:focus:not(.error) + .viewable-hiddenbox-toggle {
322
+ @include focus-style();
323
+ border-left:0 !important;
324
+ }
325
+
326
+ .viewable-hiddenbox-input:-webkit-autofill + .viewable-hiddenbox-toggle {
327
+ background-color: $autofillBgColor;
328
+ }
329
+
330
+ .viewable-hiddenbox-input:-webkit-autofill:focus:not(.error) + .viewable-hiddenbox-toggle {
331
+ border-color: $autofillFocusBorderColor !important;
332
+ }
333
+
334
+ .form_radlst {
335
+
336
+ input[type="radio"],
337
+ input[type="checkbox"] {
338
+ &.error {
339
+
340
+ + label {
341
+ border-color: $error;
342
+ color: $error;
343
+ }
344
+ }
345
+ }
346
+
347
+ &.error {
348
+ .select2-container {
349
+ > :first-child {
350
+ border-color: $error;
351
+ }
352
+ }
353
+ }
354
+
355
+ + .form-error {
356
+ color: $error;
357
+ text-align: right;
358
+ }
359
+
360
+ }
361
+
362
+ option {
363
+ background: white;
364
+ color: $textColor;
365
+ }
366
+
367
+
368
+
369
+ label {
370
+ position: relative;
371
+ [class^="icon-checkbox"],
372
+ [class*=" icon-checkbox"] {
373
+ &:after {
374
+ @include icon-checkbox-bg;
375
+ color:white !important;
376
+ }
377
+ }
378
+ [class^="icon-radio"],
379
+ [class*=" icon-radio"] {
380
+ padding: 0 2px 0 3px;
381
+ &:after {
382
+ @include icon-radio-bg;
383
+ color:white !important;
384
+ }
385
+ }
386
+ .icon-checkbox,
387
+ .icon-checkbox-crossed {
388
+ padding: 0 3px 0 3px;
389
+ }
390
+ .icon-checkbox-checked {
391
+ padding: 0 0 0 3px;
392
+ }
393
+ [class^="icon-"],
394
+ [class*=" icon-"] {
395
+ @include font-size(16);
396
+ position: relative;
397
+ top: 2px;
398
+ color: #555;
399
+ display: inline-block;
400
+ width: 20px;
401
+ &:before, &:after {
402
+ position: relative;
403
+ }
404
+ &:before {
405
+ z-index: 3;
406
+ }
407
+ &:after {
408
+ position: relative;
409
+ z-index: 2;
410
+ left: -1em;
411
+ }
412
+ }
413
+
414
+ input[type="radio"],
415
+ input[type="checkbox"] {
416
+ @include visuallyHidden;
417
+
418
+ &:focus ~ [class^="icon-"],
419
+ &:focus ~ [class*=" icon-"],
420
+ &:active ~ [class^="icon-"],
421
+ &:active ~ [class*=" icon-"] {
422
+ color: #222;
423
+ }
424
+ &:checked ~ .icon-checkbox:before {
425
+ @extend .icon-checkbox-checked:before;
426
+ }
427
+ &:indeterminate ~ .icon-checkbox:before {
428
+ @extend .icon-checkbox-indeterminate:before;
429
+ }
430
+ &:checked ~ .icon-radio:before {
431
+ @extend .icon-radio-checked:before;
432
+ }
433
+ &:checked ~ .icon-checkbox.cross:before {
434
+ @extend .icon-checkbox-crossed:before;
435
+ }
436
+ &:indeterminate ~ .icon-checkbox:before {
437
+ @extend .icon-checkbox-indeterminate:before;
438
+ }
439
+ &.disabled, &[disabled], &[readonly] {
440
+ & ~[class^="icon-"],
441
+ & ~[class*=" icon-"]{
442
+ cursor: not-allowed !important;
443
+ opacity: .4 !important;
444
+ color: #555;
445
+ }
446
+ }
447
+ }
448
+ }
449
+
450
+ // Edge styles go here, they cannot be include in the rule set below :-(
451
+ @supports (-ms-ime-align:auto) {
452
+ label {
453
+ [class^="icon-radio"],
454
+ [class*=" icon-radio"],
455
+ [class^="icon-checkbox"],
456
+ [class*=" icon-checkbox"] {
457
+ &:after {
458
+ left:auto !important;
459
+ top: 0 !important;
460
+ z-index: 2;
461
+ position: absolute;
462
+ }
463
+ }
464
+ }
465
+ }
466
+
467
+ // IE10+ CSS styles go here
468
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
469
+ label {
470
+ [class^="icon-radio"],
471
+ [class*=" icon-radio"],
472
+ [class^="icon-checkbox"],
473
+ [class*=" icon-checkbox"] {
474
+ &:after {
475
+ color:white !important;
476
+ left:2px;
477
+ position: absolute;
478
+ z-index: 2;
479
+ }
480
+ }
481
+ }
482
+ }
483
+
484
+ .search-form, .filter-form {
485
+ display:none;
486
+
487
+ @include font-size(13);
488
+ .xhtml_form {
489
+
490
+ .form_desc {
491
+ display:block;
492
+ width: auto;
493
+ margin-top: 5px;
494
+ margin-bottom: 1px;
495
+ }
496
+ .form-toolbar {
497
+ margin: 0 !important;
498
+ }
499
+ input {
500
+ &[type="text"], &[type="password"] {
501
+ width: 100%;
502
+ max-width: none;
503
+ }
504
+ }
505
+ select, textarea, .form_radlst {
506
+ width: 100%;
507
+ max-width: none;
508
+ }
509
+
510
+ .form-group {
511
+ margin-bottom: 0;
512
+ & > div > div {
513
+ margin-bottom: 10px;
514
+ }
515
+ }
516
+ label {
517
+ margin: 0;
518
+ }
519
+
520
+ .form_radlst {
521
+ padding-left: 2px
522
+ }
523
+ }
524
+
525
+ .ui-widget-header, .search-title {
526
+ @include font-size(16);
527
+ border: none;
528
+ margin: 8px 0;
529
+ }
530
+
531
+ & > div {
532
+ background: transparent;
533
+ }
534
+ }
535
+
536
+ .xhtml_form {
537
+ form, .form {
538
+ > div {
539
+ margin-bottom: 10px;
540
+
541
+ &.property-container {
542
+ border-top: 1px solid $uiGeneralContentBorder;
543
+ .tree {
544
+ ul {
545
+ background: transparent !important;
546
+ }
547
+ }
548
+ }
549
+
550
+ }
551
+ h3 {
552
+ margin: 0 0 12px;
553
+ }
554
+ }
555
+
556
+
557
+
558
+ // these buttons are originally green which turned out to be avery poor choice
559
+ [class^="btn-"], [class*=" btn-"],
560
+ button, input[type="submit"], input[type="reset"] {
561
+ &.btn-success {
562
+ @include generic-btn-primary(white(), $info);
563
+ &.btn-secondary {
564
+ @include generic-btn-secondary($info, $uiGeneralContentBg);
565
+ }
566
+ }
567
+ }
568
+
569
+ .form-toolbar {
570
+ text-align: right;
571
+ margin: 30px 0 0 0;
572
+ @extend %clearfix;
573
+
574
+ [dir="rtl"] & {
575
+ text-align: left;
576
+ }
577
+ }
578
+
579
+ .property-title {
580
+ margin-bottom: 10px;
581
+ }
582
+
583
+ .property-heading-icon {
584
+ margin-left: 5px;
585
+ &:hover {
586
+ color: $info;
587
+ }
588
+ }
589
+
590
+ .property-heading-label {
591
+ padding-left: 5px;
592
+ &:before {
593
+ font-size: 12px;
594
+ content: '\2022 ';
595
+ line-height: 2px;
596
+ opacity: .8;
597
+ }
598
+ }
599
+
600
+ .property-edit-container {
601
+ display:none;
602
+ width: 100%;
603
+ }
604
+
605
+
606
+ .property-heading-toolbar {
607
+ float: right;
608
+ .property-parent-label {
609
+ display:inline-block;
610
+ padding: 0 5px;
611
+ }
612
+ [class^="icon-"], [class*=" icon-"] {
613
+ background: white(.5);
614
+ @include simple-border();
615
+ margin-left: 1px;
616
+ padding: 3px;
617
+ cursor: pointer;
618
+ min-width: 24px;
619
+ display: inline-block;
620
+ text-align: center;
621
+ &:hover {
622
+ background: white(.7);
623
+ color: $info;
624
+ }
625
+ }
626
+ }
627
+
628
+ .property-block {
629
+ overflow: hidden;
630
+ padding: 6px 0;
631
+ border-bottom: 1px white solid;
632
+ &.property-block-first {
633
+ border-top: 1px white solid;
634
+ }
635
+ &.readonly-property div {
636
+ display: inline;
637
+ div {
638
+ float: right;
639
+ padding-left: 5px;
640
+ color: whiten($textColor, .4);
641
+ cursor: default;
642
+ }
643
+ }
644
+ &.parent-property div {
645
+ display: inline;
646
+ div {
647
+ float: right;
648
+ padding-left: 5px;
649
+ color: whiten($textColor, .2);
650
+ }
651
+ }
652
+ &.regular-property {
653
+ & > div {
654
+ @include simple-border();
655
+ padding: 15px;
656
+ background: white(.5);
657
+ margin: 5px 0;
658
+ position: relative;
659
+ top: 6px;
660
+ div {
661
+ padding: 2px 0
662
+ }
663
+ }
664
+ }
665
+ }
666
+
667
+ ul.json-object-list {
668
+ @include simple-border();
669
+ display: inline-block;
670
+ padding: 15px;
671
+ width: 65%;
672
+ margin: 5px 0;
673
+ position: relative;
674
+ background: white(.5);
675
+ list-style-type: none;
676
+
677
+ li {
678
+ margin-bottom: 10px;
679
+
680
+ input[type="text"] {
681
+ width: 100%;
682
+ }
683
+ }
684
+ }
685
+
686
+ .bool-list {
687
+ overflow: hidden;
688
+ .form_desc {
689
+ float:left;
690
+ }
691
+ }
692
+
693
+ .form_disabled_message {
694
+ width: 65%;
695
+ margin-left: auto;
696
+ font-size: 12px;
697
+ }
698
+
699
+ .form_desc {
700
+ width: 35%;
701
+ display:inline-block;
702
+ padding: 0 10px 0 0;
703
+ vertical-align: top;
704
+
705
+ &.hidden-input-label {
706
+ width: auto;
707
+ }
708
+
709
+ & ~ .form-elt-container {
710
+ display: inline-block;
711
+ width: 65%;
712
+ .tree {
713
+ max-width: none;
714
+ @include simple-border();
715
+ }
716
+ }
717
+
718
+ [dir="rtl"] & {
719
+ padding: 0 0 0 10px;
720
+ }
721
+ }
722
+ input {
723
+ &[type="text"], &[type="password"] {
724
+ width: 65%;
725
+ max-width: none;
726
+ }
727
+ }
728
+ select, textarea, .form_radlst {
729
+ width: 65%;
730
+ max-width: none;
731
+ }
732
+
733
+ .viewable-hiddenbox {
734
+ display: flex;
735
+ label {
736
+ flex: 0 0 auto;
737
+ }
738
+ input {
739
+ flex: 1 1 auto;
740
+ height: 100%; // Safari fix
741
+ }
742
+ .viewable-hiddenbox-toggle {
743
+ flex: 0 0 24px;
744
+ }
745
+ }
746
+
747
+ .form_radlst {
748
+ display:inline-block;
749
+ }
750
+
751
+ .datepicker-input {
752
+ /*
753
+ z-index value of datepicker will be inherited from input z-index value+1
754
+ z-index of datepiker should be higher than z-index of main menu (see https://oat-sa.atlassian.net/browse/TAO-936)
755
+ */
756
+ position: relative;
757
+ z-index: 8100;
758
+ }
759
+
760
+ .form-group {
761
+ & > div > div {
762
+ position: relative;
763
+ margin-bottom: 12px;
764
+ .has-unit {
765
+ padding-right: 45px
766
+ }
767
+ .unit {
768
+ position: absolute;
769
+ top: 1px;
770
+ right: 1px;
771
+ background: $canvas;
772
+ width: auto;
773
+ display: block;
774
+ padding: 3px 10px;
775
+ @include border-radius-right();
776
+ opacity: .8;
777
+ cursor: default;
778
+ }
779
+ }
780
+ }
781
+
782
+ .btn-info {
783
+ float:left;
784
+ }
785
+
786
+ .btn-success {
787
+ float: right;
788
+ }
789
+
790
+ .form_checklst{
791
+ .grid-row {
792
+ [class*=" col-"], [class^="col-"] {
793
+ margin: 0;
794
+ .elt_desc {
795
+ padding: 0 10px;
796
+ }
797
+ .tooltip-trigger{
798
+ position: relative;
799
+ top: 2px;
800
+ color: $danger;
801
+ }
802
+ }
803
+ &.readonly{
804
+ .elt_desc, input[type="checkbox"]{
805
+ cursor: not-allowed;
806
+ }
807
+ .elt_desc{
808
+ opacity : 0.45;
809
+ }
810
+ }
811
+ }
812
+ }
813
+ }
814
+
815
+
816
+ input {
817
+ &[type="checkbox"], &[type="radio"] {
818
+ position: relative;
819
+ margin-right: 4px;
820
+ }
821
+ }
822
+
823
+ #cspHeader {
824
+ .form_radlst {
825
+ width: 85%
826
+ }
827
+ }