office-ui-fabric-js-rails 1.3.0.0 → 1.4.0.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.
- checksums.yaml +4 -4
- data/lib/office-ui-fabric-js-rails/version.rb +2 -2
- data/package.json +2 -2
- data/vendor/assets/css/fabric.components.css +18 -6
- data/vendor/assets/css/fabric.components.min.css +2 -2
- data/vendor/assets/css/fabric.components.rtl.css +18 -6
- data/vendor/assets/css/fabric.components.rtl.min.css +2 -2
- data/vendor/assets/js/fabric.js +32 -41
- data/vendor/assets/js/fabric.min.js +4 -4
- data/vendor/assets/scss/components/Breadcrumb.scss +174 -174
- data/vendor/assets/scss/components/Button.scss +300 -286
- data/vendor/assets/scss/components/Callout.scss +157 -157
- data/vendor/assets/scss/components/CheckBox.scss +172 -172
- data/vendor/assets/scss/components/ChoiceFieldGroup.scss +14 -13
- data/vendor/assets/scss/components/CommandBar.scss +138 -138
- data/vendor/assets/scss/components/CommandButton.scss +293 -293
- data/vendor/assets/scss/components/ContextualHost.scss +142 -142
- data/vendor/assets/scss/components/ContextualMenu.scss +208 -208
- data/vendor/assets/scss/components/DatePicker.scss +527 -527
- data/vendor/assets/scss/components/DetailsList.scss +337 -337
- data/vendor/assets/scss/components/Dialog.scss +118 -118
- data/vendor/assets/scss/components/DialogHost.scss +12 -12
- data/vendor/assets/scss/components/Dropdown.scss +251 -251
- data/vendor/assets/scss/components/FacePile.scss +104 -104
- data/vendor/assets/scss/components/Label.scss +37 -37
- data/vendor/assets/scss/components/Link.scss +31 -31
- data/vendor/assets/scss/components/List.scss +16 -16
- data/vendor/assets/scss/components/ListItem.scss +237 -237
- data/vendor/assets/scss/components/MessageBanner.scss +128 -128
- data/vendor/assets/scss/components/MessageBar.scss +87 -87
- data/vendor/assets/scss/components/OrgChart.scss +46 -46
- data/vendor/assets/scss/components/Overlay.scss +34 -34
- data/vendor/assets/scss/components/Panel.scss +155 -155
- data/vendor/assets/scss/components/PanelHost.scss +15 -15
- data/vendor/assets/scss/components/PeoplePicker.scss +449 -449
- data/vendor/assets/scss/components/Persona.scss +731 -731
- data/vendor/assets/scss/components/PersonaCard.scss +208 -208
- data/vendor/assets/scss/components/Pivot.scss +201 -201
- data/vendor/assets/scss/components/ProgressIndicator.scss +64 -64
- data/vendor/assets/scss/components/RadioButton.scss +194 -194
- data/vendor/assets/scss/components/SearchBox.scss +368 -369
- data/vendor/assets/scss/components/Spinner.scss +48 -48
- data/vendor/assets/scss/components/Table.scss +123 -123
- data/vendor/assets/scss/components/TextField.scss +232 -232
- data/vendor/assets/scss/components/Toggle.scss +249 -249
- metadata +2 -2
|
@@ -1,252 +1,252 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Office UI Fabric JS 1.
|
|
2
|
+
* Office UI Fabric JS 1.4.0
|
|
3
3
|
* The JavaScript front-end framework for building experiences for Office 365.
|
|
4
4
|
**/
|
|
5
|
-
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
|
6
|
-
|
|
7
|
-
//
|
|
8
|
-
// Office UI Fabric
|
|
9
|
-
// --------------------------------------------------
|
|
10
|
-
// Toggle styles
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
@import '../Label/Label.scss';
|
|
14
|
-
|
|
15
|
-
// Slider mixin
|
|
16
|
-
@mixin ms-Toggle-slider($direction) {
|
|
17
|
-
// Slider pseudo element
|
|
18
|
-
&::before {
|
|
19
|
-
position: absolute;
|
|
20
|
-
top: 3px;
|
|
21
|
-
width: 10px;
|
|
22
|
-
height: 10px;
|
|
23
|
-
border-radius: 10px;
|
|
24
|
-
content: '';
|
|
25
|
-
#{$direction}: 4px;
|
|
26
|
-
background-color: $ms-color-neutralSecondary;
|
|
27
|
-
outline: 1px solid transparent;
|
|
28
|
-
transition-property: background, left;
|
|
29
|
-
transition-duration: 250ms;
|
|
30
|
-
transition-timing-function: cubic-bezier(.4, 0, .23, 1);
|
|
31
|
-
|
|
32
|
-
@media screen and (-ms-high-contrast: active) {
|
|
33
|
-
border: 2.5px solid $ms-color-white;
|
|
34
|
-
height: 15px;
|
|
35
|
-
outline: 0;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
@media screen and (-ms-high-contrast: black-on-white) {
|
|
39
|
-
border-color: $ms-color-black;
|
|
40
|
-
}
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
@if $direction == left {
|
|
44
|
-
&::before {
|
|
45
|
-
right: auto;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@if $direction == right {
|
|
50
|
-
&::before {
|
|
51
|
-
background-color: $ms-color-white;
|
|
52
|
-
left: 28px;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
// Toggle
|
|
58
|
-
.ms-Toggle {
|
|
59
|
-
@include ms-baseFont;
|
|
60
|
-
@include ms-font-m;
|
|
61
|
-
@include ms-u-normalize;
|
|
62
|
-
position: relative;
|
|
63
|
-
display: block;
|
|
64
|
-
margin-bottom: 26px;
|
|
65
|
-
|
|
66
|
-
// Action label (on/off) on the right of the toggle
|
|
67
|
-
.ms-Label {
|
|
68
|
-
position: relative;
|
|
69
|
-
top: -2px;
|
|
70
|
-
padding: 0 0 0 50px;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
// 'Off' state - slider on the left
|
|
74
|
-
& .ms-Toggle-field {
|
|
75
|
-
@include ms-Toggle-slider(left);
|
|
76
|
-
|
|
77
|
-
// Show the off label / hide the on label
|
|
78
|
-
.ms-Label--off {
|
|
79
|
-
display: block;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
.ms-Label--on {
|
|
83
|
-
display: none;
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
// 'On' state - slider on the right
|
|
88
|
-
& .ms-Toggle-field.is-selected {
|
|
89
|
-
background-color: $ms-color-themePrimary;
|
|
90
|
-
border-color: $ms-color-themePrimary;
|
|
91
|
-
|
|
92
|
-
@include ms-Toggle-slider(right);
|
|
93
|
-
|
|
94
|
-
// Show the on label / hide the off label
|
|
95
|
-
.ms-Label--off {
|
|
96
|
-
display: none;
|
|
97
|
-
}
|
|
98
|
-
|
|
99
|
-
.ms-Label--on {
|
|
100
|
-
display: block;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
@media screen and (-ms-high-contrast: active) {
|
|
104
|
-
background-color: $ms-color-white;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
@media screen and (-ms-high-contrast: black-on-white) {
|
|
108
|
-
background-color: $ms-color-black;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
&:focus,
|
|
113
|
-
&:hover {
|
|
114
|
-
& + .ms-Toggle-field {
|
|
115
|
-
border-color: $ms-color-neutralSecondary;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
& + .ms-Toggle-field::before {
|
|
119
|
-
background-color: $ms-color-neutralPrimary;
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
&:checked + .ms-Toggle-field {
|
|
123
|
-
background-color: $ms-color-themeDarkAlt;
|
|
124
|
-
border-color: $ms-color-themeDarkAlt;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
&:checked + .ms-Toggle-field::before {
|
|
128
|
-
background-color: $ms-color-white;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
&:active {
|
|
133
|
-
&:checked + .ms-Toggle-field {
|
|
134
|
-
background-color: $ms-color-themeDark;
|
|
135
|
-
border-color: $ms-color-themeDark;
|
|
136
|
-
}
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
.ms-Toggle-field {
|
|
140
|
-
&:focus,
|
|
141
|
-
&:hover {
|
|
142
|
-
border-color: $ms-color-neutralPrimary;
|
|
143
|
-
}
|
|
144
|
-
|
|
145
|
-
&.is-selected {
|
|
146
|
-
&:focus,
|
|
147
|
-
&:hover {
|
|
148
|
-
background-color: $ms-color-themeDarkAlt;
|
|
149
|
-
border-color: $ms-color-themeDarkAlt;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.ms-Label {
|
|
154
|
-
color: $ms-color-black;
|
|
155
|
-
user-select: none;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
&:hover {
|
|
159
|
-
.ms-Label {
|
|
160
|
-
color: $ms-color-black;
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
|
|
164
|
-
&:active {
|
|
165
|
-
.ms-Label {
|
|
166
|
-
color: $ms-color-neutralPrimary;
|
|
167
|
-
}
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// Disabled state
|
|
172
|
-
&.is-disabled {
|
|
173
|
-
.ms-Label {
|
|
174
|
-
@include ms-Label-is-disabled;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.ms-Toggle-field {
|
|
178
|
-
background-color: $ms-color-white;
|
|
179
|
-
border-color: $ms-color-neutralTertiaryAlt;
|
|
180
|
-
pointer-events: none;
|
|
181
|
-
cursor: default;
|
|
182
|
-
|
|
183
|
-
&::before {
|
|
184
|
-
background-color: $ms-color-neutralTertiaryAlt;
|
|
185
|
-
}
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
.ms-Toggle-field,
|
|
189
|
-
.ms-Toggle-field::before {
|
|
190
|
-
@media screen and (-ms-high-contrast: active) {
|
|
191
|
-
border-color: $ms-color-contrastBlackDisabled;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
@media screen and (-ms-high-contrast: black-on-white) {
|
|
195
|
-
border-color: $ms-color-contrastWhiteDisabled;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
// Description text
|
|
202
|
-
.ms-Toggle-description {
|
|
203
|
-
position: relative;
|
|
204
|
-
font-size: $ms-font-size-m;
|
|
205
|
-
vertical-align: top;
|
|
206
|
-
display: block;
|
|
207
|
-
margin-bottom: 8px;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
// Toggle input field
|
|
211
|
-
.ms-Toggle-field {
|
|
212
|
-
position: relative;
|
|
213
|
-
display: inline-block;
|
|
214
|
-
width: 45px;
|
|
215
|
-
height: 20px;
|
|
216
|
-
box-sizing: border-box;
|
|
217
|
-
border: 2px solid $ms-color-neutralTertiary;
|
|
218
|
-
border-radius: 20px;
|
|
219
|
-
cursor: pointer;
|
|
220
|
-
transition-property: background, left, border-color;
|
|
221
|
-
transition-duration: 250ms;
|
|
222
|
-
transition-timing-function: cubic-bezier(.4, 0, .23, 1);
|
|
223
|
-
outline: 0;
|
|
224
|
-
|
|
225
|
-
&:hover,
|
|
226
|
-
&:focus {
|
|
227
|
-
border-color: $ms-color-neutralSecondary;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
// On/Off slide states
|
|
232
|
-
.ms-Toggle-input {
|
|
233
|
-
display: none;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
//== Modifier: Toggle with description text left
|
|
237
|
-
//
|
|
238
|
-
.ms-Toggle.ms-Toggle--textLeft {
|
|
239
|
-
width: 225px;
|
|
240
|
-
margin-bottom: 40px;
|
|
241
|
-
|
|
242
|
-
.ms-Toggle-description {
|
|
243
|
-
display: inline-block;
|
|
244
|
-
max-width: 150px;
|
|
245
|
-
top: -3px;
|
|
246
|
-
margin-bottom: 0;
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
.ms-Toggle-field {
|
|
250
|
-
float: right;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
5
|
+
// Copyright (c) Microsoft. All rights reserved. Licensed under the MIT license. See LICENSE in the project root for license information.
|
|
6
|
+
|
|
7
|
+
//
|
|
8
|
+
// Office UI Fabric
|
|
9
|
+
// --------------------------------------------------
|
|
10
|
+
// Toggle styles
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
@import '../Label/Label.scss';
|
|
14
|
+
|
|
15
|
+
// Slider mixin
|
|
16
|
+
@mixin ms-Toggle-slider($direction) {
|
|
17
|
+
// Slider pseudo element
|
|
18
|
+
&::before {
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: 3px;
|
|
21
|
+
width: 10px;
|
|
22
|
+
height: 10px;
|
|
23
|
+
border-radius: 10px;
|
|
24
|
+
content: '';
|
|
25
|
+
#{$direction}: 4px;
|
|
26
|
+
background-color: $ms-color-neutralSecondary;
|
|
27
|
+
outline: 1px solid transparent;
|
|
28
|
+
transition-property: background, left;
|
|
29
|
+
transition-duration: 250ms;
|
|
30
|
+
transition-timing-function: cubic-bezier(.4, 0, .23, 1);
|
|
31
|
+
|
|
32
|
+
@media screen and (-ms-high-contrast: active) {
|
|
33
|
+
border: 2.5px solid $ms-color-white;
|
|
34
|
+
height: 15px;
|
|
35
|
+
outline: 0;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
@media screen and (-ms-high-contrast: black-on-white) {
|
|
39
|
+
border-color: $ms-color-black;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
@if $direction == left {
|
|
44
|
+
&::before {
|
|
45
|
+
right: auto;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@if $direction == right {
|
|
50
|
+
&::before {
|
|
51
|
+
background-color: $ms-color-white;
|
|
52
|
+
left: 28px;
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Toggle
|
|
58
|
+
.ms-Toggle {
|
|
59
|
+
@include ms-baseFont;
|
|
60
|
+
@include ms-font-m;
|
|
61
|
+
@include ms-u-normalize;
|
|
62
|
+
position: relative;
|
|
63
|
+
display: block;
|
|
64
|
+
margin-bottom: 26px;
|
|
65
|
+
|
|
66
|
+
// Action label (on/off) on the right of the toggle
|
|
67
|
+
.ms-Label {
|
|
68
|
+
position: relative;
|
|
69
|
+
top: -2px;
|
|
70
|
+
padding: 0 0 0 50px;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
// 'Off' state - slider on the left
|
|
74
|
+
& .ms-Toggle-field {
|
|
75
|
+
@include ms-Toggle-slider(left);
|
|
76
|
+
|
|
77
|
+
// Show the off label / hide the on label
|
|
78
|
+
.ms-Label--off {
|
|
79
|
+
display: block;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.ms-Label--on {
|
|
83
|
+
display: none;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
// 'On' state - slider on the right
|
|
88
|
+
& .ms-Toggle-field.is-selected {
|
|
89
|
+
background-color: $ms-color-themePrimary;
|
|
90
|
+
border-color: $ms-color-themePrimary;
|
|
91
|
+
|
|
92
|
+
@include ms-Toggle-slider(right);
|
|
93
|
+
|
|
94
|
+
// Show the on label / hide the off label
|
|
95
|
+
.ms-Label--off {
|
|
96
|
+
display: none;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
.ms-Label--on {
|
|
100
|
+
display: block;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
@media screen and (-ms-high-contrast: active) {
|
|
104
|
+
background-color: $ms-color-white;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
@media screen and (-ms-high-contrast: black-on-white) {
|
|
108
|
+
background-color: $ms-color-black;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&:focus,
|
|
113
|
+
&:hover {
|
|
114
|
+
& + .ms-Toggle-field {
|
|
115
|
+
border-color: $ms-color-neutralSecondary;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
& + .ms-Toggle-field::before {
|
|
119
|
+
background-color: $ms-color-neutralPrimary;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&:checked + .ms-Toggle-field {
|
|
123
|
+
background-color: $ms-color-themeDarkAlt;
|
|
124
|
+
border-color: $ms-color-themeDarkAlt;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&:checked + .ms-Toggle-field::before {
|
|
128
|
+
background-color: $ms-color-white;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
&:active {
|
|
133
|
+
&:checked + .ms-Toggle-field {
|
|
134
|
+
background-color: $ms-color-themeDark;
|
|
135
|
+
border-color: $ms-color-themeDark;
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.ms-Toggle-field {
|
|
140
|
+
&:focus,
|
|
141
|
+
&:hover {
|
|
142
|
+
border-color: $ms-color-neutralPrimary;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&.is-selected {
|
|
146
|
+
&:focus,
|
|
147
|
+
&:hover {
|
|
148
|
+
background-color: $ms-color-themeDarkAlt;
|
|
149
|
+
border-color: $ms-color-themeDarkAlt;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.ms-Label {
|
|
154
|
+
color: $ms-color-black;
|
|
155
|
+
user-select: none;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
&:hover {
|
|
159
|
+
.ms-Label {
|
|
160
|
+
color: $ms-color-black;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&:active {
|
|
165
|
+
.ms-Label {
|
|
166
|
+
color: $ms-color-neutralPrimary;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Disabled state
|
|
172
|
+
&.is-disabled {
|
|
173
|
+
.ms-Label {
|
|
174
|
+
@include ms-Label-is-disabled;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.ms-Toggle-field {
|
|
178
|
+
background-color: $ms-color-white;
|
|
179
|
+
border-color: $ms-color-neutralTertiaryAlt;
|
|
180
|
+
pointer-events: none;
|
|
181
|
+
cursor: default;
|
|
182
|
+
|
|
183
|
+
&::before {
|
|
184
|
+
background-color: $ms-color-neutralTertiaryAlt;
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.ms-Toggle-field,
|
|
189
|
+
.ms-Toggle-field::before {
|
|
190
|
+
@media screen and (-ms-high-contrast: active) {
|
|
191
|
+
border-color: $ms-color-contrastBlackDisabled;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
@media screen and (-ms-high-contrast: black-on-white) {
|
|
195
|
+
border-color: $ms-color-contrastWhiteDisabled;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
// Description text
|
|
202
|
+
.ms-Toggle-description {
|
|
203
|
+
position: relative;
|
|
204
|
+
font-size: $ms-font-size-m;
|
|
205
|
+
vertical-align: top;
|
|
206
|
+
display: block;
|
|
207
|
+
margin-bottom: 8px;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
// Toggle input field
|
|
211
|
+
.ms-Toggle-field {
|
|
212
|
+
position: relative;
|
|
213
|
+
display: inline-block;
|
|
214
|
+
width: 45px;
|
|
215
|
+
height: 20px;
|
|
216
|
+
box-sizing: border-box;
|
|
217
|
+
border: 2px solid $ms-color-neutralTertiary;
|
|
218
|
+
border-radius: 20px;
|
|
219
|
+
cursor: pointer;
|
|
220
|
+
transition-property: background, left, border-color;
|
|
221
|
+
transition-duration: 250ms;
|
|
222
|
+
transition-timing-function: cubic-bezier(.4, 0, .23, 1);
|
|
223
|
+
outline: 0;
|
|
224
|
+
|
|
225
|
+
&:hover,
|
|
226
|
+
&:focus {
|
|
227
|
+
border-color: $ms-color-neutralSecondary;
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
// On/Off slide states
|
|
232
|
+
.ms-Toggle-input {
|
|
233
|
+
display: none;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
//== Modifier: Toggle with description text left
|
|
237
|
+
//
|
|
238
|
+
.ms-Toggle.ms-Toggle--textLeft {
|
|
239
|
+
width: 225px;
|
|
240
|
+
margin-bottom: 40px;
|
|
241
|
+
|
|
242
|
+
.ms-Toggle-description {
|
|
243
|
+
display: inline-block;
|
|
244
|
+
max-width: 150px;
|
|
245
|
+
top: -3px;
|
|
246
|
+
margin-bottom: 0;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
.ms-Toggle-field {
|
|
250
|
+
float: right;
|
|
251
|
+
}
|
|
252
|
+
}
|