@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,283 @@
1
+ @mixin iterate-sprite($iconList, $x, $y, $direction, $prefix:'') {
2
+ @each $icon in $iconList {
3
+ #{$prefix}#{$icon} {
4
+ background-position: $x * 1px $y * 1px;
5
+ }
6
+ @if $direction == 'x' {
7
+ $x: $x - 16;
8
+ } @else {
9
+ $y: $y - 16;
10
+ }
11
+ }
12
+ }
13
+
14
+ /*
15
+ Usage:
16
+ - linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
17
+ if 3 colors used then the position of each will be 33,33%
18
+ - linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
19
+ first param - color, second - position. Also you can use px or other valid units for set position.
20
+ */
21
+ @mixin linear-gradient($colorList, $direction: 'to right') {
22
+ $percentage: 0;
23
+ $units: '%';
24
+ $count: length($colorList);
25
+ $increment: 100 / ($count - 1);
26
+ $css: #{$direction + ', '};
27
+ $sep: ', ';
28
+ @each $colorItem in $colorList {
29
+ $color: $colorItem;
30
+ @if (length($colorItem) > 1) {
31
+ $color: nth($colorItem, 1);
32
+ $percentage: nth($colorItem, 2);
33
+ $units: '';
34
+ }
35
+ @if ($percentage >= 100 or index($colorList, $colorItem) == $count) {
36
+ $sep: '';
37
+ }
38
+ $css: #{$css + $color + ' ' + $percentage + $units + $sep};
39
+ $percentage: $percentage + $increment;
40
+ }
41
+ background: linear-gradient( #{$css} );
42
+ }
43
+
44
+ @mixin grid-unit($span, $numCols: 12, $gutter: 0) {
45
+ $gridPx: 840;
46
+ $rawSpanPx: (($gridPx - ($numCols * $gutter)) / $numCols);
47
+ $spanPx: $rawSpanPx * $span + (($span - 1) * $gutter);
48
+ $spanPercent: widthPerc($spanPx, $gridPx);
49
+ $marginPercent: widthPerc($gutter, $gridPx);
50
+ margin-left: $marginPercent;
51
+ width: $spanPercent;
52
+ }
53
+
54
+
55
+ @mixin vendor-prefix($property, $value, $whatToPrefix: property, $prefixes: (-webkit-, -moz-, -ms-, -o-, '')) {
56
+ @if $whatToPrefix == 'property' {
57
+ @each $prefix in $prefixes {
58
+ #{$prefix + $property}: #{$value};
59
+ }
60
+ }
61
+ @else if $whatToPrefix == 'value' {
62
+ @each $prefix in $prefixes {
63
+ #{$property}: #{$prefix + $value};
64
+ }
65
+ }
66
+ }
67
+ @mixin flex-container($wrapBehavior: nowrap, $direction : row) {
68
+ @include vendor-prefix(display, flex, value, (-ms-, -webkit-, ''));
69
+
70
+ @include vendor-prefix(flex-direction, $direction, property, (-ms-, -webkit-, ''));
71
+ @include vendor-prefix(flex-wrap, $wrapBehavior, property, (-ms-, -webkit-, ''));
72
+
73
+ @include vendor-prefix(justify-content, flex-start, property, (-webkit-, ''));
74
+
75
+ @include vendor-prefix(align-content, flex-start, property, (-webkit-, ''));
76
+
77
+ @include vendor-prefix(align-items, stretch, property, (-webkit-, ''));
78
+ }
79
+
80
+ @mixin simple-flex-box($width: auto, $minWidth: 1) {
81
+
82
+ @include vendor-prefix(order, 0, property, (-ms-, -webkit-, ''));
83
+ flex-item-align: stretch;
84
+ -ms-flex-item-align: stretch;
85
+ @include vendor-prefix(align-self, stretch, property, (-webkit-, ''));
86
+
87
+ // if both, min width and width are set, width will win this conflict
88
+ @if ($width == auto) {
89
+ @if ($minWidth != 1) {
90
+ @include vendor-prefix(flex, 1 1 $minWidth, property, (-ms-, -webkit-, ''));
91
+ }
92
+ @else {
93
+ @include vendor-prefix(flex, 1 1 auto, property, (-ms-, -webkit-, ''));
94
+ // @see https://developer.mozilla.org/en-US/docs/Web/CSS/flex-basis#Values
95
+ // for a discussion auto vs. main-size
96
+ @include vendor-prefix(flex, 1 1, property, (-ms-, -webkit-, ''));
97
+ }
98
+ }
99
+ @else {
100
+ @include vendor-prefix(flex, 0 0 $width, property, (-ms-, -webkit-, ''));
101
+ }
102
+ }
103
+
104
+
105
+ @mixin box-shadow($horiz: 1px, $vert: 1px, $blur: 2px, $spread: 0, $color: rgba(0, 0, 0, .2)) {
106
+ @include vendor-prefix(box-shadow, $horiz $vert $blur $spread $color, property);
107
+ }
108
+
109
+ @mixin simple-border($color: #ddd) {
110
+ border: 1px solid $color;
111
+ border-radius: 2px;
112
+ -webkit-border-radius: 2px;
113
+ }
114
+
115
+ @mixin border-radius($radius: 2) {
116
+ -moz-border-radius: $radius * 1px;
117
+ -webkit-border-radius: $radius * 1px;
118
+ border-radius: $radius * 1px;
119
+ }
120
+
121
+ @mixin border-radius-top($radius: 2) {
122
+ -webkit-border-top-left-radius: $radius * 1px;
123
+ -webkit-border-top-right-radius: $radius * 1px;
124
+ -moz-border-radius-topleft: $radius * 1px;
125
+ -moz-border-radius-topright: $radius * 1px;
126
+ border-top-left-radius: $radius * 1px;
127
+ border-top-right-radius: $radius * 1px;
128
+ }
129
+
130
+ @mixin border-radius-bottom($radius: 2) {
131
+ -webkit-border-bottom-right-radius: $radius * 1px;
132
+ -webkit-border-bottom-left-radius: $radius * 1px;
133
+ -moz-border-radius-bottomright: $radius * 1px;
134
+ -moz-border-radius-bottomleft: $radius * 1px;
135
+ border-bottom-right-radius: $radius * 1px;
136
+ border-bottom-left-radius: $radius * 1px;
137
+ }
138
+
139
+ @mixin border-radius-left($radius: 2) {
140
+ -webkit-border-top-left-radius: $radius * 1px;
141
+ -webkit-border-bottom-left-radius: $radius * 1px;
142
+ -moz-border-radius-topleft: $radius * 1px;
143
+ -moz-border-radius-bottomleft: $radius * 1px;
144
+ border-top-left-radius: $radius * 1px;
145
+ border-bottom-left-radius: $radius * 1px;
146
+ }
147
+
148
+ @mixin border-radius-right($radius: 2) {
149
+ -webkit-border-top-right-radius: $radius * 1px;
150
+ -webkit-border-bottom-right-radius: $radius * 1px;
151
+ -moz-border-radius-topright: $radius * 1px;
152
+ -moz-border-radius-bottomright: $radius * 1px;
153
+ border-top-right-radius: $radius * 1px;
154
+ border-bottom-right-radius: $radius * 1px;
155
+ }
156
+
157
+ @mixin border-radius-top-left($radius: 2) {
158
+ -webkit-border-top-left-radius: $radius * 1px;
159
+ -moz-border-radius-topleft: $radius * 1px;
160
+ border-top-left-radius: $radius * 1px;
161
+ }
162
+
163
+ @mixin border-radius-top-right($radius: 2) {
164
+ -webkit-border-top-right-radius: $radius * 1px;
165
+ -moz-border-radius-topright: $radius * 1px;
166
+ border-top-right-radius: $radius * 1px;
167
+ }
168
+
169
+ @mixin border-radius-bottom-right($radius: 2) {
170
+ -webkit-border-bottom-right-radius: $radius * 1px;
171
+ -moz-border-radius-bottomright: $radius * 1px;
172
+ border-bottom-right-radius: $radius * 1px;
173
+ }
174
+
175
+ @mixin border-radius-bottom-left($radius: 2) {
176
+ -webkit-border-bottom-left-radius: $radius * 1px;
177
+ -moz-border-radius-bottomleft: $radius * 1px;
178
+ border-bottom-left-radius: $radius * 1px;
179
+ }
180
+
181
+ @mixin border-box() {
182
+ -moz-box-sizing: border-box;
183
+ -webkit-box-sizing: border-box;
184
+ box-sizing: border-box;
185
+ }
186
+
187
+ @function whiten($color, $white: 0.3) {
188
+ @return mix(#fff, $color, ($white * 100) * 1%);
189
+ }
190
+
191
+ @function blacken($color, $black: 0.3) {
192
+ @return mix(#000, $color, ($black * 100) * 1%);
193
+ }
194
+
195
+ @function widthPerc($colWidth, $context) {
196
+ @return ($colWidth * 100 / $context) * 1%
197
+ }
198
+
199
+ @function remDist($fontSizePx) {
200
+ @return ($fontSizePx / 10) * 1rem
201
+ }
202
+
203
+ @function black($alpha: 1) {
204
+ @return (rgba(0, 0, 0, $alpha))
205
+ }
206
+
207
+ @function white($alpha: 1) {
208
+ @return (rgba(255, 255, 255, $alpha))
209
+ }
210
+
211
+ @mixin font-size($remPx, $important: false) {
212
+ @if $important == true {
213
+ font-size: ($remPx) * 1px !important;
214
+ font-size: ($remPx / 10) * 1rem !important;
215
+ }
216
+ @else {
217
+ font-size: ($remPx) * 1px;
218
+ font-size: ($remPx / 10) * 1rem;
219
+ }
220
+ }
221
+
222
+
223
+ @mixin keyframes($name) {
224
+ @-o-keyframes #{$name} { @content };
225
+ @-moz-keyframes #{$name} { @content };
226
+ @-webkit-keyframes #{$name} { @content };
227
+ @keyframes #{$name} { @content };
228
+ }
229
+
230
+
231
+ @mixin animation($value, $type:'') {
232
+ $animation: animation;
233
+ @if $type != '' {
234
+ $animation: $animation + '-' + $type;
235
+ }
236
+ @include vendor-prefix($animation, $value, property);
237
+ }
238
+
239
+ /// CSS transition mixin to the current selection (apply also vendor prefixes).
240
+ /// See <https://developer.mozilla.org/en-US/docs/Web/CSS/transition> for the values
241
+ ///
242
+ /// @param {property} [$type = all] the CSS property to apply the transition to
243
+ /// @param {time} [$duration = .5s] the transition property
244
+ /// @param {timing-function} [$effect = ease-out] the transition property
245
+ @mixin transition($type : all, $duration : 0.5s, $effect : ease-out, $delay : 0s){
246
+ @include vendor-prefix(transition, $type + ', ' + $duration + ', ' + $effect + ', ' + $delay, property);
247
+ }
248
+
249
+ @mixin fade($duration: 1s){
250
+
251
+ @include keyframes(fade) {
252
+ 0% {opacity:0;}
253
+ 50% {opacity:1;}
254
+ 100% {opacity:0;}
255
+ }
256
+
257
+ @include vendor-prefix(animation, fade 1s forwards, property);
258
+ }
259
+
260
+ @mixin repeat(){
261
+ @include animation(infinite, iteration-count);
262
+ }
263
+
264
+ @mixin largeHeading() {
265
+ @include font-size(20);
266
+ font-family: $headingFont;
267
+ font-style: normal;
268
+ }
269
+
270
+ @mixin disableSelect() {
271
+ @include vendor-prefix(user-select, none, property);
272
+ }
273
+
274
+ /* based on "visually-hidden" mixin in LDS for accessibility goals */
275
+ @mixin visuallyHidden() {
276
+ position: absolute;
277
+ width: 1px;
278
+ height: 1px;
279
+ overflow: hidden;
280
+ clip: rect(1px, 1px, 1px, 1px);
281
+ margin: 0;
282
+ padding: 0;
283
+ }
@@ -0,0 +1,66 @@
1
+ [class*=" col-"], [class^="col-"] {
2
+ float: left;
3
+ min-height: 1rem;
4
+ &:first-child {
5
+ margin-left: 0;
6
+ }
7
+ &.grid-container {
8
+ margin-bottom: 0;
9
+ }
10
+ }
11
+
12
+ .col-12 {
13
+ float: none;
14
+ }
15
+
16
+ .grid-container {
17
+ overflow-x: hidden;
18
+ }
19
+
20
+ .grid-row, .fixed-grid-row, .colrow {
21
+ @extend .clearfix;
22
+ width: widthPerc(852, 840);
23
+ }
24
+
25
+ @for $i from 1 through 12 {
26
+ .col-#{$i} {
27
+ @include grid-unit($i, 12, 12);
28
+ margin-bottom: 12px;
29
+ }
30
+ .alpha {
31
+ margin-left: 0 !important
32
+ }
33
+ }
34
+
35
+ #icon-editor {
36
+
37
+ .grid-row {
38
+ @extend .clearfix;
39
+ width: 100%
40
+ }
41
+ @for $i from 1 through 12 {
42
+ .col-#{$i} {
43
+ @include grid-unit($i, 12);
44
+ margin-top: 0 !important;
45
+ margin-bottom: 0 !important;
46
+ }
47
+ }
48
+ }
49
+
50
+ @media all and (max-width: 1600px) {
51
+ // @for $i from 1 through 12 {
52
+ // .box.col-#{$i} { @include grid-unit($i, 12); }
53
+ // }
54
+ }
55
+
56
+ @media all and (max-width: 1100px) {
57
+ // @for $i from 1 through 8 {
58
+ // .box.col-#{$i} { @include grid-unit($i, 8); }
59
+ // }
60
+ }
61
+
62
+ @media all and (max-width: 768px) {
63
+ // @for $i from 1 through 6 {
64
+ // .box.col-#{$i} { @include grid-unit($i, 6); }
65
+ // }
66
+ }
@@ -0,0 +1,254 @@
1
+ /* Functional styling;
2
+ * These styles are required for noUiSlider to function.
3
+ * You don't need to change these rules to apply your design.
4
+ */
5
+
6
+ .noUi-target,
7
+ .noUi-target * {
8
+ -webkit-touch-callout: none;
9
+ -webkit-user-select: none;
10
+ -ms-touch-action: none;
11
+ -ms-user-select: none;
12
+ -moz-user-select: none;
13
+ -moz-box-sizing: border-box;
14
+ box-sizing: border-box;
15
+ }
16
+ .noUi-base {
17
+ width: 100%;
18
+ height: 100%;
19
+ position: relative;
20
+ }
21
+ .noUi-origin {
22
+ position: absolute;
23
+ right: 0;
24
+ top: 0;
25
+ left: 0;
26
+ bottom: 0;
27
+ }
28
+ .noUi-handle {
29
+ position: relative;
30
+ z-index: 1;
31
+ }
32
+ .noUi-stacking .noUi-handle {
33
+ /* This class is applied to the lower origin when
34
+ its values is > 50%. */
35
+ z-index: 10;
36
+ }
37
+ .noUi-stacking + .noUi-origin {
38
+ /* Fix stacking order in IE7, which incorrectly
39
+ creates a new context for the origins. */
40
+ *z-index: -1;
41
+ }
42
+ .noUi-state-tap .noUi-origin {
43
+ }
44
+ .noUi-state-drag * {
45
+ cursor: inherit !important;
46
+ }
47
+
48
+ /* Slider size and handle placement;
49
+ */
50
+ .noUi-horizontal {
51
+ height: 11px;
52
+ }
53
+ .noUi-horizontal .noUi-handle {
54
+ width: 10px;
55
+ height: 17px;
56
+ left: -5px;
57
+ top: -4px;
58
+ }
59
+
60
+ .noUi-horizontal .noUi-handle:after {
61
+ border-top: 3px solid $uiClickableActiveBg;
62
+ border-left: 5px solid transparent;
63
+ border-right: 5px solid transparent;
64
+ content: "";
65
+ left: 0;
66
+ position: absolute;
67
+ bottom: -3px;
68
+ width: 0;
69
+ }
70
+
71
+ .qti-slider-values{
72
+ margin-top: 6px !important;
73
+ }
74
+
75
+ .noUi-horizontal .noUi-handle {
76
+ &:hover:after {
77
+ border-top: 3px solid $uiClickableHoverBg;
78
+ }
79
+ &.noUi-active {
80
+ &:after {
81
+ border-top-color: $uiClickableHoverBg;
82
+ }
83
+ }
84
+ }
85
+
86
+ .noUi-horizontal.noUi-extended {
87
+ padding: 0 15px;
88
+ }
89
+ .noUi-horizontal.noUi-extended .noUi-origin {
90
+ right: -15px;
91
+ }
92
+ .noUi-vertical {
93
+ width: 11px;
94
+ height: 200px;
95
+ display: inline-block;
96
+ }
97
+ .noUi-vertical .noUi-handle {
98
+ width: 17px;
99
+ height: 10px;
100
+ left: -4px;
101
+ top: -5px;
102
+ }
103
+ .noUi-vertical.noUi-extended {
104
+ padding: 15px 0;
105
+ }
106
+ .noUi-vertical.noUi-extended .noUi-origin {
107
+ bottom: -15px;
108
+ }
109
+
110
+ /* Styling;
111
+ */
112
+ .noUi-background {
113
+ background: $uiGeneralContentBg;
114
+ }
115
+ .noUi-connect {
116
+ background: $uiClickableDefaultBg;
117
+ }
118
+ .noUi-origin {
119
+ }
120
+ .noUi-target {
121
+ @include simple-border()
122
+ }
123
+
124
+ /* Handles and cursors;
125
+ */
126
+ .noUi-dragable {
127
+ cursor: w-resize;
128
+ }
129
+ .noUi-vertical .noUi-dragable {
130
+ cursor: n-resize;
131
+ }
132
+ .noUi-handle {
133
+ background: $uiClickableActiveBg;
134
+ color: $uiClickableActiveBg;
135
+ cursor: default;
136
+ }
137
+
138
+ .noUi-active, .noUi-handle:hover{
139
+ background:$uiClickableHoverBg;
140
+ color: $uiClickableHoverBg;
141
+ }
142
+
143
+ .noUi-handle:after {
144
+ left: 17px;
145
+ }
146
+ .noUi-vertical .noUi-handle:before,
147
+ .noUi-vertical .noUi-handle:after {
148
+ width: 14px;
149
+ height: 1px;
150
+ left: 6px;
151
+ top: 14px;
152
+ }
153
+ .noUi-vertical .noUi-handle:after {
154
+ top: 17px;
155
+ }
156
+
157
+ /* Disabled state;
158
+ */
159
+ [disabled].noUi-connect,
160
+ [disabled] .noUi-connect {
161
+ background: #B8B8B8;
162
+ }
163
+ [disabled] .noUi-handle {
164
+ cursor: not-allowed;
165
+ }
166
+
167
+ .noUi-horizontal {
168
+
169
+ .step-marker {
170
+ position:relative;
171
+ //margin-bottom: 10px;
172
+ span {
173
+ font-size: 10px;
174
+ position: relative;
175
+ display:block;
176
+ float:left;
177
+ text-align:center;
178
+ min-height: 10px;
179
+ &:before {
180
+ width: 1px;
181
+ height: 5px;
182
+ position: absolute;
183
+ content: '';
184
+ background: whiten($textColor, .15);
185
+ left: 50%;
186
+ }
187
+ }
188
+ &:before {
189
+ }
190
+ &.after {
191
+ top: 5px;
192
+ span {
193
+ &:before {
194
+ top: -4px;
195
+ }
196
+ }
197
+ }
198
+ &.before {
199
+ top: -28px;
200
+ span {
201
+ &:before {
202
+ top: 13px;
203
+ }
204
+ }
205
+ }
206
+ }
207
+ }
208
+
209
+ .item-editor-sidebar .noUi-target {
210
+ margin-left: 4px;
211
+ margin-right: 4px;
212
+ }
213
+
214
+ .noUi-vertical-wrapper {
215
+ position: relative;
216
+ display: inline-block;
217
+ .step-marker {
218
+ position:absolute;
219
+ height: 100%;
220
+ top: 0;
221
+ span {
222
+ font-size: 10px;
223
+ position: relative;
224
+ display: block;
225
+ &:before {
226
+ width: 5px;
227
+ height: 1px;
228
+ position: absolute;
229
+ content: '';
230
+ background: whiten($textColor, .15);
231
+ top: 50%;
232
+ }
233
+ }
234
+ &:before {
235
+ }
236
+
237
+ &.after {
238
+ left: 20px;
239
+ span {
240
+ &:before {
241
+ left: -9px;
242
+ }
243
+ }
244
+ }
245
+ &.before {
246
+ span {
247
+ &:before {
248
+ left: -40%;
249
+ }
250
+ }
251
+ }
252
+ }
253
+ }
254
+