@ms-atlas-module/datastudio-datafactory 0.1.36
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.
Potentially problematic release.
This version of @ms-atlas-module/datastudio-datafactory might be problematic. Click here for more details.
- package/_generated/ClientResources.js +1549 -0
- package/_generated/Framework.js +97 -0
- package/_generated/Svg.js +201 -0
- package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
- package/bootstrapper/CSS/Callout.css +43 -0
- package/bootstrapper/CSS/Common.css +22 -0
- package/bootstrapper/CSS/FormFields.css +133 -0
- package/bootstrapper/CSS/InlineBlock.css +34 -0
- package/bootstrapper/CSS/ParameterGroups.css +77 -0
- package/bootstrapper/CSS/Pivot.css +25 -0
- package/bootstrapper/CSS/Wizard.css +197 -0
- package/bootstrapper/CalloutBinding.js +52 -0
- package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
- package/bootstrapper/CopyBinding.js +150 -0
- package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
- package/bootstrapper/FormFields.js +397 -0
- package/bootstrapper/InlineBlockBinding.js +69 -0
- package/bootstrapper/JQueryUIBindings.js +152 -0
- package/bootstrapper/KnockoutBindings.js +635 -0
- package/bootstrapper/LoadingBinding.js +54 -0
- package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
- package/bootstrapper/ParameterGroupsBinding.js +289 -0
- package/bootstrapper/PivotKnockoutBinding.js +61 -0
- package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
- package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
- package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
- package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
- package/bootstrapper/WinJSKnockoutBindings.js +49 -0
- package/bootstrapper/WizardBinding.js +611 -0
- package/bootstrapper/startup.js +29 -0
- package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
- package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
- package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
- package/libs/WinJS/WinJs.min.js +61909 -0
- package/libs/WinJS/ui-light.css +8500 -0
- package/package.json +15 -0
- package/scripts/AppContext.js +262 -0
- package/scripts/ExposureControl.js +11 -0
- package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
- package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
- package/scripts/Framework/Model/Contracts/Activity.js +83 -0
- package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
- package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
- package/scripts/Framework/Model/Contracts/Common.js +19 -0
- package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
- package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
- package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
- package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
- package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
- package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
- package/scripts/Framework/Model/DataCache.js +105 -0
- package/scripts/Framework/Model/DataFactoryCache.js +24 -0
- package/scripts/Framework/Model/Filter.js +186 -0
- package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
- package/scripts/Framework/Model/MonitoringView.js +40 -0
- package/scripts/Framework/Shared/Constants.js +27 -0
- package/scripts/Framework/Shared/DataConstants.js +61 -0
- package/scripts/Framework/Shared/Disposable.js +53 -0
- package/scripts/Framework/Shared/IconResources.js +59 -0
- package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
- package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
- package/scripts/Framework/Telemetry/Telemetry.js +78 -0
- package/scripts/Framework/UI/Breadcrumbs.js +84 -0
- package/scripts/Framework/UI/Command.js +231 -0
- package/scripts/Framework/UI/ContextMenu.js +80 -0
- package/scripts/Framework/UI/Loader.js +11 -0
- package/scripts/Framework/UI/Menu.js +65 -0
- package/scripts/Framework/UI/PanelMessage.js +25 -0
- package/scripts/Framework/UI/Refresh.js +70 -0
- package/scripts/Framework/UI/Spinner.js +61 -0
- package/scripts/Framework/UI/StatusCalendar.js +1070 -0
- package/scripts/Framework/UI/Toolbar.js +84 -0
- package/scripts/Framework/Util/Datetime.js +258 -0
- package/scripts/Framework/Util/Log.js +10 -0
- package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
- package/scripts/Framework/Util/Security.js +73 -0
- package/scripts/Framework/Util/Util.js +332 -0
- package/scripts/Framework/Views/HoverFlyout.js +92 -0
- package/scripts/Handlers/ErrorHandler.js +176 -0
- package/scripts/Handlers/MessageHandler.js +115 -0
- package/scripts/Handlers/MonitoringViewHandler.js +199 -0
- package/scripts/Handlers/RoutingHandler.js +364 -0
- package/scripts/Handlers/WinJSHandlers.js +265 -0
- package/scripts/MonitoringViewContext.js +75 -0
- package/scripts/Services/AzureInsightsService.js +162 -0
- package/scripts/Services/AzureResourceManagerService.js +869 -0
- package/scripts/Services/BaseService.js +232 -0
- package/scripts/Services/DataFactoryService.js +204 -0
- package/scripts/Services/HDInsightArmService.js +59 -0
- package/scripts/ViewContext.js +9 -0
- package/stylesheets/main.css +1042 -0
- package/views/Edit/DateTimeFilterViewModel.js +211 -0
- package/views/Edit/FilterViewModel.js +131 -0
- package/views/Shared/ProvisioningState.js +11 -0
|
@@ -0,0 +1,1042 @@
|
|
|
1
|
+
.adf-scroll,
|
|
2
|
+
.datafactory-container .rightSidePanel .panelContent > div {
|
|
3
|
+
scrollbar-base-color: transparent;
|
|
4
|
+
scrollbar-arrow-color: transparent;
|
|
5
|
+
scrollbar-highlight-color: transparent;
|
|
6
|
+
scrollbar-darkshadow-color: transparent;
|
|
7
|
+
scrollbar-face-color: transparent;
|
|
8
|
+
scrollbar-shadow-color: transparent;
|
|
9
|
+
scrollbar-3dlight-color: transparent;
|
|
10
|
+
}
|
|
11
|
+
.adf-scroll:hover,
|
|
12
|
+
.datafactory-container .rightSidePanel .panelContent > div:hover {
|
|
13
|
+
scrollbar-face-color: #3b444e;
|
|
14
|
+
}
|
|
15
|
+
.adf-scroll:hover::-webkit-scrollbar-thumb,
|
|
16
|
+
.datafactory-container
|
|
17
|
+
.rightSidePanel
|
|
18
|
+
.panelContent
|
|
19
|
+
> div:hover::-webkit-scrollbar-thumb {
|
|
20
|
+
background-color: #3b444e;
|
|
21
|
+
}
|
|
22
|
+
.adf-scroll::-webkit-scrollbar,
|
|
23
|
+
.datafactory-container .rightSidePanel .panelContent > div::-webkit-scrollbar {
|
|
24
|
+
width: 7px;
|
|
25
|
+
height: 7px;
|
|
26
|
+
background-color: transparent;
|
|
27
|
+
}
|
|
28
|
+
.adf-scroll::-webkit-scrollbar-thumb,
|
|
29
|
+
.datafactory-container
|
|
30
|
+
.rightSidePanel
|
|
31
|
+
.panelContent
|
|
32
|
+
> div::-webkit-scrollbar-thumb {
|
|
33
|
+
background-color: transparent;
|
|
34
|
+
}
|
|
35
|
+
.adf-scroll::-webkit-scrollbar-thumb:hover,
|
|
36
|
+
.datafactory-container
|
|
37
|
+
.rightSidePanel
|
|
38
|
+
.panelContent
|
|
39
|
+
> div::-webkit-scrollbar-thumb:hover {
|
|
40
|
+
background-color: #3b444e;
|
|
41
|
+
}
|
|
42
|
+
[data-tooltip] {
|
|
43
|
+
position: relative;
|
|
44
|
+
}
|
|
45
|
+
[data-tooltip]:after,
|
|
46
|
+
[data-tooltip]:before {
|
|
47
|
+
position: absolute;
|
|
48
|
+
visibility: hidden;
|
|
49
|
+
opacity: 0;
|
|
50
|
+
z-index: 100000;
|
|
51
|
+
pointer-events: none;
|
|
52
|
+
-webkit-transition: 200ms ease;
|
|
53
|
+
transition: 200ms ease;
|
|
54
|
+
-webkit-transition-delay: 0ms;
|
|
55
|
+
transition-delay: 0ms;
|
|
56
|
+
-webkit-transform: translate3d(0, 0, 0);
|
|
57
|
+
transform: translate3d(0, 0, 0);
|
|
58
|
+
}
|
|
59
|
+
[data-tooltip]:hover:after,
|
|
60
|
+
[data-tooltip]:hover:before {
|
|
61
|
+
visibility: visible;
|
|
62
|
+
opacity: 1;
|
|
63
|
+
}
|
|
64
|
+
[data-tooltip]:before {
|
|
65
|
+
content: "";
|
|
66
|
+
position: absolute;
|
|
67
|
+
background: 0 0;
|
|
68
|
+
border: 6px solid transparent;
|
|
69
|
+
z-index: 100001;
|
|
70
|
+
}
|
|
71
|
+
[data-tooltip]:after {
|
|
72
|
+
content: attr(data-tooltip);
|
|
73
|
+
background-color: #343a41;
|
|
74
|
+
color: white;
|
|
75
|
+
padding: 4px 8px 6px 8px;
|
|
76
|
+
font-size: 12px;
|
|
77
|
+
line-height: 18px;
|
|
78
|
+
white-space: nowrap;
|
|
79
|
+
}
|
|
80
|
+
[data-tooltip]:before,
|
|
81
|
+
[data-tooltip]:after {
|
|
82
|
+
left: auto;
|
|
83
|
+
right: auto;
|
|
84
|
+
top: auto;
|
|
85
|
+
bottom: auto;
|
|
86
|
+
left: 50%;
|
|
87
|
+
-webkit-transform: translateX(-50%);
|
|
88
|
+
transform: translateX(-50%);
|
|
89
|
+
top: 100%;
|
|
90
|
+
}
|
|
91
|
+
[data-tooltip]:before {
|
|
92
|
+
margin: 0;
|
|
93
|
+
margin-top: -12px;
|
|
94
|
+
border-color: transparent;
|
|
95
|
+
border-bottom-color: #343a41;
|
|
96
|
+
}
|
|
97
|
+
[data-tooltip]:hover:before,
|
|
98
|
+
[data-tooltip]:hover:after {
|
|
99
|
+
-webkit-transform: translateY(12px) translateX(-50%);
|
|
100
|
+
transform: translateY(12px) translateX(-50%);
|
|
101
|
+
}
|
|
102
|
+
[data-tooltip].top:before,
|
|
103
|
+
[data-tooltip].top:after {
|
|
104
|
+
left: auto;
|
|
105
|
+
right: auto;
|
|
106
|
+
top: auto;
|
|
107
|
+
bottom: auto;
|
|
108
|
+
left: 50%;
|
|
109
|
+
-webkit-transform: translateX(-50%);
|
|
110
|
+
transform: translateX(-50%);
|
|
111
|
+
bottom: 100%;
|
|
112
|
+
}
|
|
113
|
+
[data-tooltip].top:before {
|
|
114
|
+
margin: 0;
|
|
115
|
+
margin-bottom: -12px;
|
|
116
|
+
border-color: transparent;
|
|
117
|
+
border-top-color: #343a41;
|
|
118
|
+
}
|
|
119
|
+
[data-tooltip].top:hover:before,
|
|
120
|
+
[data-tooltip].top:hover:after {
|
|
121
|
+
-webkit-transform: translateY(-12px) translateX(-50%);
|
|
122
|
+
transform: translateY(-12px) translateX(-50%);
|
|
123
|
+
}
|
|
124
|
+
[data-tooltip].left:before,
|
|
125
|
+
[data-tooltip].left:after {
|
|
126
|
+
left: auto;
|
|
127
|
+
right: auto;
|
|
128
|
+
top: auto;
|
|
129
|
+
bottom: auto;
|
|
130
|
+
bottom: 50%;
|
|
131
|
+
-webkit-transform: none;
|
|
132
|
+
transform: none;
|
|
133
|
+
right: 100%;
|
|
134
|
+
}
|
|
135
|
+
[data-tooltip].left:before {
|
|
136
|
+
margin: 0;
|
|
137
|
+
margin-right: -12px;
|
|
138
|
+
margin-bottom: -6px;
|
|
139
|
+
border-color: transparent;
|
|
140
|
+
border-left-color: #343a41;
|
|
141
|
+
}
|
|
142
|
+
[data-tooltip].left:hover:before,
|
|
143
|
+
[data-tooltip].left:hover:after {
|
|
144
|
+
-webkit-transform: translateX(-12px) translateX(0%);
|
|
145
|
+
transform: translateX(-12px) translateX(0%);
|
|
146
|
+
}
|
|
147
|
+
[data-tooltip].left:after {
|
|
148
|
+
margin-bottom: -12px;
|
|
149
|
+
}
|
|
150
|
+
[data-tooltip].right:before,
|
|
151
|
+
[data-tooltip].right:after {
|
|
152
|
+
left: auto;
|
|
153
|
+
right: auto;
|
|
154
|
+
top: auto;
|
|
155
|
+
bottom: auto;
|
|
156
|
+
bottom: 50%;
|
|
157
|
+
-webkit-transform: none;
|
|
158
|
+
transform: none;
|
|
159
|
+
left: 100%;
|
|
160
|
+
}
|
|
161
|
+
[data-tooltip].right:before {
|
|
162
|
+
margin: 0;
|
|
163
|
+
margin-left: -12px;
|
|
164
|
+
margin-bottom: -6px;
|
|
165
|
+
border-color: transparent;
|
|
166
|
+
border-right-color: #343a41;
|
|
167
|
+
}
|
|
168
|
+
[data-tooltip].right:hover:before,
|
|
169
|
+
[data-tooltip].right:hover:after {
|
|
170
|
+
-webkit-transform: translateX(12px) translateX(0%);
|
|
171
|
+
transform: translateX(12px) translateX(0%);
|
|
172
|
+
}
|
|
173
|
+
[data-tooltip].right:after {
|
|
174
|
+
margin-bottom: -12px;
|
|
175
|
+
}
|
|
176
|
+
[data-tooltip].bottom:before,
|
|
177
|
+
[data-tooltip].bottom:after {
|
|
178
|
+
left: auto;
|
|
179
|
+
right: auto;
|
|
180
|
+
top: auto;
|
|
181
|
+
bottom: auto;
|
|
182
|
+
left: 50%;
|
|
183
|
+
-webkit-transform: translateX(-50%);
|
|
184
|
+
transform: translateX(-50%);
|
|
185
|
+
top: 100%;
|
|
186
|
+
}
|
|
187
|
+
[data-tooltip].bottom:before {
|
|
188
|
+
margin: 0;
|
|
189
|
+
margin-top: -12px;
|
|
190
|
+
border-color: transparent;
|
|
191
|
+
border-bottom-color: #343a41;
|
|
192
|
+
}
|
|
193
|
+
[data-tooltip].bottom:hover:before,
|
|
194
|
+
[data-tooltip].bottom:hover:after {
|
|
195
|
+
-webkit-transform: translateY(12px) translateX(-50%);
|
|
196
|
+
transform: translateY(12px) translateX(-50%);
|
|
197
|
+
}
|
|
198
|
+
[data-tooltip].small:after {
|
|
199
|
+
width: 80px;
|
|
200
|
+
white-space: pre-line;
|
|
201
|
+
text-overflow: ellipsis;
|
|
202
|
+
overflow: hidden;
|
|
203
|
+
padding: 10px 16px 12px 16px;
|
|
204
|
+
}
|
|
205
|
+
[data-tooltip].medium:after {
|
|
206
|
+
width: 160px;
|
|
207
|
+
white-space: pre-line;
|
|
208
|
+
text-overflow: ellipsis;
|
|
209
|
+
overflow: hidden;
|
|
210
|
+
padding: 10px 16px 12px 16px;
|
|
211
|
+
}
|
|
212
|
+
[data-tooltip].large:after {
|
|
213
|
+
width: 260px;
|
|
214
|
+
white-space: pre-line;
|
|
215
|
+
text-overflow: ellipsis;
|
|
216
|
+
overflow: hidden;
|
|
217
|
+
padding: 10px 16px 12px 16px;
|
|
218
|
+
}
|
|
219
|
+
[data-tooltip=""]:after,
|
|
220
|
+
[data-tooltip=""]:before {
|
|
221
|
+
display: none !important;
|
|
222
|
+
}
|
|
223
|
+
.adf-darkIconToolbar button.win-command svg {
|
|
224
|
+
color: #515151;
|
|
225
|
+
}
|
|
226
|
+
.adf-darkIconToolbar button.win-command svg .svg-fill {
|
|
227
|
+
fill: #515151;
|
|
228
|
+
}
|
|
229
|
+
.adf-darkIconToolbar button.win-command svg .svg-stroke {
|
|
230
|
+
stroke: #515151;
|
|
231
|
+
}
|
|
232
|
+
.adf-darkIconToolbar button.win-command:hover:not(:disabled),
|
|
233
|
+
.adf-darkIconToolbar button.win-command.adf-hovered,
|
|
234
|
+
.adf-darkIconToolbar button.win-command:active {
|
|
235
|
+
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
236
|
+
}
|
|
237
|
+
.adf-darkIconToolbar button.win-command:hover:not(:disabled) svg,
|
|
238
|
+
.adf-darkIconToolbar button.win-command.adf-hovered svg,
|
|
239
|
+
.adf-darkIconToolbar button.win-command:active svg {
|
|
240
|
+
color: #008272;
|
|
241
|
+
}
|
|
242
|
+
.adf-darkIconToolbar button.win-command:hover:not(:disabled) svg .svg-fill,
|
|
243
|
+
.adf-darkIconToolbar button.win-command.adf-hovered svg .svg-fill,
|
|
244
|
+
.adf-darkIconToolbar button.win-command:active svg .svg-fill {
|
|
245
|
+
fill: #008272;
|
|
246
|
+
}
|
|
247
|
+
.adf-darkIconToolbar button.win-command:hover:not(:disabled) svg .svg-stroke,
|
|
248
|
+
.adf-darkIconToolbar button.win-command.adf-hovered svg .svg-stroke,
|
|
249
|
+
.adf-darkIconToolbar button.win-command:active svg .svg-stroke {
|
|
250
|
+
stroke: #008272;
|
|
251
|
+
}
|
|
252
|
+
.adf-darkIconToolbar button.win-command:disabled svg {
|
|
253
|
+
color: #515151;
|
|
254
|
+
opacity: 0.3;
|
|
255
|
+
}
|
|
256
|
+
.adf-darkIconToolbar button.win-command:disabled svg .svg-fill {
|
|
257
|
+
fill: #515151;
|
|
258
|
+
}
|
|
259
|
+
.adf-darkIconToolbar button.win-command:disabled svg .svg-stroke {
|
|
260
|
+
stroke: #515151;
|
|
261
|
+
}
|
|
262
|
+
.adf-darkIconToolbar button.win-command[aria-checked="true"]::before {
|
|
263
|
+
background-color: transparent !important;
|
|
264
|
+
border: none !important;
|
|
265
|
+
}
|
|
266
|
+
.adf-darkIconToolbar button.win-command[aria-checked="true"] svg {
|
|
267
|
+
color: #6bb700;
|
|
268
|
+
}
|
|
269
|
+
.adf-darkIconToolbar button.win-command[aria-checked="true"] svg .svg-fill {
|
|
270
|
+
fill: #6bb700;
|
|
271
|
+
}
|
|
272
|
+
.adf-darkIconToolbar button.win-command[aria-checked="true"] svg .svg-stroke {
|
|
273
|
+
stroke: #6bb700;
|
|
274
|
+
}
|
|
275
|
+
.adf-lightIconToolbar button.win-command svg {
|
|
276
|
+
color: #ffffff;
|
|
277
|
+
}
|
|
278
|
+
.adf-lightIconToolbar button.win-command svg .svg-fill {
|
|
279
|
+
fill: #ffffff;
|
|
280
|
+
}
|
|
281
|
+
.adf-lightIconToolbar button.win-command svg .svg-stroke {
|
|
282
|
+
stroke: #ffffff;
|
|
283
|
+
}
|
|
284
|
+
.adf-lightIconToolbar button.win-command:hover:not(:disabled),
|
|
285
|
+
.adf-lightIconToolbar button.win-command.adf-hovered {
|
|
286
|
+
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
287
|
+
}
|
|
288
|
+
.adf-lightIconToolbar button.win-command:hover:not(:disabled) svg,
|
|
289
|
+
.adf-lightIconToolbar button.win-command.adf-hovered svg {
|
|
290
|
+
color: #008272;
|
|
291
|
+
}
|
|
292
|
+
.adf-lightIconToolbar button.win-command:hover:not(:disabled) svg .svg-fill,
|
|
293
|
+
.adf-lightIconToolbar button.win-command.adf-hovered svg .svg-fill {
|
|
294
|
+
fill: #008272;
|
|
295
|
+
}
|
|
296
|
+
.adf-lightIconToolbar button.win-command:hover:not(:disabled) svg .svg-stroke,
|
|
297
|
+
.adf-lightIconToolbar button.win-command.adf-hovered svg .svg-stroke {
|
|
298
|
+
stroke: #008272;
|
|
299
|
+
}
|
|
300
|
+
.adf-lightIconToolbar button.win-command:disabled svg {
|
|
301
|
+
color: #ffffff;
|
|
302
|
+
opacity: 0.3;
|
|
303
|
+
}
|
|
304
|
+
.adf-lightIconToolbar button.win-command:disabled svg .svg-fill {
|
|
305
|
+
fill: #ffffff;
|
|
306
|
+
}
|
|
307
|
+
.adf-lightIconToolbar button.win-command:disabled svg .svg-stroke {
|
|
308
|
+
stroke: #ffffff;
|
|
309
|
+
}
|
|
310
|
+
.adf-lightIconToolbar button.win-command[aria-checked="true"]::before {
|
|
311
|
+
background-color: transparent !important;
|
|
312
|
+
border: none !important;
|
|
313
|
+
}
|
|
314
|
+
.adf-lightIconToolbar button.win-command[aria-checked="true"] svg {
|
|
315
|
+
color: #6bb700;
|
|
316
|
+
}
|
|
317
|
+
.adf-lightIconToolbar button.win-command[aria-checked="true"] svg .svg-fill {
|
|
318
|
+
fill: #6bb700;
|
|
319
|
+
}
|
|
320
|
+
.adf-lightIconToolbar button.win-command[aria-checked="true"] svg .svg-stroke {
|
|
321
|
+
stroke: #6bb700;
|
|
322
|
+
}
|
|
323
|
+
textarea.adf-invisibleInput {
|
|
324
|
+
top: 0;
|
|
325
|
+
left: 0;
|
|
326
|
+
width: 2px;
|
|
327
|
+
height: 2px;
|
|
328
|
+
overflow: hidden;
|
|
329
|
+
}
|
|
330
|
+
input.atlas-input,
|
|
331
|
+
textarea.atlas-input {
|
|
332
|
+
margin-top: 4px;
|
|
333
|
+
padding: 8px;
|
|
334
|
+
border: solid 1px #b5b7b9;
|
|
335
|
+
}
|
|
336
|
+
input.atlas-input:hover,
|
|
337
|
+
textarea.atlas-input:hover {
|
|
338
|
+
border: solid 1px #55606e;
|
|
339
|
+
}
|
|
340
|
+
input.atlas-input:focus,
|
|
341
|
+
textarea.atlas-input:focus {
|
|
342
|
+
border: solid 1px #00b294;
|
|
343
|
+
}
|
|
344
|
+
.atlas-table-wrapper {
|
|
345
|
+
width: 100%;
|
|
346
|
+
}
|
|
347
|
+
table.atlas-table {
|
|
348
|
+
width: 100%;
|
|
349
|
+
margin-top: 4px;
|
|
350
|
+
padding: 8px;
|
|
351
|
+
border: solid 1px #b5b7b9;
|
|
352
|
+
background: white;
|
|
353
|
+
}
|
|
354
|
+
table.atlas-table:hover {
|
|
355
|
+
border: solid 1px #55606e;
|
|
356
|
+
}
|
|
357
|
+
table.atlas-table:focus {
|
|
358
|
+
border: solid 1px #00b294;
|
|
359
|
+
}
|
|
360
|
+
sidePanel.dataFactory {
|
|
361
|
+
background-color: #8cc63f;
|
|
362
|
+
}
|
|
363
|
+
.dataFactory-statusCalendar-type.Day .dataFactory-statusCalendar-columnLabel {
|
|
364
|
+
display: -webkit-box;
|
|
365
|
+
display: -ms-flexbox;
|
|
366
|
+
display: flex;
|
|
367
|
+
-webkit-box-pack: center;
|
|
368
|
+
-ms-flex-pack: center;
|
|
369
|
+
justify-content: center;
|
|
370
|
+
-ms-flex-line-pack: center;
|
|
371
|
+
align-content: center;
|
|
372
|
+
-webkit-box-align: center;
|
|
373
|
+
-ms-flex-align: center;
|
|
374
|
+
align-items: center;
|
|
375
|
+
-webkit-box-flex: 1;
|
|
376
|
+
-ms-flex: 1 1 auto;
|
|
377
|
+
flex: 1 1 auto;
|
|
378
|
+
height: 100%;
|
|
379
|
+
width: 100%;
|
|
380
|
+
}
|
|
381
|
+
.dataFactoryHome .quickLaunch button {
|
|
382
|
+
background-color: #8cc63f;
|
|
383
|
+
}
|
|
384
|
+
.dataFactory-text-ellipsis,
|
|
385
|
+
.adf-flexGrid-item .itemText {
|
|
386
|
+
white-space: nowrap;
|
|
387
|
+
overflow: hidden;
|
|
388
|
+
text-overflow: ellipsis;
|
|
389
|
+
min-width: 0;
|
|
390
|
+
}
|
|
391
|
+
.dataFactory-text-muted {
|
|
392
|
+
opacity: 0.5;
|
|
393
|
+
}
|
|
394
|
+
.adfGraphNodeStatusFlyout.win-flyout {
|
|
395
|
+
padding: 10px 10px 10px 10px;
|
|
396
|
+
background-color: #f2f2f2;
|
|
397
|
+
border: 1px solid #2c3137;
|
|
398
|
+
max-width: 1038px;
|
|
399
|
+
}
|
|
400
|
+
.dataFactory-statusCalendar {
|
|
401
|
+
color: #2c3137;
|
|
402
|
+
background-color: #f2f2f2;
|
|
403
|
+
}
|
|
404
|
+
.dataFactory-statusCalendar-font,
|
|
405
|
+
.dataFactory-statusCalendar,
|
|
406
|
+
.dataFactory-statusCalendar-statusBox {
|
|
407
|
+
font-family: "Segoe UI";
|
|
408
|
+
font-size: 12px;
|
|
409
|
+
}
|
|
410
|
+
.dataFactory-statusCalendar-header {
|
|
411
|
+
font-size: 13px;
|
|
412
|
+
text-align: center;
|
|
413
|
+
}
|
|
414
|
+
.dataFactory-statusCalendar-subHeader {
|
|
415
|
+
font-size: 12px;
|
|
416
|
+
text-align: center;
|
|
417
|
+
}
|
|
418
|
+
.dataFactory-statusCalendar-pageHeader {
|
|
419
|
+
font-size: 12px;
|
|
420
|
+
text-transform: uppercase;
|
|
421
|
+
margin: 10px 8px 16px 8px;
|
|
422
|
+
-webkit-box-pack: justify;
|
|
423
|
+
-ms-flex-pack: justify;
|
|
424
|
+
justify-content: space-between;
|
|
425
|
+
}
|
|
426
|
+
.dataFactory-statusCalendar-pageHeader > div {
|
|
427
|
+
min-width: 0;
|
|
428
|
+
}
|
|
429
|
+
.dataFactory-statusCalendar-footer {
|
|
430
|
+
font-size: 11px;
|
|
431
|
+
margin-top: 8px;
|
|
432
|
+
}
|
|
433
|
+
.activityRunDetailCalendar .dataFactory-statusCalendar-footer {
|
|
434
|
+
color: #00bcf2;
|
|
435
|
+
}
|
|
436
|
+
.activityRunDetailCalendar .dataFactory-loader-blockingUiLoading {
|
|
437
|
+
background-color: #f2f2f2;
|
|
438
|
+
}
|
|
439
|
+
.dataFactory-statusCalendar-label,
|
|
440
|
+
.dataFactory-statusCalendar-columnLabel,
|
|
441
|
+
.dataFactory-statusCalendar-rowLabel {
|
|
442
|
+
font-size: 13px;
|
|
443
|
+
}
|
|
444
|
+
.dataFactory-statusCalendar-columnLabel {
|
|
445
|
+
margin-bottom: 6px;
|
|
446
|
+
}
|
|
447
|
+
.dataFactory-statusCalendar .dataFactory-statusCalendar-columnLabel {
|
|
448
|
+
-webkit-box-flex: 1;
|
|
449
|
+
-ms-flex: 1;
|
|
450
|
+
flex: 1;
|
|
451
|
+
-webkit-box-align: end;
|
|
452
|
+
-ms-flex-align: end;
|
|
453
|
+
align-items: flex-end;
|
|
454
|
+
}
|
|
455
|
+
.dataFactory-statusCalendar-columnLabelOuter {
|
|
456
|
+
-webkit-box-flex: 1;
|
|
457
|
+
-ms-flex: 1;
|
|
458
|
+
flex: 1;
|
|
459
|
+
}
|
|
460
|
+
.dataFactory-statusCalendar-rowLabel {
|
|
461
|
+
width: 100px;
|
|
462
|
+
}
|
|
463
|
+
.dataFactory-statusCalendar-statusBox {
|
|
464
|
+
color: #ffffff;
|
|
465
|
+
padding: 1px;
|
|
466
|
+
width: 12px;
|
|
467
|
+
}
|
|
468
|
+
.dataFactory-statusCalendar-statusBox > div {
|
|
469
|
+
height: auto;
|
|
470
|
+
width: auto;
|
|
471
|
+
}
|
|
472
|
+
.dataFactory-statusCalendar-statusBox .success {
|
|
473
|
+
background-color: #6bb700;
|
|
474
|
+
}
|
|
475
|
+
.dataFactory-statusCalendar-statusBox .failed {
|
|
476
|
+
background-color: #d13438;
|
|
477
|
+
}
|
|
478
|
+
.dataFactory-statusCalendar-statusBox .missing {
|
|
479
|
+
background-color: #abadaf;
|
|
480
|
+
}
|
|
481
|
+
.dataFactory-statusCalendar-statusBox .waiting {
|
|
482
|
+
background-color: #eaa300;
|
|
483
|
+
}
|
|
484
|
+
.dataFactory-statusCalendar-statusBox .inprogress {
|
|
485
|
+
background: -webkit-linear-gradient(
|
|
486
|
+
45deg,
|
|
487
|
+
transparent 33%,
|
|
488
|
+
#6bb700 33%,
|
|
489
|
+
#6bb700 50%,
|
|
490
|
+
transparent 50%
|
|
491
|
+
);
|
|
492
|
+
background: linear-gradient(
|
|
493
|
+
45deg,
|
|
494
|
+
transparent 33%,
|
|
495
|
+
#6bb700 33%,
|
|
496
|
+
#6bb700 50%,
|
|
497
|
+
transparent 50%
|
|
498
|
+
);
|
|
499
|
+
background-size: 3px 3px;
|
|
500
|
+
}
|
|
501
|
+
.dataFactory-statusCalendar-statusBox.selected > div {
|
|
502
|
+
border: 4px solid #515151;
|
|
503
|
+
}
|
|
504
|
+
.dataFactory-statusCalendar-statusBox.highlight {
|
|
505
|
+
background-color: #b9ddd9;
|
|
506
|
+
}
|
|
507
|
+
.dataFactory-statusCalendar-type.Minute {
|
|
508
|
+
width: 250px;
|
|
509
|
+
}
|
|
510
|
+
.dataFactory-statusCalendar-type.Minute .dataFactory-statusCalendar-statusBox {
|
|
511
|
+
height: 15px;
|
|
512
|
+
padding: 3px;
|
|
513
|
+
}
|
|
514
|
+
.dataFactory-statusCalendar-type.Hour {
|
|
515
|
+
width: 519px;
|
|
516
|
+
}
|
|
517
|
+
.dataFactory-statusCalendar-type.Hour .dataFactory-statusCalendar-columnLabel {
|
|
518
|
+
margin-bottom: 0;
|
|
519
|
+
}
|
|
520
|
+
.dataFactory-statusCalendar-type.Hour .dataFactory-statusCalendar-columnTicker {
|
|
521
|
+
border-left: solid;
|
|
522
|
+
border-width: 2px;
|
|
523
|
+
border-color: #b5b7b9;
|
|
524
|
+
margin-bottom: 0;
|
|
525
|
+
height: 6px;
|
|
526
|
+
}
|
|
527
|
+
.dataFactory-statusCalendar-type.Hour .dataFactory-statusCalendar-statusBox {
|
|
528
|
+
height: 16px;
|
|
529
|
+
padding: 2px 2.5px 2px 2.5px;
|
|
530
|
+
}
|
|
531
|
+
.dataFactory-statusCalendar-type.Day {
|
|
532
|
+
width: 250px;
|
|
533
|
+
min-width: 250px;
|
|
534
|
+
max-width: 250px;
|
|
535
|
+
}
|
|
536
|
+
.dataFactory-statusCalendar-type.Day .dataFactory-statusCalendar-statusBox {
|
|
537
|
+
height: 30px;
|
|
538
|
+
padding: 2px;
|
|
539
|
+
}
|
|
540
|
+
.dataFactory-statusCalendar-type.Week,
|
|
541
|
+
.dataFactory-statusCalendar-type.Generic {
|
|
542
|
+
width: 250px;
|
|
543
|
+
}
|
|
544
|
+
.dataFactory-statusCalendar-type.Week .dataFactory-statusCalendar-statusBox,
|
|
545
|
+
.dataFactory-statusCalendar-type.Generic .dataFactory-statusCalendar-statusBox {
|
|
546
|
+
height: 18px;
|
|
547
|
+
width: 18px;
|
|
548
|
+
padding: 2px;
|
|
549
|
+
}
|
|
550
|
+
.dataFactory-statusCalendar-type.Week .dataFactory-statusCalendar-rowLabel,
|
|
551
|
+
.dataFactory-statusCalendar-type.Generic .dataFactory-statusCalendar-rowLabel {
|
|
552
|
+
width: 150px;
|
|
553
|
+
}
|
|
554
|
+
.dataFactory-statusCalendar-type.Month,
|
|
555
|
+
.dataFactory-statusCalendar-type.Year {
|
|
556
|
+
width: 250px;
|
|
557
|
+
}
|
|
558
|
+
.dataFactory-statusCalendar-type.Month .dataFactory-statusCalendar-statusBox,
|
|
559
|
+
.dataFactory-statusCalendar-type.Year .dataFactory-statusCalendar-statusBox {
|
|
560
|
+
height: 38px;
|
|
561
|
+
padding: 4px;
|
|
562
|
+
}
|
|
563
|
+
.dataFactory-statusCalendar-rowSeparator {
|
|
564
|
+
width: 100%;
|
|
565
|
+
height: 1px;
|
|
566
|
+
min-height: 1px;
|
|
567
|
+
color: #b5b7b9;
|
|
568
|
+
background-color: #b5b7b9;
|
|
569
|
+
border: none;
|
|
570
|
+
margin: 0 0 0 0;
|
|
571
|
+
}
|
|
572
|
+
.dataFactory-statusCalendar-icon button {
|
|
573
|
+
height: 16px;
|
|
574
|
+
min-height: 16px;
|
|
575
|
+
max-height: 16px;
|
|
576
|
+
width: 16px;
|
|
577
|
+
min-width: 16px;
|
|
578
|
+
max-width: 16px;
|
|
579
|
+
}
|
|
580
|
+
.dataFactory-statusCalendar-page {
|
|
581
|
+
padding-left: 5px;
|
|
582
|
+
padding-right: 5px;
|
|
583
|
+
min-width: 0;
|
|
584
|
+
min-height: 0;
|
|
585
|
+
}
|
|
586
|
+
@-webkit-keyframes barberpole {
|
|
587
|
+
0% {
|
|
588
|
+
left: -10px;
|
|
589
|
+
}
|
|
590
|
+
100% {
|
|
591
|
+
left: 10px;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
@keyframes barberpole {
|
|
595
|
+
0% {
|
|
596
|
+
left: -10px;
|
|
597
|
+
}
|
|
598
|
+
100% {
|
|
599
|
+
left: 10px;
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
.dataFactory-diagram-pipelineStatus {
|
|
603
|
+
width: 100%;
|
|
604
|
+
border: 1px solid #ffffff;
|
|
605
|
+
white-space: nowrap;
|
|
606
|
+
height: 10px;
|
|
607
|
+
position: absolute;
|
|
608
|
+
top: 0;
|
|
609
|
+
left: 0;
|
|
610
|
+
overflow: hidden;
|
|
611
|
+
}
|
|
612
|
+
.dataFactory-diagram-pipelineStatus .row {
|
|
613
|
+
position: absolute;
|
|
614
|
+
-webkit-animation: barberpole 0.75s linear infinite;
|
|
615
|
+
animation: barberpole 0.75s linear infinite;
|
|
616
|
+
width: 240px;
|
|
617
|
+
}
|
|
618
|
+
.dataFactory-diagram-pipelineStatus .row .cell {
|
|
619
|
+
width: 10px;
|
|
620
|
+
height: 10px;
|
|
621
|
+
-webkit-transform: skew(-20deg);
|
|
622
|
+
transform: skew(-20deg);
|
|
623
|
+
background-color: #75a03f;
|
|
624
|
+
}
|
|
625
|
+
.dataFactory-diagram-pipelineStatus .row .cell.empty {
|
|
626
|
+
background-color: transparent;
|
|
627
|
+
}
|
|
628
|
+
.dataFactory-diagram-pipelineStatus.paused {
|
|
629
|
+
background-color: #f69123;
|
|
630
|
+
}
|
|
631
|
+
.dataFactory-diagram-pipelineStatus.failed {
|
|
632
|
+
background-color: #d13438;
|
|
633
|
+
}
|
|
634
|
+
.dataFactory-diagram-pipelineStatus.active {
|
|
635
|
+
background-color: #8bc141;
|
|
636
|
+
}
|
|
637
|
+
.dataFactory-diagram-pipelineStatus.idle {
|
|
638
|
+
background-color: #d8dbde;
|
|
639
|
+
}
|
|
640
|
+
.leftSidePanel .adf-highlighted.jstree-wholerow,
|
|
641
|
+
.left-panel .adf-highlighted.jstree-wholerow {
|
|
642
|
+
background: #b9ddd9;
|
|
643
|
+
}
|
|
644
|
+
.leftSidePanel .jstree-default .jstree-wholerow-clicked,
|
|
645
|
+
.left-panel .jstree-default .jstree-wholerow-clicked {
|
|
646
|
+
background: #55606e;
|
|
647
|
+
}
|
|
648
|
+
.leftSidePanel .jstree-default .jstree-anchor,
|
|
649
|
+
.left-panel .jstree-default .jstree-anchor {
|
|
650
|
+
font-size: 0.95em;
|
|
651
|
+
text-overflow: ellipsis;
|
|
652
|
+
white-space: nowrap;
|
|
653
|
+
overflow: hidden;
|
|
654
|
+
width: 90%;
|
|
655
|
+
}
|
|
656
|
+
.leftSidePanel .jstree-clicked,
|
|
657
|
+
.left-panel .jstree-clicked {
|
|
658
|
+
color: white;
|
|
659
|
+
}
|
|
660
|
+
.adf-breadcrumb-base,
|
|
661
|
+
.adf-breadcrumb,
|
|
662
|
+
.adf-breadcrumb .active,
|
|
663
|
+
.adf-breadcrumb a,
|
|
664
|
+
.adf-breadcrumb .seperator {
|
|
665
|
+
font-size: 12pt;
|
|
666
|
+
color: #2c3137 !important;
|
|
667
|
+
font-family: "Segoe UI";
|
|
668
|
+
}
|
|
669
|
+
.adf-breadcrumb .active {
|
|
670
|
+
font-family: "Segoe UI Semibold";
|
|
671
|
+
}
|
|
672
|
+
.adf-breadcrumb a {
|
|
673
|
+
display: -webkit-box;
|
|
674
|
+
display: -ms-flexbox;
|
|
675
|
+
display: flex;
|
|
676
|
+
height: 100%;
|
|
677
|
+
-webkit-box-align: center;
|
|
678
|
+
-ms-flex-align: center;
|
|
679
|
+
align-items: center;
|
|
680
|
+
}
|
|
681
|
+
.adf-breadcrumb a:hover {
|
|
682
|
+
background-color: rgba(0, 0, 0, 0.1) !important;
|
|
683
|
+
}
|
|
684
|
+
.adf-breadcrumb a span {
|
|
685
|
+
display: -webkit-box;
|
|
686
|
+
display: -ms-flexbox;
|
|
687
|
+
display: flex;
|
|
688
|
+
}
|
|
689
|
+
.adf-breadcrumb .seperator {
|
|
690
|
+
margin-left: 10px;
|
|
691
|
+
margin-right: 10px;
|
|
692
|
+
}
|
|
693
|
+
.adf-breadcrumb .back_arrow button {
|
|
694
|
+
height: 48px;
|
|
695
|
+
min-height: 48px;
|
|
696
|
+
max-height: 48px;
|
|
697
|
+
width: 48px;
|
|
698
|
+
min-width: 48px;
|
|
699
|
+
max-width: 48px;
|
|
700
|
+
}
|
|
701
|
+
.adf-breadcrumb .back_arrow svg {
|
|
702
|
+
height: 16px;
|
|
703
|
+
min-height: 16px;
|
|
704
|
+
max-height: 16px;
|
|
705
|
+
width: 16px;
|
|
706
|
+
min-width: 16px;
|
|
707
|
+
max-width: 16px;
|
|
708
|
+
}
|
|
709
|
+
#adf-navToolbar {
|
|
710
|
+
height: 48px;
|
|
711
|
+
min-height: 48px;
|
|
712
|
+
max-height: 48px;
|
|
713
|
+
width: 48px;
|
|
714
|
+
min-width: 48px;
|
|
715
|
+
max-width: 48px;
|
|
716
|
+
background-color: transparent;
|
|
717
|
+
}
|
|
718
|
+
#adf-navToolbar button {
|
|
719
|
+
height: 48px;
|
|
720
|
+
min-height: 48px;
|
|
721
|
+
max-height: 48px;
|
|
722
|
+
width: 48px;
|
|
723
|
+
min-width: 48px;
|
|
724
|
+
max-width: 48px;
|
|
725
|
+
}
|
|
726
|
+
#adf-navToolbar svg {
|
|
727
|
+
height: 16px;
|
|
728
|
+
width: 16px;
|
|
729
|
+
}
|
|
730
|
+
.diagramBreadcrumbs {
|
|
731
|
+
height: 48px;
|
|
732
|
+
min-width: 100px;
|
|
733
|
+
width: 100%;
|
|
734
|
+
background-color: white;
|
|
735
|
+
z-index: 900;
|
|
736
|
+
padding-right: 15px;
|
|
737
|
+
}
|
|
738
|
+
.adf-largeSpinner {
|
|
739
|
+
height: 50px;
|
|
740
|
+
min-height: 50px;
|
|
741
|
+
max-height: 50px;
|
|
742
|
+
width: 50px;
|
|
743
|
+
min-width: 50px;
|
|
744
|
+
max-width: 50px;
|
|
745
|
+
position: absolute;
|
|
746
|
+
left: 50%;
|
|
747
|
+
top: 50%;
|
|
748
|
+
z-index: 4;
|
|
749
|
+
}
|
|
750
|
+
.adf-largeSpinner svg {
|
|
751
|
+
height: 100%;
|
|
752
|
+
width: 100%;
|
|
753
|
+
}
|
|
754
|
+
.adf-panelMessage {
|
|
755
|
+
height: 48px;
|
|
756
|
+
background-color: yellow;
|
|
757
|
+
}
|
|
758
|
+
.collapsed .adf-panelMessage {
|
|
759
|
+
display: none;
|
|
760
|
+
}
|
|
761
|
+
.rightSidePanel .switch.adf-panelMessageSwitch {
|
|
762
|
+
top: calc(48px + 15px);
|
|
763
|
+
}
|
|
764
|
+
.dataFactory-loader-loading,
|
|
765
|
+
.dataFactory-loader-blockingUiLoading,
|
|
766
|
+
.dataFactory-loader-failed {
|
|
767
|
+
position: absolute;
|
|
768
|
+
top: 0px;
|
|
769
|
+
right: 0px;
|
|
770
|
+
bottom: 0px;
|
|
771
|
+
left: 0px;
|
|
772
|
+
background-color: transparent;
|
|
773
|
+
}
|
|
774
|
+
.dataFactory-loader-loading svg,
|
|
775
|
+
.dataFactory-loader-blockingUiLoading svg,
|
|
776
|
+
.dataFactory-loader-failed svg {
|
|
777
|
+
width: 20px;
|
|
778
|
+
height: 20px;
|
|
779
|
+
}
|
|
780
|
+
.dataFactory-loader-blockingUiLoading {
|
|
781
|
+
background-color: #f2f2f2;
|
|
782
|
+
}
|
|
783
|
+
.dataFactory-loader-failed {
|
|
784
|
+
background-color: red;
|
|
785
|
+
}
|
|
786
|
+
button.adf-greenButton {
|
|
787
|
+
font-size: 13px;
|
|
788
|
+
font-family: "Segoe UI";
|
|
789
|
+
padding-left: 16px;
|
|
790
|
+
padding-right: 16px;
|
|
791
|
+
margin-bottom: 10px;
|
|
792
|
+
min-height: 36px;
|
|
793
|
+
min-width: 88px;
|
|
794
|
+
max-width: 200px;
|
|
795
|
+
cursor: pointer;
|
|
796
|
+
color: white;
|
|
797
|
+
background-color: #00b294;
|
|
798
|
+
text-align: center;
|
|
799
|
+
}
|
|
800
|
+
button.adf-greenButton.small {
|
|
801
|
+
min-height: 28px;
|
|
802
|
+
min-width: 64px;
|
|
803
|
+
}
|
|
804
|
+
button.adf-greenButton:disabled {
|
|
805
|
+
background-color: #d2d4d8;
|
|
806
|
+
}
|
|
807
|
+
button.adf-greenButton:hover,
|
|
808
|
+
button.adf-greenButton.adf-hovered {
|
|
809
|
+
color: white !important;
|
|
810
|
+
background-color: #008272 !important;
|
|
811
|
+
}
|
|
812
|
+
#adf-dialog > div.win-contentdialog-backgroundoverlay {
|
|
813
|
+
background-color: #b5b7b9;
|
|
814
|
+
}
|
|
815
|
+
#adf-dialog > div.win-contentdialog-dialog {
|
|
816
|
+
padding: 24px 24px 24px 24px;
|
|
817
|
+
outline-color: transparent;
|
|
818
|
+
position: relative;
|
|
819
|
+
}
|
|
820
|
+
#adf-dialog .win-contentdialog-title {
|
|
821
|
+
font-family: Segoe UI Light;
|
|
822
|
+
font-size: 1.75em;
|
|
823
|
+
line-height: 125%;
|
|
824
|
+
}
|
|
825
|
+
#adf-dialog .adf-dialogContent {
|
|
826
|
+
font-family: Segoe UI;
|
|
827
|
+
font-size: 0.875em;
|
|
828
|
+
line-height: 150%;
|
|
829
|
+
margin-top: 12px;
|
|
830
|
+
word-wrap: break-word;
|
|
831
|
+
}
|
|
832
|
+
#adf-dialog.win-contentdialog .win-contentdialog-commands {
|
|
833
|
+
width: 100%;
|
|
834
|
+
margin-top: 24px;
|
|
835
|
+
margin-right: 0px;
|
|
836
|
+
min-height: 36px;
|
|
837
|
+
max-height: 36px;
|
|
838
|
+
-webkit-box-pack: end;
|
|
839
|
+
-ms-flex-pack: end;
|
|
840
|
+
justify-content: flex-end;
|
|
841
|
+
}
|
|
842
|
+
#adf-dialog button {
|
|
843
|
+
height: 36px;
|
|
844
|
+
min-height: 36px;
|
|
845
|
+
max-height: 36px;
|
|
846
|
+
width: 88px;
|
|
847
|
+
min-width: 88px;
|
|
848
|
+
max-width: 88px;
|
|
849
|
+
font-size: 13px;
|
|
850
|
+
font-family: "Segoe UI";
|
|
851
|
+
padding: 0px;
|
|
852
|
+
margin: 0px;
|
|
853
|
+
cursor: pointer;
|
|
854
|
+
color: white;
|
|
855
|
+
}
|
|
856
|
+
#adf-dialog button:disabled {
|
|
857
|
+
display: none;
|
|
858
|
+
}
|
|
859
|
+
#adf-dialog button.win-contentdialog-primarycommand {
|
|
860
|
+
background-color: #00b294;
|
|
861
|
+
}
|
|
862
|
+
#adf-dialog button.win-contentdialog-primarycommand:hover {
|
|
863
|
+
background-color: #008272;
|
|
864
|
+
}
|
|
865
|
+
#adf-dialog button.win-contentdialog-secondarycommand {
|
|
866
|
+
background-color: #00b294;
|
|
867
|
+
margin-left: 12px;
|
|
868
|
+
}
|
|
869
|
+
#adf-dialog button.win-contentdialog-secondarycommand:hover {
|
|
870
|
+
background-color: #008272;
|
|
871
|
+
}
|
|
872
|
+
.adf-boldFont {
|
|
873
|
+
font-family: "Segoe UI Semibold";
|
|
874
|
+
}
|
|
875
|
+
#adf-spinner svg {
|
|
876
|
+
width: 30px;
|
|
877
|
+
height: 30px;
|
|
878
|
+
}
|
|
879
|
+
.adf-activityRunsToolbar {
|
|
880
|
+
height: 36px;
|
|
881
|
+
background-color: white;
|
|
882
|
+
}
|
|
883
|
+
.adf-activityRunsToolbar.win-toolbar .win-toolbar-actionarea {
|
|
884
|
+
-ms-flex-pack: start;
|
|
885
|
+
-webkit-box-pack: start;
|
|
886
|
+
justify-content: flex-start;
|
|
887
|
+
height: 36px;
|
|
888
|
+
background-color: white;
|
|
889
|
+
}
|
|
890
|
+
.adf-activityRunsToolbar.win-toolbar
|
|
891
|
+
.win-toolbar-actionarea
|
|
892
|
+
.win-toolbar-spacer {
|
|
893
|
+
height: 36px;
|
|
894
|
+
width: 12px;
|
|
895
|
+
}
|
|
896
|
+
.adf-activityRunsToolbar button.win-command {
|
|
897
|
+
height: 36px;
|
|
898
|
+
min-height: 36px;
|
|
899
|
+
max-height: 36px;
|
|
900
|
+
width: 32px;
|
|
901
|
+
min-width: 32px;
|
|
902
|
+
max-width: 32px;
|
|
903
|
+
}
|
|
904
|
+
.adf-activityRunsToolbar button.win-command svg {
|
|
905
|
+
height: 16px;
|
|
906
|
+
width: 32px;
|
|
907
|
+
}
|
|
908
|
+
.adf-activityRunsToolbar hr.win-command {
|
|
909
|
+
height: 48px;
|
|
910
|
+
margin-right: 5px;
|
|
911
|
+
margin-left: 0;
|
|
912
|
+
}
|
|
913
|
+
.centerYWithoutHeight {
|
|
914
|
+
display: -webkit-box;
|
|
915
|
+
display: -ms-flexbox;
|
|
916
|
+
display: flex;
|
|
917
|
+
-webkit-box-align: center;
|
|
918
|
+
-ms-flex-align: center;
|
|
919
|
+
align-items: center;
|
|
920
|
+
-ms-flex-line-pack: center;
|
|
921
|
+
align-content: center;
|
|
922
|
+
}
|
|
923
|
+
@-webkit-keyframes spin {
|
|
924
|
+
0% {
|
|
925
|
+
-webkit-transform: rotate(0deg);
|
|
926
|
+
transform: rotate(0deg);
|
|
927
|
+
}
|
|
928
|
+
100% {
|
|
929
|
+
-webkit-transform: rotate(360deg);
|
|
930
|
+
transform: rotate(360deg);
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
@keyframes spin {
|
|
934
|
+
0% {
|
|
935
|
+
-webkit-transform: rotate(0deg);
|
|
936
|
+
transform: rotate(0deg);
|
|
937
|
+
}
|
|
938
|
+
100% {
|
|
939
|
+
-webkit-transform: rotate(360deg);
|
|
940
|
+
transform: rotate(360deg);
|
|
941
|
+
}
|
|
942
|
+
}
|
|
943
|
+
.datafactory-container .rightSidePanel .panelContent > div {
|
|
944
|
+
width: 100%;
|
|
945
|
+
-ms-flex-item-align: stretch;
|
|
946
|
+
align-self: stretch;
|
|
947
|
+
display: -webkit-box;
|
|
948
|
+
display: -ms-flexbox;
|
|
949
|
+
display: flex;
|
|
950
|
+
height: auto;
|
|
951
|
+
overflow-y: auto;
|
|
952
|
+
}
|
|
953
|
+
.adf-existingDataset-container {
|
|
954
|
+
display: -webkit-box;
|
|
955
|
+
display: -ms-flexbox;
|
|
956
|
+
display: flex;
|
|
957
|
+
-webkit-box-orient: horizontal;
|
|
958
|
+
-webkit-box-direction: normal;
|
|
959
|
+
-ms-flex-direction: row;
|
|
960
|
+
flex-direction: row;
|
|
961
|
+
-webkit-box-flex: 1;
|
|
962
|
+
-ms-flex: 1 1 auto;
|
|
963
|
+
flex: 1 1 auto;
|
|
964
|
+
-ms-flex-wrap: wrap;
|
|
965
|
+
flex-wrap: wrap;
|
|
966
|
+
}
|
|
967
|
+
.adf-existingDataset-container .typeFilter .formFieldInput {
|
|
968
|
+
width: 235px;
|
|
969
|
+
}
|
|
970
|
+
.adf-existingDataset-container .formFieldHeaderContainer {
|
|
971
|
+
display: none;
|
|
972
|
+
}
|
|
973
|
+
.adf-existingDataset-container .nameFilter {
|
|
974
|
+
width: 235px;
|
|
975
|
+
}
|
|
976
|
+
.adf-flexGrid-container {
|
|
977
|
+
display: -webkit-box;
|
|
978
|
+
display: -ms-flexbox;
|
|
979
|
+
display: flex;
|
|
980
|
+
-webkit-box-orient: horizontal;
|
|
981
|
+
-webkit-box-direction: normal;
|
|
982
|
+
-ms-flex-direction: row;
|
|
983
|
+
flex-direction: row;
|
|
984
|
+
-webkit-box-flex: 1;
|
|
985
|
+
-ms-flex: 1 1 auto;
|
|
986
|
+
flex: 1 1 auto;
|
|
987
|
+
-ms-flex-wrap: wrap;
|
|
988
|
+
flex-wrap: wrap;
|
|
989
|
+
margin-left: 5px;
|
|
990
|
+
}
|
|
991
|
+
.adf-flexGrid-item {
|
|
992
|
+
display: -webkit-box;
|
|
993
|
+
display: -ms-flexbox;
|
|
994
|
+
display: flex;
|
|
995
|
+
-webkit-box-flex: 0;
|
|
996
|
+
-ms-flex: 0 1 auto;
|
|
997
|
+
flex: 0 1 auto;
|
|
998
|
+
width: 300px;
|
|
999
|
+
height: 56px;
|
|
1000
|
+
box-shadow: 0px 0px 5px #d2d4d8;
|
|
1001
|
+
margin-right: 8px;
|
|
1002
|
+
margin-bottom: 8px;
|
|
1003
|
+
}
|
|
1004
|
+
.adf-flexGrid-item:hover {
|
|
1005
|
+
background-color: #d2d4d8;
|
|
1006
|
+
cursor: pointer;
|
|
1007
|
+
}
|
|
1008
|
+
.adf-flexGrid-item.selected {
|
|
1009
|
+
background-color: #55606e;
|
|
1010
|
+
color: #ffffff;
|
|
1011
|
+
}
|
|
1012
|
+
.adf-flexGrid-item .iconDiv {
|
|
1013
|
+
display: -webkit-box;
|
|
1014
|
+
display: -ms-flexbox;
|
|
1015
|
+
display: flex;
|
|
1016
|
+
margin: 16px 12px 16px 16px;
|
|
1017
|
+
}
|
|
1018
|
+
.adf-flexGrid-item .iconDiv svg {
|
|
1019
|
+
height: 24px;
|
|
1020
|
+
width: 24px;
|
|
1021
|
+
}
|
|
1022
|
+
.adf-flexGrid-item .itemText {
|
|
1023
|
+
display: -webkit-box;
|
|
1024
|
+
display: -ms-flexbox;
|
|
1025
|
+
display: flex;
|
|
1026
|
+
-webkit-box-flex: 0;
|
|
1027
|
+
-ms-flex: 0 1 auto;
|
|
1028
|
+
flex: 0 1 auto;
|
|
1029
|
+
margin: 18px 5px 18px 0px;
|
|
1030
|
+
color: #2c3137;
|
|
1031
|
+
font-family: "Segoe UI";
|
|
1032
|
+
font-size: 14px;
|
|
1033
|
+
}
|
|
1034
|
+
.adf-flexGrid-item.selected .itemText {
|
|
1035
|
+
color: #ffffff;
|
|
1036
|
+
}
|
|
1037
|
+
.expanded .adf-collapsible-icon svg {
|
|
1038
|
+
stroke: #006f94;
|
|
1039
|
+
}
|
|
1040
|
+
.closed .adf-collapsible-icon svg {
|
|
1041
|
+
stroke: #515151;
|
|
1042
|
+
}
|