@dialpad/dialtone 6.7.0 → 6.10.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.
- package/CHANGELOG.md +44 -0
- package/lib/build/less/components/avatar.less +68 -56
- package/lib/build/less/components/badge.less +39 -28
- package/lib/build/less/components/banner.less +33 -36
- package/lib/build/less/components/breadcrumbs.less +7 -8
- package/lib/build/less/components/button.less +74 -58
- package/lib/build/less/components/forms.less +24 -28
- package/lib/build/less/components/input.less +71 -44
- package/lib/build/less/components/link.less +12 -15
- package/lib/build/less/components/list-group.less +5 -5
- package/lib/build/less/components/modal.less +40 -50
- package/lib/build/less/components/notice.less +28 -30
- package/lib/build/less/components/radio-checkbox.less +73 -66
- package/lib/build/less/components/selects.less +30 -26
- package/lib/build/less/components/table.less +15 -18
- package/lib/build/less/components/tabs.less +30 -31
- package/lib/build/less/components/toast.less +39 -40
- package/lib/build/less/components/tooltip.less +21 -22
- package/lib/build/less/dialtone-globals.less +11 -3
- package/lib/build/less/dialtone-reset.less +11 -11
- package/lib/build/less/dialtone-variables.less +8 -8
- package/lib/build/less/dialtone.less +36 -52
- package/lib/build/less/themes/default.less +9 -9
- package/lib/build/less/themes/example.less +4 -4
- package/lib/build/less/utilities/backgrounds.less +73 -122
- package/lib/build/less/utilities/borders.less +101 -88
- package/lib/build/less/utilities/colors.less +40 -220
- package/lib/build/less/utilities/effects.less +83 -64
- package/lib/build/less/utilities/flex.less +110 -139
- package/lib/build/less/utilities/grid.less +146 -163
- package/lib/build/less/utilities/interactivity.less +27 -27
- package/lib/build/less/utilities/internals.less +244 -170
- package/lib/build/less/utilities/layout.less +82 -82
- package/lib/build/less/utilities/responsive.less +0 -143
- package/lib/build/less/utilities/sizing.less +97 -97
- package/lib/build/less/utilities/spacing.less +26 -26
- package/lib/build/less/utilities/svg.less +9 -1
- package/lib/build/less/utilities/typography.less +126 -115
- package/lib/build/less/variables/colors.less +10 -10
- package/lib/build/less/variables/layout.less +21 -0
- package/lib/build/less/variables/sizes.less +8 -8
- package/lib/build/less/variables/spacing.less +1 -1
- package/lib/build/less/variables/typography.less +8 -9
- package/lib/build/less/variables/visual-styles.less +27 -27
- package/lib/build/svg/spot/browser-list-callout.svg +57 -0
- package/lib/build/svg/spot/browser-table-graph.svg +111 -0
- package/lib/build/svg/system/raise-hand.svg +1 -1
- package/lib/build/svg/system/{thumb_down.svg → thumb-down.svg} +0 -0
- package/lib/build/svg/system/{thumb_up.svg → thumb-up.svg} +0 -0
- package/lib/build/svg/system/windows.svg +6 -0
- package/lib/dist/css/dialtone.css +2665 -23334
- package/lib/dist/css/dialtone.min.css +1 -1
- package/lib/dist/svg/spot/browser-list-callout.svg +1 -0
- package/lib/dist/svg/spot/browser-table-graph.svg +1 -0
- package/lib/dist/svg/system/raise-hand.svg +1 -1
- package/lib/dist/svg/system/thumb-down.svg +1 -0
- package/lib/dist/svg/system/thumb-up.svg +1 -0
- package/lib/dist/svg/system/windows.svg +1 -0
- package/lib/dist/vue/icons/IconRaiseHand.vue +1 -1
- package/lib/dist/vue/icons/IconThumbDown.vue +3 -0
- package/lib/dist/vue/icons/IconThumbUp.vue +3 -0
- package/lib/dist/vue/icons/IconWindows.vue +3 -0
- package/lib/dist/vue/spot/SpotBrowserListCallout.vue +3 -0
- package/lib/dist/vue/spot/SpotBrowserTableGraph.vue +3 -0
- package/package.json +20 -6
- package/lib/dist/svg/system/thumb_down.svg +0 -1
- package/lib/dist/svg/system/thumb_up.svg +0 -1
- package/lib/dist/vue/icons/IconThumb_down.vue +0 -3
- package/lib/dist/vue/icons/IconThumb_up.vue +0 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
//@import (reference) '../variables/spacing.less';
|
|
2
2
|
|
|
3
3
|
//
|
|
4
4
|
// DIALTONE
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
from {
|
|
28
28
|
transform: rotate(0deg);
|
|
29
29
|
}
|
|
30
|
+
|
|
30
31
|
to {
|
|
31
32
|
transform: rotate(360deg);
|
|
32
33
|
}
|
|
@@ -37,98 +38,116 @@
|
|
|
37
38
|
@keyframes d-loading-bars__short {
|
|
38
39
|
0% {
|
|
39
40
|
min-height: @su4;
|
|
40
|
-
opacity: 0;
|
|
41
41
|
transform: translateY(-@su16);
|
|
42
|
+
opacity: 0;
|
|
42
43
|
}
|
|
44
|
+
|
|
43
45
|
5% {
|
|
44
46
|
min-height: @su4;
|
|
45
|
-
opacity: 0.5;
|
|
46
47
|
transform: translateY(@su16);
|
|
48
|
+
opacity: 0.5;
|
|
47
49
|
}
|
|
50
|
+
|
|
48
51
|
10% {
|
|
49
|
-
opacity: 1;
|
|
50
52
|
min-height: 1rem;
|
|
51
53
|
transform: translateY(-@su2);
|
|
54
|
+
opacity: 1;
|
|
52
55
|
}
|
|
56
|
+
|
|
53
57
|
15% {
|
|
54
|
-
opacity: 1;
|
|
55
58
|
transform: translateY(@su1);
|
|
56
|
-
}
|
|
57
|
-
20%, 70% {
|
|
58
59
|
opacity: 1;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
20%,
|
|
63
|
+
70% {
|
|
59
64
|
min-height: 1rem;
|
|
60
65
|
transform: translateY(0);
|
|
66
|
+
opacity: 1;
|
|
61
67
|
}
|
|
68
|
+
|
|
62
69
|
75% {
|
|
63
|
-
opacity: 1;
|
|
64
70
|
min-height: 0.75rem;
|
|
65
71
|
transform: translateY(1rem);
|
|
72
|
+
opacity: 1;
|
|
66
73
|
}
|
|
74
|
+
|
|
67
75
|
80% {
|
|
68
|
-
opacity: 0.5;
|
|
69
76
|
min-height: @su4;
|
|
70
77
|
transform: translateY(-@su4);
|
|
78
|
+
opacity: 0.5;
|
|
71
79
|
}
|
|
72
|
-
|
|
73
|
-
|
|
80
|
+
|
|
81
|
+
85%,
|
|
82
|
+
100% {
|
|
74
83
|
min-height: @su4;
|
|
75
84
|
transform: translateY(@su16);
|
|
85
|
+
opacity: 0;
|
|
76
86
|
}
|
|
77
87
|
}
|
|
88
|
+
|
|
78
89
|
@keyframes d-loading-bars__tall {
|
|
79
90
|
0% {
|
|
80
91
|
min-height: @su4;
|
|
81
|
-
opacity: 0;
|
|
82
92
|
transform: translateY(-@su16);
|
|
93
|
+
opacity: 0;
|
|
83
94
|
}
|
|
95
|
+
|
|
84
96
|
5% {
|
|
85
97
|
min-height: @su4;
|
|
86
|
-
opacity: 0.5;
|
|
87
98
|
transform: translateY(@su16);
|
|
99
|
+
opacity: 0.5;
|
|
88
100
|
}
|
|
101
|
+
|
|
89
102
|
10% {
|
|
90
|
-
opacity: 1;
|
|
91
103
|
min-height: 1rem;
|
|
92
104
|
transform: translateY(-@su2);
|
|
105
|
+
opacity: 1;
|
|
93
106
|
}
|
|
107
|
+
|
|
94
108
|
15% {
|
|
95
|
-
opacity: 1;
|
|
96
109
|
min-height: 2.2rem;
|
|
97
110
|
transform: translateY(@su1);
|
|
98
|
-
}
|
|
99
|
-
20%, 70% {
|
|
100
111
|
opacity: 1;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
20%,
|
|
115
|
+
70% {
|
|
101
116
|
min-height: 2.2rem;
|
|
102
117
|
transform: translateY(0);
|
|
118
|
+
opacity: 1;
|
|
103
119
|
}
|
|
120
|
+
|
|
104
121
|
75% {
|
|
105
|
-
opacity: 1;
|
|
106
122
|
min-height: @su16;
|
|
107
123
|
transform: translateY(1rem);
|
|
124
|
+
opacity: 1;
|
|
108
125
|
}
|
|
126
|
+
|
|
109
127
|
80% {
|
|
110
|
-
opacity: 1;
|
|
111
128
|
min-height: 1rem;
|
|
112
129
|
transform: translateY(-@su4);
|
|
130
|
+
opacity: 1;
|
|
113
131
|
}
|
|
114
|
-
|
|
115
|
-
|
|
132
|
+
|
|
133
|
+
85%,
|
|
134
|
+
100% {
|
|
116
135
|
min-height: @su4;
|
|
117
136
|
transform: translateY(@su16);
|
|
137
|
+
opacity: 0;
|
|
118
138
|
}
|
|
119
139
|
}
|
|
120
140
|
|
|
121
|
-
|
|
122
141
|
// ============================================================================
|
|
123
142
|
// $ BOX SHADOW
|
|
124
143
|
// ----------------------------------------------------------------------------
|
|
125
|
-
.d-bs-sm
|
|
126
|
-
.d-bs-md
|
|
127
|
-
.d-bs-lg
|
|
128
|
-
.d-bs-xl
|
|
129
|
-
.d-bs-card
|
|
130
|
-
.d-bs-none
|
|
131
|
-
.d-bs-unset
|
|
144
|
+
.d-bs-sm { box-shadow: var(--bs-sm) !important; }
|
|
145
|
+
.d-bs-md { box-shadow: var(--bs-md) !important; }
|
|
146
|
+
.d-bs-lg { box-shadow: var(--bs-lg) !important; }
|
|
147
|
+
.d-bs-xl { box-shadow: var(--bs-xl) !important; }
|
|
148
|
+
.d-bs-card { box-shadow: var(--bs-card) !important; }
|
|
149
|
+
.d-bs-none { box-shadow: none !important; }
|
|
150
|
+
.d-bs-unset { box-shadow: unset !important; }
|
|
132
151
|
|
|
133
152
|
|
|
134
153
|
// ============================================================================
|
|
@@ -136,55 +155,55 @@
|
|
|
136
155
|
// For times that you want a fill background, but not at 100% opacity.
|
|
137
156
|
// These are only offered for $white and gray.
|
|
138
157
|
// ----------------------------------------------------------------------------
|
|
139
|
-
.d-o0
|
|
140
|
-
.d-o5
|
|
141
|
-
.d-o10
|
|
142
|
-
.d-o20
|
|
143
|
-
.d-o25
|
|
144
|
-
.d-o30
|
|
145
|
-
.d-o40
|
|
146
|
-
.d-o50
|
|
147
|
-
.d-o60
|
|
148
|
-
.d-o70
|
|
149
|
-
.d-o75
|
|
150
|
-
.d-o80
|
|
151
|
-
.d-o90
|
|
152
|
-
.d-o100
|
|
153
|
-
.d-o-unset
|
|
158
|
+
.d-o0 { opacity: 0 !important; }
|
|
159
|
+
.d-o5 { opacity: 0.05 !important; }
|
|
160
|
+
.d-o10 { opacity: 0.1 !important; }
|
|
161
|
+
.d-o20 { opacity: 0.2 !important; }
|
|
162
|
+
.d-o25 { opacity: 0.25 !important; }
|
|
163
|
+
.d-o30 { opacity: 0.3 !important; }
|
|
164
|
+
.d-o40 { opacity: 0.4 !important; }
|
|
165
|
+
.d-o50 { opacity: 0.5 !important; }
|
|
166
|
+
.d-o60 { opacity: 0.6 !important; }
|
|
167
|
+
.d-o70 { opacity: 0.7 !important; }
|
|
168
|
+
.d-o75 { opacity: 0.75 !important; }
|
|
169
|
+
.d-o80 { opacity: 0.8 !important; }
|
|
170
|
+
.d-o90 { opacity: 0.9 !important; }
|
|
171
|
+
.d-o100 { opacity: 1 !important; }
|
|
172
|
+
.d-o-unset { opacity: unset !important; }
|
|
154
173
|
|
|
155
174
|
|
|
156
175
|
// ============================================================================
|
|
157
176
|
// $ TRANSITION
|
|
158
177
|
// ----------------------------------------------------------------------------
|
|
159
178
|
.d-t {
|
|
179
|
+
transition-delay: 0s;
|
|
180
|
+
transition-timing-function: var(--ttf-in-out);
|
|
160
181
|
transition-duration: var(--td50);
|
|
161
182
|
transition-property: all;
|
|
162
|
-
transition-timing-function: var(--ttf-in-out);
|
|
163
|
-
transition-delay: 0s;
|
|
164
183
|
}
|
|
165
184
|
|
|
166
185
|
// -- TRANSITION DURATION
|
|
167
|
-
.d-td0
|
|
168
|
-
.d-td50
|
|
169
|
-
.d-td100
|
|
170
|
-
.d-td150
|
|
171
|
-
.d-td200
|
|
186
|
+
.d-td0 { transition-duration: var(--td0) !important; }
|
|
187
|
+
.d-td50 { transition-duration: var(--td50) !important; }
|
|
188
|
+
.d-td100 { transition-duration: var(--td100) !important; }
|
|
189
|
+
.d-td150 { transition-duration: var(--td150) !important; }
|
|
190
|
+
.d-td200 { transition-duration: var(--td200) !important; }
|
|
172
191
|
|
|
173
192
|
// -- TRANSITION TIMING
|
|
174
|
-
.d-ttf-in-out
|
|
175
|
-
.d-ttf-out
|
|
193
|
+
.d-ttf-in-out { transition-timing-function: var(--ttf-in-out) !important; }
|
|
194
|
+
.d-ttf-out { transition-timing-function: var(--ttf-out) !important; }
|
|
176
195
|
|
|
177
196
|
// -- TRANSITION PROPERTY
|
|
178
|
-
.d-tp-all
|
|
179
|
-
.d-tp-o
|
|
180
|
-
.d-tp-bs
|
|
181
|
-
.d-tp-bgc
|
|
182
|
-
.d-tp-transform
|
|
183
|
-
.d-tp-colors
|
|
197
|
+
.d-tp-all { transition-property: all !important; }
|
|
198
|
+
.d-tp-o { transition-property: opacity !important; }
|
|
199
|
+
.d-tp-bs { transition-property: box-shadow !important; }
|
|
200
|
+
.d-tp-bgc { transition-property: background-color !important; }
|
|
201
|
+
.d-tp-transform { transition-property: transform !important; }
|
|
202
|
+
.d-tp-colors { transition-property: background-color, border-color, color, fill, stroke !important; }
|
|
184
203
|
|
|
185
204
|
// -- TRANSITION DELAY
|
|
186
|
-
.d-t-delay25
|
|
187
|
-
.d-t-delay50
|
|
188
|
-
.d-t-delay100
|
|
189
|
-
.d-t-delay150
|
|
190
|
-
.d-t-delay200
|
|
205
|
+
.d-t-delay25 { transition-delay: var(--td25) !important; }
|
|
206
|
+
.d-t-delay50 { transition-delay: var(--td50) !important; }
|
|
207
|
+
.d-t-delay100 { transition-delay: var(--td100) !important; }
|
|
208
|
+
.d-t-delay150 { transition-delay: var(--td150) !important; }
|
|
209
|
+
.d-t-delay200 { transition-delay: var(--td200) !important; }
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
//@import (reference) '../utilities/internals.less';
|
|
2
|
+
|
|
1
3
|
//
|
|
2
4
|
// DIALTONE
|
|
3
5
|
// UTILITIES: FLEXBOX
|
|
@@ -22,16 +24,16 @@
|
|
|
22
24
|
// cross-axis. Note that this only works when a parent container
|
|
23
25
|
// has more than one line.
|
|
24
26
|
// ----------------------------------------------------------------------------
|
|
25
|
-
.d-ac-center
|
|
26
|
-
.d-ac-flex-end
|
|
27
|
-
.d-ac-flex-start
|
|
28
|
-
.d-ac-space-around
|
|
29
|
-
.d-ac-space-between
|
|
30
|
-
.d-ac-space-evenly
|
|
31
|
-
.d-ac-baseline
|
|
32
|
-
.d-ac-stretch
|
|
33
|
-
.d-ac-normal
|
|
34
|
-
.d-ac-unset
|
|
27
|
+
.d-ac-center { align-content: center !important; }
|
|
28
|
+
.d-ac-flex-end { align-content: flex-end !important; }
|
|
29
|
+
.d-ac-flex-start { align-content: flex-start !important; }
|
|
30
|
+
.d-ac-space-around { align-content: space-around !important; }
|
|
31
|
+
.d-ac-space-between { align-content: space-between !important; }
|
|
32
|
+
.d-ac-space-evenly { align-content: space-evenly !important; }
|
|
33
|
+
.d-ac-baseline { align-content: baseline !important; }
|
|
34
|
+
.d-ac-stretch { align-content: stretch !important; }
|
|
35
|
+
.d-ac-normal { align-content: normal !important; }
|
|
36
|
+
.d-ac-unset { align-content: unset !important; }
|
|
35
37
|
|
|
36
38
|
|
|
37
39
|
// ============================================================================
|
|
@@ -40,13 +42,13 @@
|
|
|
40
42
|
// the parent's cross axis. Think of it the cross-axis for
|
|
41
43
|
// justify-content.
|
|
42
44
|
// ----------------------------------------------------------------------------
|
|
43
|
-
.d-ai-center
|
|
44
|
-
.d-ai-flex-end
|
|
45
|
-
.d-ai-flex-start
|
|
46
|
-
.d-ai-baseline
|
|
47
|
-
.d-ai-stretch
|
|
48
|
-
.d-ai-normal
|
|
49
|
-
.d-ai-unset
|
|
45
|
+
.d-ai-center { align-items: center !important; }
|
|
46
|
+
.d-ai-flex-end { align-items: flex-end !important; }
|
|
47
|
+
.d-ai-flex-start { align-items: flex-start !important; }
|
|
48
|
+
.d-ai-baseline { align-items: baseline !important; }
|
|
49
|
+
.d-ai-stretch { align-items: stretch !important; }
|
|
50
|
+
.d-ai-normal { align-items: normal !important; }
|
|
51
|
+
.d-ai-unset { align-items: unset !important; }
|
|
50
52
|
|
|
51
53
|
|
|
52
54
|
// ============================================================================
|
|
@@ -54,14 +56,14 @@
|
|
|
54
56
|
// Allows child containers to re-align themselves regardless
|
|
55
57
|
// of the parent's main axis direction.
|
|
56
58
|
// ----------------------------------------------------------------------------
|
|
57
|
-
.d-as-center
|
|
58
|
-
.d-as-flex-end
|
|
59
|
-
.d-as-flex-start
|
|
60
|
-
.d-as-baseline
|
|
61
|
-
.d-as-stretch
|
|
62
|
-
.d-as-auto
|
|
63
|
-
.d-as-normal
|
|
64
|
-
.d-as-unset
|
|
59
|
+
.d-as-center { align-self: center !important; }
|
|
60
|
+
.d-as-flex-end { align-self: flex-end !important; }
|
|
61
|
+
.d-as-flex-start { align-self: flex-start !important; }
|
|
62
|
+
.d-as-baseline { align-self: baseline !important; }
|
|
63
|
+
.d-as-stretch { align-self: stretch !important; }
|
|
64
|
+
.d-as-auto { align-self: auto !important; }
|
|
65
|
+
.d-as-normal { align-self: normal !important; }
|
|
66
|
+
.d-as-unset { align-self: unset !important; }
|
|
65
67
|
|
|
66
68
|
|
|
67
69
|
// ============================================================================
|
|
@@ -69,38 +71,6 @@
|
|
|
69
71
|
// ----------------------------------------------------------------------------
|
|
70
72
|
// $$ FLEX COLUMNS
|
|
71
73
|
// ----------------------------------------------------------------------------
|
|
72
|
-
#d-internals() {
|
|
73
|
-
#build-flex-columns(@num, @count: 1) when (@count =< @num) {
|
|
74
|
-
.d-fl-col@{count} {
|
|
75
|
-
display: flex;
|
|
76
|
-
|
|
77
|
-
// Automatically make all direct child to obey the parent class
|
|
78
|
-
> * {
|
|
79
|
-
--fl-gap: 0;
|
|
80
|
-
--fl-basis: calc(100% / @count);
|
|
81
|
-
|
|
82
|
-
display: inline-flex;
|
|
83
|
-
margin: var(--fl-gap);
|
|
84
|
-
flex: 1 calc(var(--fl-basis) - ((var(--fl-gap) * 2)));
|
|
85
|
-
|
|
86
|
-
// Add in a gap to items after the first row
|
|
87
|
-
&:nth-child(-n + @{count}) {
|
|
88
|
-
margin-top: 0;
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// If flex column is in a column direction (and became rows),
|
|
93
|
-
// change the margin direction.
|
|
94
|
-
&.d-fd-column > * {
|
|
95
|
-
margin: var(--fl-gap) 0;
|
|
96
|
-
}
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
// Iterate our loop until we hit our grid column total
|
|
100
|
-
#d-internals #build-flex-columns(@num, @count + 1);
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
@flex-columns: 12;
|
|
104
74
|
|
|
105
75
|
// Now let's generate the columns
|
|
106
76
|
#d-internals #build-flex-columns(@flex-columns);
|
|
@@ -108,18 +78,18 @@
|
|
|
108
78
|
|
|
109
79
|
// $$ FLEX GAPS
|
|
110
80
|
// ----------------------------------------------------------------------------
|
|
111
|
-
.d-flg0 > *
|
|
112
|
-
.d-flg1 > *
|
|
113
|
-
.d-flg2 > *
|
|
114
|
-
.d-flg4 > *
|
|
115
|
-
.d-flg6 > *
|
|
116
|
-
.d-flg8 > *
|
|
117
|
-
.d-flg12 > *
|
|
118
|
-
.d-flg16 > *
|
|
119
|
-
.d-flg24 > *
|
|
120
|
-
.d-flg32 > *
|
|
121
|
-
.d-flg48 > *
|
|
122
|
-
.d-flg64 > *
|
|
81
|
+
.d-flg0 > * { --fl-gap: 0 !important; }
|
|
82
|
+
.d-flg1 > * { --fl-gap: 0.1rem !important; }
|
|
83
|
+
.d-flg2 > * { --fl-gap: 0.2rem !important; }
|
|
84
|
+
.d-flg4 > * { --fl-gap: 0.4rem !important; }
|
|
85
|
+
.d-flg6 > * { --fl-gap: 0.6rem !important; }
|
|
86
|
+
.d-flg8 > * { --fl-gap: 0.8rem !important; }
|
|
87
|
+
.d-flg12 > * { --fl-gap: 1.2rem !important; }
|
|
88
|
+
.d-flg16 > * { --fl-gap: 1.6rem !important; }
|
|
89
|
+
.d-flg24 > * { --fl-gap: 2.4rem !important; }
|
|
90
|
+
.d-flg32 > * { --fl-gap: 3.2rem !important; }
|
|
91
|
+
.d-flg48 > * { --fl-gap: 4.8rem !important; }
|
|
92
|
+
.d-flg64 > * { --fl-gap: 6.4rem !important; }
|
|
123
93
|
|
|
124
94
|
|
|
125
95
|
|
|
@@ -130,38 +100,38 @@
|
|
|
130
100
|
// This determines the content flow direction within the parent container.
|
|
131
101
|
// Default value is row.
|
|
132
102
|
// ----------------------------------------------------------------------------
|
|
133
|
-
.d-fd-row
|
|
134
|
-
.d-fd-row-reverse
|
|
135
|
-
.d-fd-column
|
|
136
|
-
.d-fd-column-reverse
|
|
137
|
-
.d-fd-unset
|
|
103
|
+
.d-fd-row { flex-direction: row !important; }
|
|
104
|
+
.d-fd-row-reverse { flex-direction: row-reverse !important; }
|
|
105
|
+
.d-fd-column { flex-direction: column !important; }
|
|
106
|
+
.d-fd-column-reverse { flex-direction: column-reverse !important; }
|
|
107
|
+
.d-fd-unset { flex-direction: unset !important; }
|
|
138
108
|
|
|
139
109
|
// $$ FLEX WRAP
|
|
140
110
|
// This determines if a parent's children will wrap.
|
|
141
111
|
// Default value is nowrap.
|
|
142
112
|
// ----------------------------------------------------------------------------
|
|
143
|
-
.d-fw-wrap
|
|
144
|
-
.d-fw-wrap-reverse
|
|
145
|
-
.d-fw-nowrap
|
|
146
|
-
.d-fw-unset
|
|
113
|
+
.d-fw-wrap { flex-wrap: wrap !important; }
|
|
114
|
+
.d-fw-wrap-reverse { flex-wrap: wrap-reverse !important; }
|
|
115
|
+
.d-fw-nowrap { flex-wrap: nowrap !important; }
|
|
116
|
+
.d-fw-unset { flex-wrap: unset !important; }
|
|
147
117
|
|
|
148
118
|
// $$ FLEX FLOW
|
|
149
119
|
// This is another shorthand property for flex-direction and flex-wrap.
|
|
150
|
-
// Default value is
|
|
151
|
-
// ----------------------------------------------------------------------------
|
|
152
|
-
.d-ff-row-wrap
|
|
153
|
-
.d-ff-row-wrap-reverse
|
|
154
|
-
.d-ff-row-nowrap
|
|
155
|
-
.d-ff-row-reverse-wrap
|
|
156
|
-
.d-ff-row-reverse-wrap-reverse
|
|
157
|
-
.d-ff-row-reverse-nowrap
|
|
158
|
-
.d-ff-column-wrap
|
|
159
|
-
.d-ff-column-wrap-reverse
|
|
160
|
-
.d-ff-column-nowrap
|
|
161
|
-
.d-ff-column-reverse-wrap
|
|
162
|
-
.d-ff-column-reverse-wrap-reverse
|
|
163
|
-
.d-ff-column-reverse-nowrap
|
|
164
|
-
.d-ff-unset
|
|
120
|
+
// Default value is 'row nowrap'.
|
|
121
|
+
// ----------------------------------------------------------------------------
|
|
122
|
+
.d-ff-row-wrap { flex-flow: row wrap !important; }
|
|
123
|
+
.d-ff-row-wrap-reverse { flex-flow: row wrap-reverse !important; }
|
|
124
|
+
.d-ff-row-nowrap { flex-flow: row nowrap !important; }
|
|
125
|
+
.d-ff-row-reverse-wrap { flex-flow: row-reverse wrap !important; }
|
|
126
|
+
.d-ff-row-reverse-wrap-reverse { flex-flow: row-reverse wrap-reverse !important; }
|
|
127
|
+
.d-ff-row-reverse-nowrap { flex-flow: row-reverse nowrap !important; }
|
|
128
|
+
.d-ff-column-wrap { flex-flow: column wrap !important; }
|
|
129
|
+
.d-ff-column-wrap-reverse { flex-flow: column wrap-reverse !important; }
|
|
130
|
+
.d-ff-column-nowrap { flex-flow: column nowrap !important; }
|
|
131
|
+
.d-ff-column-reverse-wrap { flex-flow: column-reverse wrap !important; }
|
|
132
|
+
.d-ff-column-reverse-wrap-reverse { flex-flow: column-reverse wrap-reverse !important; }
|
|
133
|
+
.d-ff-column-reverse-nowrap { flex-flow: column-reverse nowrap !important; }
|
|
134
|
+
.d-ff-unset { flex-flow: unset !important; }
|
|
165
135
|
|
|
166
136
|
|
|
167
137
|
// ============================================================================
|
|
@@ -170,26 +140,26 @@
|
|
|
170
140
|
// $$ FLEX
|
|
171
141
|
// Graduating scale of flex-grow and flex-shrink values
|
|
172
142
|
// ----------------------------------------------------------------------------
|
|
173
|
-
.d-fl0
|
|
174
|
-
.d-fl1
|
|
175
|
-
.d-fl2
|
|
176
|
-
.d-fl3
|
|
177
|
-
.d-fl4
|
|
178
|
-
.d-fl5
|
|
179
|
-
.d-fl-unset
|
|
143
|
+
.d-fl0 { flex: 0 auto !important; }
|
|
144
|
+
.d-fl1 { flex: 1 auto !important; }
|
|
145
|
+
.d-fl2 { flex: 2 auto !important; }
|
|
146
|
+
.d-fl3 { flex: 3 auto !important; }
|
|
147
|
+
.d-fl4 { flex: 4 auto !important; }
|
|
148
|
+
.d-fl5 { flex: 5 auto !important; }
|
|
149
|
+
.d-fl-unset { flex: unset !important; }
|
|
180
150
|
|
|
181
151
|
// $$$ FLEX NONE
|
|
182
152
|
// This is equivalent to flex: 0 0 auto.
|
|
183
153
|
// It sizes the item according to its width/height properties, but makes it
|
|
184
154
|
// fully inflexible.
|
|
185
|
-
.d-fl-none
|
|
155
|
+
.d-fl-none { flex: none !important; }
|
|
186
156
|
|
|
187
157
|
// $$$ FLEX EQUAL
|
|
188
158
|
// Equally distributes children out within a parent container
|
|
189
159
|
.d-fl-equal {
|
|
160
|
+
flex-basis: 0 !important;
|
|
190
161
|
flex-grow: 1 !important;
|
|
191
162
|
flex-shrink: 1 !important;
|
|
192
|
-
flex-basis: 0 !important;
|
|
193
163
|
}
|
|
194
164
|
|
|
195
165
|
// $$ FLEX GROW
|
|
@@ -197,41 +167,41 @@
|
|
|
197
167
|
// grow relative to other flex items in the container when there isn't
|
|
198
168
|
// enough space in the row. Default value is 1.
|
|
199
169
|
// ----------------------------------------------------------------------------
|
|
200
|
-
.d-fl-grow0
|
|
201
|
-
.d-fl-grow1
|
|
202
|
-
.d-fl-grow2
|
|
203
|
-
.d-fl-grow3
|
|
204
|
-
.d-fl-grow4
|
|
205
|
-
.d-fl-grow5
|
|
206
|
-
.d-fl-grow-unset
|
|
170
|
+
.d-fl-grow0 { flex-grow: 0 !important; }
|
|
171
|
+
.d-fl-grow1 { flex-grow: 1 !important; }
|
|
172
|
+
.d-fl-grow2 { flex-grow: 2 !important; }
|
|
173
|
+
.d-fl-grow3 { flex-grow: 3 !important; }
|
|
174
|
+
.d-fl-grow4 { flex-grow: 4 !important; }
|
|
175
|
+
.d-fl-grow5 { flex-grow: 5 !important; }
|
|
176
|
+
.d-fl-grow-unset { flex-grow: unset !important; }
|
|
207
177
|
|
|
208
178
|
// $$ FLEX SHRINK
|
|
209
179
|
// Specifies the flex-shrink factor, which states how much an item will
|
|
210
180
|
// shrink relative to other flex items in the container when there isn't
|
|
211
181
|
// enough space in the row. Default value is 1.
|
|
212
182
|
// ----------------------------------------------------------------------------
|
|
213
|
-
.d-fl-shrink0
|
|
214
|
-
.d-fl-shrink1
|
|
215
|
-
.d-fl-shrink2
|
|
216
|
-
.d-fl-shrink3
|
|
217
|
-
.d-fl-shrink4
|
|
218
|
-
.d-fl-shrink5
|
|
219
|
-
.d-fl-shrink-unset
|
|
183
|
+
.d-fl-shrink0 { flex-shrink: 0 !important; }
|
|
184
|
+
.d-fl-shrink1 { flex-shrink: 1 !important; }
|
|
185
|
+
.d-fl-shrink2 { flex-shrink: 2 !important; }
|
|
186
|
+
.d-fl-shrink3 { flex-shrink: 3 !important; }
|
|
187
|
+
.d-fl-shrink4 { flex-shrink: 4 !important; }
|
|
188
|
+
.d-fl-shrink5 { flex-shrink: 5 !important; }
|
|
189
|
+
.d-fl-shrink-unset { flex-shrink: unset !important; }
|
|
220
190
|
|
|
221
191
|
|
|
222
192
|
// ============================================================================
|
|
223
193
|
// $ JUSTIFY CONTENT
|
|
224
194
|
// Defines the child alignment along the parent's main axis
|
|
225
195
|
// ----------------------------------------------------------------------------
|
|
226
|
-
.d-jc-center
|
|
227
|
-
.d-jc-flex-end
|
|
228
|
-
.d-jc-flex-start
|
|
229
|
-
.d-jc-space-around
|
|
230
|
-
.d-jc-space-between
|
|
231
|
-
.d-jc-space-evenly
|
|
232
|
-
.d-jc-baseline
|
|
233
|
-
.d-jc-normal
|
|
234
|
-
.d-jc-unset
|
|
196
|
+
.d-jc-center { justify-content: center !important; }
|
|
197
|
+
.d-jc-flex-end { justify-content: flex-end !important; }
|
|
198
|
+
.d-jc-flex-start { justify-content: flex-start !important; }
|
|
199
|
+
.d-jc-space-around { justify-content: space-around !important; }
|
|
200
|
+
.d-jc-space-between { justify-content: space-between !important; }
|
|
201
|
+
.d-jc-space-evenly { justify-content: space-evenly !important; }
|
|
202
|
+
.d-jc-baseline { justify-content: baseline !important; }
|
|
203
|
+
.d-jc-normal { justify-content: normal !important; }
|
|
204
|
+
.d-jc-unset { justify-content: unset !important; }
|
|
235
205
|
|
|
236
206
|
|
|
237
207
|
// $$ CENTER ITEMS
|
|
@@ -249,17 +219,18 @@
|
|
|
249
219
|
// $ ORDER
|
|
250
220
|
// Designate a child container's position.
|
|
251
221
|
// ----------------------------------------------------------------------------
|
|
252
|
-
.d-order1
|
|
253
|
-
.d-order2
|
|
254
|
-
.d-order3
|
|
255
|
-
.d-order4
|
|
256
|
-
.d-order5
|
|
257
|
-
.d-order6
|
|
258
|
-
.d-order7
|
|
259
|
-
.d-order8
|
|
260
|
-
.d-order9
|
|
261
|
-
.d-order10
|
|
262
|
-
.d-order11
|
|
263
|
-
.d-order12
|
|
264
|
-
.d-order-first
|
|
265
|
-
.d-order-last
|
|
222
|
+
.d-order1 { order: 1 !important; }
|
|
223
|
+
.d-order2 { order: 2 !important; }
|
|
224
|
+
.d-order3 { order: 3 !important; }
|
|
225
|
+
.d-order4 { order: 4 !important; }
|
|
226
|
+
.d-order5 { order: 5 !important; }
|
|
227
|
+
.d-order6 { order: 6 !important; }
|
|
228
|
+
.d-order7 { order: 7 !important; }
|
|
229
|
+
.d-order8 { order: 8 !important; }
|
|
230
|
+
.d-order9 { order: 9 !important; }
|
|
231
|
+
.d-order10 { order: 10 !important; }
|
|
232
|
+
.d-order11 { order: 11 !important; }
|
|
233
|
+
.d-order12 { order: 12 !important; }
|
|
234
|
+
.d-order-first { order: -9999 !important; }
|
|
235
|
+
.d-order-last { order: 9999 !important; }
|
|
236
|
+
|