@transferwise/neptune-css 14.28.2 → 14.29.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 (44) hide show
  1. package/dist/css/accordion.css +24 -46
  2. package/dist/css/alerts.css +56 -124
  3. package/dist/css/badge.css +20 -30
  4. package/dist/css/breadcrumbs.css +6 -4
  5. package/dist/css/button-groups.css +116 -254
  6. package/dist/css/buttons.css +51 -90
  7. package/dist/css/circles.css +38 -76
  8. package/dist/css/close.css +1 -4
  9. package/dist/css/column-layout.css +38 -60
  10. package/dist/css/currency-flags.css +4 -17
  11. package/dist/css/decision.css +14 -12
  12. package/dist/css/dropdowns.css +59 -210
  13. package/dist/css/droppable.css +43 -38
  14. package/dist/css/flex.css +40 -136
  15. package/dist/css/footer.css +15 -14
  16. package/dist/css/grid.css +383 -1430
  17. package/dist/css/input-groups.css +254 -542
  18. package/dist/css/link-callout.css +2 -8
  19. package/dist/css/list-group.css +57 -92
  20. package/dist/css/loaders.css +11 -11
  21. package/dist/css/media.css +10 -34
  22. package/dist/css/modals.css +49 -59
  23. package/dist/css/navbar.css +372 -812
  24. package/dist/css/navs.css +59 -124
  25. package/dist/css/neptune-addons.css +687 -1234
  26. package/dist/css/neptune-core.css +123 -229
  27. package/dist/css/neptune-social-media.css +9 -33
  28. package/dist/css/neptune.css +3039 -6483
  29. package/dist/css/panels.css +143 -243
  30. package/dist/css/popovers.css +114 -295
  31. package/dist/css/process.css +64 -77
  32. package/dist/css/progress-bars.css +13 -19
  33. package/dist/css/select.css +21 -53
  34. package/dist/css/sequences.css +99 -219
  35. package/dist/css/table.css +48 -43
  36. package/dist/css/tick.css +10 -10
  37. package/dist/css/tooltip.css +49 -82
  38. package/dist/css/utilities.css +12 -40
  39. package/dist/css/wells.css +16 -16
  40. package/package.json +2 -2
  41. package/src/less/addons/_spacing-utilities.less +4 -4
  42. package/src/less/mixins/_logical-properties-IE-friendly.less +1 -0
  43. package/src/less/mixins/_logical-properties-modern-browsers.less +80 -41
  44. package/src/less/mixins/_logical-properties.less +3 -3
@@ -10,26 +10,20 @@ table th[class*="col-"] {
10
10
  display: table-cell;
11
11
  }
12
12
  caption {
13
- padding-top: 16px;
14
- padding-bottom: 16px;
13
+ padding-block-start: 16px;
14
+ padding-block-end: 16px;
15
15
  color: #5d7079;
16
16
  color: var(--color-content-secondary);
17
- text-align: left;
18
- }
19
- [dir="rtl"] caption {
20
- text-align: right;
17
+ text-align: start;
21
18
  }
22
19
  th {
23
- text-align: left;
24
- }
25
- [dir="rtl"] th {
26
- text-align: right;
20
+ text-align: start;
27
21
  }
28
22
  .table {
29
- width: 100%;
30
- max-width: 100%;
31
- margin-bottom: 24px;
32
- margin-bottom: var(--size-24);
23
+ inline-size: 100%;
24
+ max-inline-size: 100%;
25
+ margin-block-end: 24px;
26
+ margin-block-end: var(--size-24);
33
27
  }
34
28
  .table > thead > tr > th,
35
29
  .table > tbody > tr > th,
@@ -37,27 +31,33 @@ th {
37
31
  .table > thead > tr > td,
38
32
  .table > tbody > tr > td,
39
33
  .table > tfoot > tr > td {
40
- padding: 24px 16px;
41
- padding: var(--size-24) var(--size-16);
34
+ padding-block: 24px;
35
+ padding-block: var(--size-24);
36
+ padding-inline: 16px;
37
+ padding-inline: var(--size-16);
42
38
  line-height: 1.5;
43
39
  line-height: var(--line-height-body);
44
40
  vertical-align: top;
45
- border-top: 1px solid rgba(0,0,0,0.10196);
46
- border-top: 1px solid var(--color-border-neutral);
47
- border-bottom: 0;
41
+ border-block-start: 1px solid rgba(0,0,0,0.10196);
42
+ border-block-start: 1px solid #0000001a;
43
+ border-block-start: 1px solid var(--color-border-neutral);
44
+ border-block-end: 0;
48
45
  transition: border ease 0.15s;
49
46
  }
50
47
  .table > .thead > ol > li,
51
48
  .table > .tbody > dl > dd,
52
49
  .table > .tfoot > ol > li {
53
- padding: 24px 16px;
54
- padding: var(--size-24) var(--size-16);
50
+ padding-block: 24px;
51
+ padding-block: var(--size-24);
52
+ padding-inline: 16px;
53
+ padding-inline: var(--size-16);
55
54
  line-height: 1.5;
56
55
  line-height: var(--line-height-body);
57
56
  vertical-align: top;
58
- border-top: 1px solid rgba(0,0,0,0.10196);
59
- border-top: 1px solid var(--color-border-neutral);
60
- border-bottom: 0;
57
+ border-block-start: 1px solid rgba(0,0,0,0.10196);
58
+ border-block-start: 1px solid #0000001a;
59
+ border-block-start: 1px solid var(--color-border-neutral);
60
+ border-block-end: 0;
61
61
  transition: border ease 0.15s;
62
62
  }
63
63
  .table > thead > tr > th,
@@ -71,7 +71,7 @@ th {
71
71
  }
72
72
  .table > thead > tr > th .tw-icon,
73
73
  .table > .thead > ol > li .tw-icon {
74
- margin-top: -3px;
74
+ margin-block-start: -3px;
75
75
  }
76
76
  .table > caption + thead > tr:first-child > th,
77
77
  .table > colgroup + thead > tr:first-child > th,
@@ -79,14 +79,15 @@ th {
79
79
  .table > caption + thead > tr:first-child > td,
80
80
  .table > colgroup + thead > tr:first-child > td,
81
81
  .table > thead:first-child > tr:first-child > td {
82
- border-top: 0;
82
+ border-block-start: 0;
83
83
  }
84
84
  .table > .thead:first-child > ol:first-child > li {
85
- border-top: 0;
85
+ border-block-start: 0;
86
86
  }
87
87
  .table > tbody + tbody {
88
- border-top: 1px solid rgba(0,0,0,0.10196);
89
- border-top: 1px solid var(--color-border-neutral);
88
+ border-block-start: 1px solid rgba(0,0,0,0.10196);
89
+ border-block-start: 1px solid #0000001a;
90
+ border-block-start: 1px solid var(--color-border-neutral);
90
91
  }
91
92
  .table .table {
92
93
  background-color: #ffffff;
@@ -314,21 +315,21 @@ table col[class*="col-"] {
314
315
  }
315
316
  .table-responsive {
316
317
  overflow-x: auto;
317
- min-height: 0.01%;
318
+ min-block-size: 0.01%;
318
319
  }
319
320
  .table-responsive.table-bordered {
320
321
  border: 0;
321
322
  }
322
323
  @media screen and (max-width: 839.98px) {
323
324
  .table-responsive {
324
- width: 100%;
325
- margin-bottom: 24px;
326
- margin-bottom: var(--size-24);
325
+ inline-size: 100%;
326
+ margin-block-end: 24px;
327
+ margin-block-end: var(--size-24);
327
328
  overflow-y: hidden;
328
329
  -ms-overflow-style: -ms-autohiding-scrollbar;
329
330
  }
330
331
  .table-responsive > .table {
331
- margin-bottom: 0;
332
+ margin-block-end: 0;
332
333
  }
333
334
  .table-responsive > .table > thead > tr > th,
334
335
  .table-responsive > .table > tbody > tr > th,
@@ -345,7 +346,7 @@ table col[class*="col-"] {
345
346
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
346
347
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
347
348
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
348
- border-bottom: 0;
349
+ border-block-end: 0;
349
350
  }
350
351
  .table-responsive.table-bordered {
351
352
  border: 1px solid rgba(134,167,189,0.10196);
@@ -398,10 +399,12 @@ table col[class*="col-"] {
398
399
  border: 1px #c9cbce solid;
399
400
  border: 1px var(--color-interactive-secondary) solid;
400
401
  border-radius: 3px;
401
- margin-bottom: 24px;
402
- margin-bottom: var(--size-24);
403
- padding: 24px 1.5 0;
404
- padding: var(--size-24) var(--line-height-body) 0;
402
+ margin-block-end: 24px;
403
+ margin-block-end: var(--size-24);
404
+ padding-block: 24px 0;
405
+ padding-block: var(--size-24) 0;
406
+ padding-inline: 1.5;
407
+ padding-inline: var(--line-height-body);
405
408
  }
406
409
  .table > .tbody > dl > dd {
407
410
  padding: 0;
@@ -413,20 +416,22 @@ table col[class*="col-"] {
413
416
  }
414
417
  @media (max-width: 599.98px) {
415
418
  .table > .tbody > dl {
416
- padding-bottom: 8px;
419
+ padding-block-end: 8px;
417
420
  }
418
421
  }
419
422
  /* Deprecated - Table CSS for components moved inside @transferwise/components */
420
423
  .table-calendar {
421
- min-width: 300px;
424
+ min-inline-size: 300px;
422
425
  }
423
426
  .table-calendar > tbody > tr > td {
424
427
  padding: 0;
425
428
  }
426
429
  .table-calendar > tbody > tr > td > a {
427
430
  display: block;
428
- padding: 4px 0;
429
- margin: 4px 2px;
431
+ padding-block: 4px;
432
+ padding-inline: 0;
433
+ margin-block: 4px;
434
+ margin-inline: 2px;
430
435
  border-radius: 3px;
431
436
  text-align: center;
432
437
  -webkit-text-decoration: none;
package/dist/css/tick.css CHANGED
@@ -1,8 +1,8 @@
1
1
  .tw-checkbox-check {
2
2
  position: relative;
3
3
  display: inline-block;
4
- width: 10px;
5
- height: 8px;
4
+ inline-size: 10px;
5
+ block-size: 8px;
6
6
  }
7
7
  .tw-checkbox-check::before,
8
8
  .tw-checkbox-check::after {
@@ -12,8 +12,8 @@
12
12
  background: var(--color-background-screen);
13
13
  transform: translateX(0.5px) rotate(-45deg);
14
14
  transform-origin: left bottom;
15
- left: 8px;
16
- left: var(--size-8);
15
+ inset-inline-start: 8px;
16
+ inset-inline-start: var(--size-8);
17
17
  }
18
18
  .tw-checkbox-check .has-error::before,
19
19
  .tw-checkbox-check .has-error::after {
@@ -21,12 +21,12 @@
21
21
  background-color: var(--color-interactive-negative);
22
22
  }
23
23
  .tw-checkbox-check::before {
24
- top: 9px;
25
- height: 6px;
26
- width: 2px;
24
+ inset-block-start: 9px;
25
+ block-size: 6px;
26
+ inline-size: 2px;
27
27
  }
28
28
  .tw-checkbox-check::after {
29
- bottom: 5px;
30
- height: 2px;
31
- width: 11px;
29
+ inset-block-end: 5px;
30
+ block-size: 2px;
31
+ inline-size: 11px;
32
32
  }
@@ -10,7 +10,7 @@
10
10
  line-break: auto;
11
11
  line-height: 24px;
12
12
  line-height: var(--size-24);
13
- text-align: left;
13
+ text-align: start;
14
14
  -webkit-text-decoration: none;
15
15
  text-decoration: none;
16
16
  text-shadow: none;
@@ -21,37 +21,28 @@
21
21
  word-wrap: normal;
22
22
  opacity: 0;
23
23
  }
24
- [dir="rtl"] .tooltip {
25
- text-align: right;
26
- }
27
24
  .tooltip.in {
28
25
  opacity: 1;
29
26
  }
30
27
  .tooltip.top {
31
- margin-top: -3px;
32
- padding: 5px 0;
28
+ margin-block-start: -3px;
29
+ padding-block: 5px;
30
+ padding-inline: 0;
33
31
  }
34
32
  .tooltip.right {
35
- margin-left: 3px;
36
- padding: 0 5px;
37
- }
38
- [dir="rtl"] .tooltip.right {
39
- margin-right: 3px;
40
- margin-left: 0;
41
- margin-left: initial;
33
+ margin-inline-start: 3px;
34
+ padding-block: 0;
35
+ padding-inline: 5px;
42
36
  }
43
37
  .tooltip.bottom {
44
- margin-top: 3px;
45
- padding: 5px 0;
38
+ margin-block-start: 3px;
39
+ padding-block: 5px;
40
+ padding-inline: 0;
46
41
  }
47
42
  .tooltip.left {
48
- margin-left: -3px;
49
- padding: 0 5px;
50
- }
51
- [dir="rtl"] .tooltip.left {
52
- margin-right: -3px;
53
- margin-left: 0;
54
- margin-left: initial;
43
+ margin-inline-start: -3px;
44
+ padding-block: 0;
45
+ padding-inline: 5px;
55
46
  }
56
47
  .tooltip-inner {
57
48
  font-size: 0.875rem;
@@ -60,10 +51,12 @@
60
51
  letter-spacing: -0.006em;
61
52
  font-weight: 400;
62
53
  font-weight: var(--font-weight-regular);
63
- max-width: 200px;
64
- min-width: 120px;
65
- padding: 16px 16px;
66
- padding: var(--size-16) var(--size-16);
54
+ max-inline-size: 200px;
55
+ min-inline-size: 120px;
56
+ padding-block: 16px;
57
+ padding-block: var(--size-16);
58
+ padding-inline: 16px;
59
+ padding-inline: var(--size-16);
67
60
  color: #37517e;
68
61
  color: var(--color-content-primary);
69
62
  text-align: center;
@@ -79,72 +72,46 @@
79
72
  }
80
73
  .tooltip-arrow {
81
74
  position: absolute;
82
- width: 0;
83
- height: 0;
75
+ inline-size: 0;
76
+ block-size: 0;
84
77
  border-color: transparent;
85
78
  border-style: solid;
86
79
  }
87
80
  .tooltip.top .tooltip-arrow {
88
- bottom: 0;
89
- left: 50%;
90
- margin-left: -5px;
91
- border-width: 5px 5px 0;
92
- border-top-color: #ffffff;
93
- border-top-color: var(--color-background-screen);
94
- }
95
- [dir="rtl"] .tooltip.top .tooltip-arrow {
96
- right: 50%;
97
- left: auto;
98
- left: initial;
99
- }
100
- [dir="rtl"] .tooltip.top .tooltip-arrow {
101
- margin-right: -5px;
102
- margin-left: 0;
103
- margin-left: initial;
81
+ inset-block-end: 0;
82
+ inset-inline-start: 50%;
83
+ margin-inline-start: -5px;
84
+ border-block-width: 5px 0;
85
+ border-inline-width: 5px;
86
+ border-block-start-color: #ffffff;
87
+ border-block-start-color: var(--color-background-screen);
104
88
  }
105
89
  .tooltip.right .tooltip-arrow {
106
- top: 50%;
107
- left: 0;
108
- margin-top: -5px;
109
- border-width: 5px 5px 5px 0;
110
- border-right-color: #ffffff;
111
- border-right-color: var(--color-background-screen);
112
- }
113
- [dir="rtl"] .tooltip.right .tooltip-arrow {
114
- right: 0;
115
- left: auto;
116
- left: initial;
90
+ inset-block-start: 50%;
91
+ inset-inline-start: 0;
92
+ margin-block-start: -5px;
93
+ border-block-width: 5px 5px;
94
+ border-inline-width: 0 5px;
95
+ border-inline-end-color: #ffffff;
96
+ border-inline-end-color: var(--color-background-screen);
117
97
  }
118
98
  .tooltip.left .tooltip-arrow {
119
- top: 50%;
120
- right: 0;
121
- margin-top: -5px;
122
- border-width: 5px 0 5px 5px;
123
- border-left-color: #ffffff;
124
- border-left-color: var(--color-background-screen);
125
- }
126
- [dir="rtl"] .tooltip.left .tooltip-arrow {
127
- left: 0;
128
- right: auto;
129
- right: initial;
99
+ inset-block-start: 50%;
100
+ inset-inline-end: 0;
101
+ margin-block-start: -5px;
102
+ border-block-width: 5px 5px;
103
+ border-inline-width: 5px 0;
104
+ border-inline-start-color: #ffffff;
105
+ border-inline-start-color: var(--color-background-screen);
130
106
  }
131
107
  .tooltip.bottom .tooltip-arrow {
132
- top: 0;
133
- left: 50%;
134
- margin-left: -5px;
135
- border-width: 0 5px 5px;
136
- border-bottom-color: #ffffff;
137
- border-bottom-color: var(--color-background-screen);
138
- }
139
- [dir="rtl"] .tooltip.bottom .tooltip-arrow {
140
- right: 50%;
141
- left: auto;
142
- left: initial;
143
- }
144
- [dir="rtl"] .tooltip.bottom .tooltip-arrow {
145
- margin-right: -5px;
146
- margin-left: 0;
147
- margin-left: initial;
108
+ inset-block-start: 0;
109
+ inset-inline-start: 50%;
110
+ margin-inline-start: -5px;
111
+ border-block-width: 0 5px;
112
+ border-inline-width: 5px;
113
+ border-block-end-color: #ffffff;
114
+ border-block-end-color: var(--color-background-screen);
148
115
  }
149
116
  [data-toggle="tooltip"]:not(.btn) {
150
117
  cursor: pointer;
@@ -14,40 +14,26 @@
14
14
  }
15
15
  .center-block {
16
16
  display: block;
17
- margin-left: auto;
18
- margin-right: auto;
17
+ margin-inline-start: auto;
18
+ margin-inline-end: auto;
19
19
  }
20
20
  .pull-right,
21
21
  .pull-xs-right {
22
- float: right !important;
23
- }
24
- [dir="rtl"] .pull-right,
25
- [dir="rtl"] .pull-xs-right {
26
- float: left !important;
22
+ float: inline-end !important;
27
23
  }
28
24
  .pull-left,
29
25
  .pull-xs-left {
30
- float: left !important;
31
- }
32
- [dir="rtl"] .pull-left,
33
- [dir="rtl"] .pull-xs-left {
34
- float: right !important;
26
+ float: inline-start !important;
35
27
  }
36
28
  .pull-xs-none {
37
29
  float: none !important;
38
30
  }
39
31
  @media (min-width: 600px) {
40
32
  .pull-sm-left {
41
- float: left !important;
42
- }
43
- [dir="rtl"] .pull-sm-left {
44
- float: right !important;
33
+ float: inline-start !important;
45
34
  }
46
35
  .pull-sm-right {
47
- float: right !important;
48
- }
49
- [dir="rtl"] .pull-sm-right {
50
- float: left !important;
36
+ float: inline-end !important;
51
37
  }
52
38
  .pull-sm-none {
53
39
  float: none !important;
@@ -55,16 +41,10 @@
55
41
  }
56
42
  @media (min-width: 840px) {
57
43
  .pull-md-left {
58
- float: left !important;
59
- }
60
- [dir="rtl"] .pull-md-left {
61
- float: right !important;
44
+ float: inline-start !important;
62
45
  }
63
46
  .pull-md-right {
64
- float: right !important;
65
- }
66
- [dir="rtl"] .pull-md-right {
67
- float: left !important;
47
+ float: inline-end !important;
68
48
  }
69
49
  .pull-md-none {
70
50
  float: none !important;
@@ -73,19 +53,11 @@
73
53
  @media (min-width: 1160px) {
74
54
  .pull-lg-left,
75
55
  .pull-xl-left {
76
- float: left !important;
77
- }
78
- [dir="rtl"] .pull-lg-left,
79
- [dir="rtl"] .pull-xl-left {
80
- float: right !important;
56
+ float: inline-start !important;
81
57
  }
82
58
  .pull-lg-right,
83
59
  .pull-xl-right {
84
- float: right !important;
85
- }
86
- [dir="rtl"] .pull-lg-right,
87
- [dir="rtl"] .pull-xl-right {
88
- float: left !important;
60
+ float: inline-end !important;
89
61
  }
90
62
  .pull-lg-none,
91
63
  .pull-xl-none {
@@ -93,10 +65,10 @@
93
65
  }
94
66
  }
95
67
  .pull-left-single-direction {
96
- float: left !important;
68
+ float: inline-start !important;
97
69
  }
98
70
  .pull-right-single-direction {
99
- float: right !important;
71
+ float: inline-end !important;
100
72
  }
101
73
  .hide {
102
74
  display: none !important;
@@ -1,9 +1,9 @@
1
1
  .well,
2
2
  .well-xs {
3
- min-height: 24px;
4
- min-height: var(--size-24);
5
- margin-bottom: 24px;
6
- margin-bottom: var(--size-24);
3
+ min-block-size: 24px;
4
+ min-block-size: var(--size-24);
5
+ margin-block-end: 24px;
6
+ margin-block-end: var(--size-24);
7
7
  border-radius: 10px;
8
8
  border-radius: var(--radius-small);
9
9
  border: solid 1px rgba(0,0,0,0.10196);
@@ -14,10 +14,10 @@
14
14
  }
15
15
  @media only screen and (min-width: 600px) {
16
16
  .well-sm {
17
- min-height: 24px;
18
- min-height: var(--size-24);
19
- margin-bottom: 24px;
20
- margin-bottom: var(--size-24);
17
+ min-block-size: 24px;
18
+ min-block-size: var(--size-24);
19
+ margin-block-end: 24px;
20
+ margin-block-end: var(--size-24);
21
21
  border-radius: 10px;
22
22
  border-radius: var(--radius-small);
23
23
  border: solid 1px rgba(0,0,0,0.10196);
@@ -29,10 +29,10 @@
29
29
  }
30
30
  @media only screen and (min-width: 840px) {
31
31
  .well-md {
32
- min-height: 24px;
33
- min-height: var(--size-24);
34
- margin-bottom: 24px;
35
- margin-bottom: var(--size-24);
32
+ min-block-size: 24px;
33
+ min-block-size: var(--size-24);
34
+ margin-block-end: 24px;
35
+ margin-block-end: var(--size-24);
36
36
  border-radius: 10px;
37
37
  border-radius: var(--radius-small);
38
38
  border: solid 1px rgba(0,0,0,0.10196);
@@ -45,10 +45,10 @@
45
45
  @media only screen and (min-width: 1160px) {
46
46
  .well-lg,
47
47
  .well-xl {
48
- min-height: 24px;
49
- min-height: var(--size-24);
50
- margin-bottom: 24px;
51
- margin-bottom: var(--size-24);
48
+ min-block-size: 24px;
49
+ min-block-size: var(--size-24);
50
+ margin-block-end: 24px;
51
+ margin-block-end: var(--size-24);
52
52
  border-radius: 10px;
53
53
  border-radius: var(--radius-small);
54
54
  border: solid 1px rgba(0,0,0,0.10196);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@transferwise/neptune-css",
3
3
  "description": "Neptune CSS library",
4
- "version": "14.28.2",
4
+ "version": "14.29.0",
5
5
  "license": "MIT",
6
6
  "repository": {
7
7
  "type": "git",
@@ -28,7 +28,7 @@
28
28
  "devDependencies": {
29
29
  "gulp": "^5.0.1",
30
30
  "modern-normalize": "^3.0.1",
31
- "@transferwise/less-config": "3.1.2",
31
+ "@transferwise/less-config": "3.2.0",
32
32
  "@wise/wds-configs": "0.0.0"
33
33
  },
34
34
  "publishConfig": {
@@ -20,16 +20,16 @@
20
20
  .responsive-spacing-vertical(section-3, var(--size-48), var(--size-72), var(--size-96));
21
21
 
22
22
  .m-x-auto {
23
- .margin(right,auto) !important;
24
- .margin(left, auto) !important;
23
+ margin-right: auto !important;
24
+ margin-left: auto !important;
25
25
  }
26
26
 
27
27
  .m-r-auto {
28
- .margin(right,auto) !important;
28
+ margin-right: auto !important;
29
29
  }
30
30
 
31
31
  .m-l-auto {
32
- .margin(left, auto) !important;
32
+ margin-left: auto !important;
33
33
  }
34
34
 
35
35
  .section {
@@ -1,3 +1,4 @@
1
+ // @deprecated Use _logical-properties-modern-browsers.less instead.
1
2
  // Mixin to support Logical properties/values for IE
2
3
 
3
4
  // CSS property: float: Flow-relative values inline-start