@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.

Files changed (111) hide show
  1. package/_generated/ClientResources.js +1549 -0
  2. package/_generated/Framework.js +97 -0
  3. package/_generated/Svg.js +201 -0
  4. package/bootstrapper/BreadcrumbsKnockoutBinding.js +25 -0
  5. package/bootstrapper/CSS/Callout.css +43 -0
  6. package/bootstrapper/CSS/Common.css +22 -0
  7. package/bootstrapper/CSS/FormFields.css +133 -0
  8. package/bootstrapper/CSS/InlineBlock.css +34 -0
  9. package/bootstrapper/CSS/ParameterGroups.css +77 -0
  10. package/bootstrapper/CSS/Pivot.css +25 -0
  11. package/bootstrapper/CSS/Wizard.css +197 -0
  12. package/bootstrapper/CalloutBinding.js +52 -0
  13. package/bootstrapper/CollapsibleKnockoutBinding.js +70 -0
  14. package/bootstrapper/CopyBinding.js +150 -0
  15. package/bootstrapper/FilterFlyoutKnockoutBinding.js +114 -0
  16. package/bootstrapper/FormFields.js +397 -0
  17. package/bootstrapper/InlineBlockBinding.js +69 -0
  18. package/bootstrapper/JQueryUIBindings.js +152 -0
  19. package/bootstrapper/KnockoutBindings.js +635 -0
  20. package/bootstrapper/LoadingBinding.js +54 -0
  21. package/bootstrapper/MonacoEditorKnockoutBinding.js +67 -0
  22. package/bootstrapper/ParameterGroupsBinding.js +289 -0
  23. package/bootstrapper/PivotKnockoutBinding.js +61 -0
  24. package/bootstrapper/StatusCalendarFlyoutKnockoutBinding.js +398 -0
  25. package/bootstrapper/StatusCalendarKnockoutBinding.js +107 -0
  26. package/bootstrapper/TelemetryKnockoutBinding.js +68 -0
  27. package/bootstrapper/WinJSButtonKnockoutBinding.js +72 -0
  28. package/bootstrapper/WinJSKnockoutBindings.js +49 -0
  29. package/bootstrapper/WizardBinding.js +611 -0
  30. package/bootstrapper/startup.js +29 -0
  31. package/libs/VivaGraphControl/Content/CSS/Graph.css +157 -0
  32. package/libs/VivaGraphControl/Content/CSS/LightTheme.css +699 -0
  33. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Base/Base.TriggerableLifetimeManager.js +190 -0
  34. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Base.js +647 -0
  35. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/Image.js +113 -0
  36. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Base/KnockoutExtensions.js +1064 -0
  37. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/DockedBalloon.js +18 -0
  38. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Animation.js +192 -0
  39. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Commands/MoveNodes.js +83 -0
  40. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/Geometry.js +167 -0
  41. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphEntityViewModel.js +260 -0
  42. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphViewModel.js +338 -0
  43. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.Constants.js +178 -0
  44. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/GraphWidget.js +5190 -0
  45. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/MouseCapture.js +148 -0
  46. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Controls/Visualization/Graph/SvgUtils.js +164 -0
  47. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Detection.js +658 -0
  48. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Resize.js +241 -0
  49. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.Private.js +236 -0
  50. package/libs/VivaGraphControl/Content/Scripts/Viva.Controls/Util/Util.js +905 -0
  51. package/libs/WinJS/WinJs.min.js +61909 -0
  52. package/libs/WinJS/ui-light.css +8500 -0
  53. package/package.json +15 -0
  54. package/scripts/AppContext.js +262 -0
  55. package/scripts/ExposureControl.js +11 -0
  56. package/scripts/Framework/Model/ActivityWindowCache.js +390 -0
  57. package/scripts/Framework/Model/ArmDataFactoryCache.js +77 -0
  58. package/scripts/Framework/Model/Contracts/Activity.js +83 -0
  59. package/scripts/Framework/Model/Contracts/ActivityWindow.js +185 -0
  60. package/scripts/Framework/Model/Contracts/BaseEncodable.js +106 -0
  61. package/scripts/Framework/Model/Contracts/Common.js +19 -0
  62. package/scripts/Framework/Model/Contracts/DataArtifact.js +100 -0
  63. package/scripts/Framework/Model/Contracts/Diagram.js +9 -0
  64. package/scripts/Framework/Model/Contracts/Encodable.js +113 -0
  65. package/scripts/Framework/Model/Contracts/Gateway.js +98 -0
  66. package/scripts/Framework/Model/Contracts/LinkedService.js +200 -0
  67. package/scripts/Framework/Model/Contracts/Pipeline.js +197 -0
  68. package/scripts/Framework/Model/DataCache.js +105 -0
  69. package/scripts/Framework/Model/DataFactoryCache.js +24 -0
  70. package/scripts/Framework/Model/Filter.js +186 -0
  71. package/scripts/Framework/Model/Helpers/ActivityWindowHelper.js +185 -0
  72. package/scripts/Framework/Model/MonitoringView.js +40 -0
  73. package/scripts/Framework/Shared/Constants.js +27 -0
  74. package/scripts/Framework/Shared/DataConstants.js +61 -0
  75. package/scripts/Framework/Shared/Disposable.js +53 -0
  76. package/scripts/Framework/Shared/IconResources.js +59 -0
  77. package/scripts/Framework/Shared/Resources/IbizaSvgs.js +241 -0
  78. package/scripts/Framework/Shared/TypeDeclarations.js +4 -0
  79. package/scripts/Framework/Telemetry/Telemetry.js +78 -0
  80. package/scripts/Framework/UI/Breadcrumbs.js +84 -0
  81. package/scripts/Framework/UI/Command.js +231 -0
  82. package/scripts/Framework/UI/ContextMenu.js +80 -0
  83. package/scripts/Framework/UI/Loader.js +11 -0
  84. package/scripts/Framework/UI/Menu.js +65 -0
  85. package/scripts/Framework/UI/PanelMessage.js +25 -0
  86. package/scripts/Framework/UI/Refresh.js +70 -0
  87. package/scripts/Framework/UI/Spinner.js +61 -0
  88. package/scripts/Framework/UI/StatusCalendar.js +1070 -0
  89. package/scripts/Framework/UI/Toolbar.js +84 -0
  90. package/scripts/Framework/Util/Datetime.js +258 -0
  91. package/scripts/Framework/Util/Log.js +10 -0
  92. package/scripts/Framework/Util/ResourceIdUtil.js +56 -0
  93. package/scripts/Framework/Util/Security.js +73 -0
  94. package/scripts/Framework/Util/Util.js +332 -0
  95. package/scripts/Framework/Views/HoverFlyout.js +92 -0
  96. package/scripts/Handlers/ErrorHandler.js +176 -0
  97. package/scripts/Handlers/MessageHandler.js +115 -0
  98. package/scripts/Handlers/MonitoringViewHandler.js +199 -0
  99. package/scripts/Handlers/RoutingHandler.js +364 -0
  100. package/scripts/Handlers/WinJSHandlers.js +265 -0
  101. package/scripts/MonitoringViewContext.js +75 -0
  102. package/scripts/Services/AzureInsightsService.js +162 -0
  103. package/scripts/Services/AzureResourceManagerService.js +869 -0
  104. package/scripts/Services/BaseService.js +232 -0
  105. package/scripts/Services/DataFactoryService.js +204 -0
  106. package/scripts/Services/HDInsightArmService.js +59 -0
  107. package/scripts/ViewContext.js +9 -0
  108. package/stylesheets/main.css +1042 -0
  109. package/views/Edit/DateTimeFilterViewModel.js +211 -0
  110. package/views/Edit/FilterViewModel.js +131 -0
  111. package/views/Shared/ProvisioningState.js +11 -0
@@ -0,0 +1,699 @@
1
+ .azc-light-theme {
2
+ background-color: #ffffff;
3
+ color: #252525;
4
+ }
5
+ .azc-light-theme .azc-control {
6
+ border-color: #bababa;
7
+ }
8
+ .azc-light-theme .azc-control optgroup,
9
+ .azc-light-theme .azc-control option {
10
+ background-color: #ffffff;
11
+ border-color: #bababa;
12
+ color: #252525;
13
+ }
14
+ .azc-light-theme .azc-control ::-webkit-input-placeholder {
15
+ color: #929292;
16
+ }
17
+ .azc-light-theme .azc-control ::-moz-placeholder {
18
+ color: #929292;
19
+ }
20
+ .azc-light-theme .azc-control :-ms-input-placeholder {
21
+ color: #929292;
22
+ }
23
+ .azc-light-theme .azc-control a {
24
+ color: #252525;
25
+ }
26
+ .azc-light-theme .azc-node-fill {
27
+ fill: #d9f6ff;
28
+ }
29
+ .azc-light-theme .azc-node-fill-hovered {
30
+ fill: #8ce5ff;
31
+ }
32
+ .azc-light-theme .azc-node-bg {
33
+ background-color: #d9f6ff;
34
+ }
35
+ .azc-light-theme .azc-node-bg-hovered {
36
+ background-color: #8ce5ff;
37
+ }
38
+ .azc-light-theme .azc-chart {
39
+ fill: #ffffff;
40
+ stroke: #cccccc;
41
+ }
42
+ .azc-light-theme .azc-chart text {
43
+ fill: #929292;
44
+ }
45
+ .azc-light-theme .azc-chart text.azc-chart-axis-slider-text {
46
+ fill: #252525;
47
+ }
48
+ .azc-light-theme .azc-chart .azc-chart-axis-slider-text-rect {
49
+ fill: #ffffff;
50
+ stroke: #ffffff;
51
+ }
52
+ .azc-light-theme .azc-stroke-default {
53
+ stroke: #252525;
54
+ }
55
+ .azc-light-theme
56
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected),
57
+ .azc-light-theme
58
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected),
59
+ .azc-light-theme
60
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected) {
61
+ background-color: #d9f5fd;
62
+ }
63
+ .azc-light-theme .azc-header {
64
+ background-color: #bababa;
65
+ color: #252525;
66
+ }
67
+ .azc-light-theme .azc-input,
68
+ .azc-light-theme .azc-textarea {
69
+ color: #252525;
70
+ border-color: #bababa;
71
+ background-color: #ffffff;
72
+ }
73
+ .azc-light-theme .azc-list-focused {
74
+ background-color: #d9f5fd;
75
+ }
76
+ .azc-light-theme .azc-list-selected {
77
+ background-color: #b3ebfb;
78
+ }
79
+ .azc-light-theme .azc-bg-default {
80
+ background-color: #ffffff;
81
+ }
82
+ .azc-light-theme .azc-bg-light {
83
+ background-color: #e6e6e6;
84
+ }
85
+ .azc-light-theme .azc-bg-muted {
86
+ background-color: #b3b3b3;
87
+ }
88
+ .azc-light-theme .azc-bg-muted-selected {
89
+ background-color: #808080;
90
+ }
91
+ .azc-light-theme .azc-bg-muted-80-10 {
92
+ background-color: #333333;
93
+ }
94
+ .azc-light-theme .azc-bg-console {
95
+ background-color: #191919;
96
+ }
97
+ .azc-light-theme .azc-bg-selected {
98
+ background-color: #00bcf2;
99
+ }
100
+ .azc-light-theme .azc-bg-hover {
101
+ background-color: #99e4fa;
102
+ }
103
+ .azc-light-theme .azc-bg-edited {
104
+ background-color: #9b4f96;
105
+ }
106
+ .azc-light-theme .azc-bg-edited-before::before {
107
+ background-color: #9b4f96;
108
+ }
109
+ .azc-light-theme .azc-bg-success {
110
+ background-color: #bad80a;
111
+ }
112
+ .azc-light-theme .azc-bg-error {
113
+ background-color: #fcd6f1;
114
+ }
115
+ .azc-light-theme .azc-bg-invalid {
116
+ background-color: #ec008c;
117
+ }
118
+ .azc-light-theme .azc-bg-invalid-before::before {
119
+ background-color: #ec008c;
120
+ }
121
+ .azc-light-theme .azc-bg-disabled {
122
+ background-color: #e6e6e6;
123
+ }
124
+ .azc-light-theme .azc-bg-white {
125
+ background-color: #ffffff;
126
+ }
127
+ .azc-light-theme .azc-bg-overlay-dark {
128
+ background: rgba(0, 0, 0, 0.7);
129
+ }
130
+ .azc-light-theme .azc-bg-inverted {
131
+ background-color: #4d4d4d;
132
+ }
133
+ .azc-light-theme .azc-bg-hover-muted:hover {
134
+ background-color: #808080;
135
+ }
136
+ .azc-light-theme .azc-br-default {
137
+ border-color: #bababa;
138
+ }
139
+ .azc-light-theme .azc-br-muted {
140
+ border-color: #cccccc;
141
+ }
142
+ .azc-light-theme .azc-br-muted-80-10 {
143
+ border-color: #333333;
144
+ }
145
+ .azc-light-theme .azc-br-active {
146
+ border-color: #252525;
147
+ }
148
+ .azc-light-theme .azc-br-strong {
149
+ border-color: #808080;
150
+ }
151
+ .azc-light-theme .azc-br-focused {
152
+ border-color: #00bcf2;
153
+ }
154
+ .azc-light-theme .azc-br-edited {
155
+ border-color: #9b4f96;
156
+ }
157
+ .azc-light-theme .azc-br-selected {
158
+ border-color: #00bcf2;
159
+ }
160
+ .azc-light-theme .azc-br-hovered {
161
+ border-color: #00bcf2;
162
+ }
163
+ .azc-light-theme .azc-br-top-hovered {
164
+ border-top-color: #00bcf2;
165
+ }
166
+ .azc-light-theme .azc-br-bottom-hovered {
167
+ border-bottom-color: #00bcf2;
168
+ }
169
+ .azc-light-theme .azc-br-invalid {
170
+ border-color: #ec008c;
171
+ }
172
+ .azc-light-theme .azc-br-inverted {
173
+ border-color: #4d4d4d;
174
+ }
175
+ .azc-light-theme .azc-button {
176
+ background-color: transparent;
177
+ border-color: #252525;
178
+ color: #252525;
179
+ fill: #252525;
180
+ }
181
+ .azc-light-theme .azc-btn-primary {
182
+ background-color: #00bcf2;
183
+ border-color: #00bcf2;
184
+ color: #ffffff;
185
+ fill: #ffffff;
186
+ }
187
+ .azc-light-theme .azc-btn-primary:hover {
188
+ background-color: #00558c;
189
+ border-color: #00558c;
190
+ outline-color: #00558c;
191
+ }
192
+ .azc-light-theme .azc-btn-secondary {
193
+ background-color: #b3b3b3;
194
+ fill: #515151;
195
+ }
196
+ .azc-light-theme .azc-btn-secondary:hover {
197
+ background-color: #999999;
198
+ fill: #666666;
199
+ }
200
+ .azc-light-theme .azc-stroke-muted {
201
+ stroke: #808080;
202
+ }
203
+ .azc-light-theme .azc-stroke-heavy {
204
+ stroke: #666666;
205
+ }
206
+ .azc-light-theme .azc-stroke-default {
207
+ stroke: #ffffff;
208
+ }
209
+ .azc-light-theme .azc-stroke-selected {
210
+ stroke: #00bcf2;
211
+ }
212
+ .azc-light-theme .azc-fill-default {
213
+ fill: #ffffff;
214
+ }
215
+ .azc-light-theme .azc-fill-muted {
216
+ fill: #cccccc;
217
+ }
218
+ .azc-light-theme .azc-fill-heavy {
219
+ fill: #666666;
220
+ }
221
+ .azc-light-theme .azc-fill-muted-30 {
222
+ fill: #b3b3b3;
223
+ }
224
+ .azc-light-theme .azc-fill-hover-muted-30:hover {
225
+ fill: #b3b3b3;
226
+ }
227
+ .azc-light-theme .azc-fill-hovered-heavy:hover {
228
+ fill: #666666;
229
+ }
230
+ .azc-light-theme .azc-fill-text {
231
+ fill: #252525;
232
+ }
233
+ .azc-light-theme .azc-fill-hover {
234
+ fill: #d9f5fd;
235
+ }
236
+ .azc-light-theme .azc-fill-selected {
237
+ fill: #b3ebfb;
238
+ }
239
+ .azc-light-theme .azc-fill-white {
240
+ fill: #ffffff;
241
+ }
242
+ .azc-light-theme .azc-fill-primary {
243
+ fill: #00bcf2;
244
+ }
245
+ .azc-light-theme .azc-fill-primary-tinted-60 {
246
+ fill: #99e4fa;
247
+ }
248
+ .azc-light-theme .azc-outline-primary {
249
+ outline-color: #00bcf2;
250
+ }
251
+ .azc-light-theme a.azc-link-primary {
252
+ color: #00bcf2;
253
+ }
254
+ .azc-light-theme .azc-scrollbar-default,
255
+ .azc-light-theme .azc-scrollbar-default:hover {
256
+ -ms-overflow-style: scrollbar;
257
+ -ms-scrollbar-track-color: #e6e6e6;
258
+ -ms-scrollbar-face-color: #b3b3b3;
259
+ }
260
+ .azc-light-theme .azc-scrollbar-default::-webkit-scrollbar,
261
+ .azc-light-theme .azc-scrollbar-default:hover::-webkit-scrollbar {
262
+ background: transparent;
263
+ }
264
+ .azc-light-theme .azc-scrollbar-default::-webkit-scrollbar-track-piece,
265
+ .azc-light-theme .azc-scrollbar-default:hover::-webkit-scrollbar-track-piece {
266
+ background: transparent;
267
+ }
268
+ .azc-light-theme .azc-scrollbar-default::-webkit-scrollbar-thumb,
269
+ .azc-light-theme .azc-scrollbar-default:hover::-webkit-scrollbar-thumb {
270
+ background: #b3b3b3;
271
+ }
272
+ .azc-light-theme .azc-text-muted {
273
+ color: #757575;
274
+ }
275
+ .azc-light-theme .azc-text-label {
276
+ color: #757575;
277
+ }
278
+ .azc-light-theme .azc-text-console {
279
+ color: #e6e6e6;
280
+ }
281
+ .azc-light-theme a.azc-text-primary,
282
+ .azc-light-theme .azc-text-primary {
283
+ color: #00bcf2;
284
+ }
285
+ .azc-light-theme .azc-text-success {
286
+ color: #bad80a;
287
+ }
288
+ .azc-light-theme .azc-text-warning {
289
+ color: #ffb900;
290
+ }
291
+ .azc-light-theme a.azc-text-white,
292
+ .azc-light-theme .azc-text-white {
293
+ color: #ffffff;
294
+ }
295
+ .azc-light-theme a.azc-text-disabled,
296
+ .azc-light-theme .azc-text-disabled {
297
+ color: #929292;
298
+ }
299
+ .azc-light-theme .azc-text-inverted {
300
+ color: #ffffff;
301
+ }
302
+ .azc-light-theme input.azc-disabled,
303
+ .azc-light-theme .azc-disabled,
304
+ .azc-light-theme .azc-disabled:hover,
305
+ .azc-light-theme .azc-disabled:focus {
306
+ color: #929292;
307
+ background-color: #e6e6e6;
308
+ border-color: #959595;
309
+ fill: #929292;
310
+ cursor: default;
311
+ outline: none;
312
+ }
313
+ .azc-light-theme .azc-fill-disabled {
314
+ fill: #929292;
315
+ cursor: default;
316
+ }
317
+ .azc-light-theme .azc-gradient-default {
318
+ background: linear-gradient(
319
+ to bottom,
320
+ rgba(255, 255, 255, 0.01) 0%,
321
+ #ffffff 50%,
322
+ rgba(255, 255, 255, 0.01) 100%
323
+ );
324
+ }
325
+ .azc-light-theme .azc-highlight {
326
+ color: #000000;
327
+ background-color: #fff100;
328
+ }
329
+ .azc-light-theme
330
+ .azc-grid-selectableRow
331
+ .azc-grid-selectableRow-selectionCell-checkMark {
332
+ fill: #ffffff;
333
+ }
334
+ .azc-light-theme
335
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
336
+ .azc-grid-selectable
337
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected),
338
+ .azc-light-theme
339
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
340
+ .azc-grid-selectable
341
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected) {
342
+ background-color: #ffffff;
343
+ }
344
+ .azc-light-theme
345
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
346
+ .azc-grid-selectable
347
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected)
348
+ .azc-grid-selectableRow-selectionCell-checkMark,
349
+ .azc-light-theme
350
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
351
+ .azc-grid-selectable
352
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not(.azc-list-selected)
353
+ .azc-grid-selectableRow-selectionCell-checkMark {
354
+ fill: #ffffff;
355
+ }
356
+ .azc-light-theme
357
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
358
+ .azc-grid-selectable
359
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
360
+ td.azc-br-muted,
361
+ .azc-light-theme
362
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
363
+ .azc-grid-selectable
364
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
365
+ td.azc-br-muted {
366
+ border-color: #00bcf2;
367
+ }
368
+ .azc-light-theme
369
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
370
+ .azc-grid-selectable
371
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
372
+ td:not(.azc-grid-selectableRow-selectionCell):first-of-type,
373
+ .azc-light-theme
374
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
375
+ .azc-grid-selectable
376
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
377
+ td:not(.azc-grid-selectableRow-selectionCell):first-of-type {
378
+ border-left-color: #00bcf2;
379
+ }
380
+ .azc-light-theme
381
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
382
+ .azc-grid-selectable
383
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
384
+ td:last-of-type,
385
+ .azc-light-theme
386
+ .azc-grid-selectableRow:not(.azc-grid-activateableRow)
387
+ .azc-grid-selectable
388
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected)
389
+ td:last-of-type {
390
+ border-right-color: #00bcf2;
391
+ }
392
+ .azc-light-theme
393
+ .azc-grid-selectableRow.azc-grid-activateableRow
394
+ .azc-grid-selectable
395
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
396
+ td.azc-grid-selectableRow-selectionCell,
397
+ .azc-light-theme
398
+ .azc-grid-selectableRow.azc-grid-activateableRow
399
+ .azc-grid-selectable
400
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
401
+ td.azc-grid-selectableRow-selectionCell,
402
+ .azc-light-theme
403
+ .azc-grid-selectableRow.azc-grid-activateableRow
404
+ .azc-grid-selectable
405
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
406
+ td.azc-grid-selectableRow-selectionCell,
407
+ .azc-light-theme
408
+ .azc-grid-selectableRow.azc-grid-activateableRow
409
+ .azc-grid-selectable
410
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
411
+ td.azc-grid-selectableRow-selectionCell,
412
+ .azc-light-theme
413
+ .azc-grid-selectableRow.azc-grid-activateableRow
414
+ .azc-grid-selectable
415
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
416
+ td.azc-grid-selectableRow-selectionCell,
417
+ .azc-light-theme
418
+ .azc-grid-selectableRow.azc-grid-activateableRow
419
+ .azc-grid-selectable
420
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
421
+ td.azc-grid-selectableRow-selectionCell,
422
+ .azc-light-theme
423
+ .azc-grid-selectableRow.azc-grid-activateableRow
424
+ .azc-grid-selectable
425
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
426
+ td.azc-grid-selectableRow-selectionCell,
427
+ .azc-light-theme
428
+ .azc-grid-selectableRow.azc-grid-activateableRow
429
+ .azc-grid-selectable
430
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
431
+ td.azc-grid-selectableRow-selectionCell,
432
+ .azc-light-theme
433
+ .azc-grid-selectableRow.azc-grid-activateableRow
434
+ .azc-grid-selectable
435
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
436
+ td.azc-grid-selectableRow-selectionCell {
437
+ border-color: #00bcf2;
438
+ }
439
+ .azc-light-theme
440
+ .azc-grid-selectableRow.azc-grid-activateableRow
441
+ .azc-grid-selectable
442
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
443
+ td.azc-grid-selectableRow-selectionCell
444
+ > .azc-bg-selected,
445
+ .azc-light-theme
446
+ .azc-grid-selectableRow.azc-grid-activateableRow
447
+ .azc-grid-selectable
448
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
449
+ td.azc-grid-selectableRow-selectionCell
450
+ > .azc-bg-selected,
451
+ .azc-light-theme
452
+ .azc-grid-selectableRow.azc-grid-activateableRow
453
+ .azc-grid-selectable
454
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
455
+ td.azc-grid-selectableRow-selectionCell
456
+ > .azc-bg-selected,
457
+ .azc-light-theme
458
+ .azc-grid-selectableRow.azc-grid-activateableRow
459
+ .azc-grid-selectable
460
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
461
+ td.azc-grid-selectableRow-selectionCell
462
+ > .azc-bg-selected,
463
+ .azc-light-theme
464
+ .azc-grid-selectableRow.azc-grid-activateableRow
465
+ .azc-grid-selectable
466
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
467
+ td.azc-grid-selectableRow-selectionCell
468
+ > .azc-bg-selected,
469
+ .azc-light-theme
470
+ .azc-grid-selectableRow.azc-grid-activateableRow
471
+ .azc-grid-selectable
472
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
473
+ td.azc-grid-selectableRow-selectionCell
474
+ > .azc-bg-selected,
475
+ .azc-light-theme
476
+ .azc-grid-selectableRow.azc-grid-activateableRow
477
+ .azc-grid-selectable
478
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
479
+ td.azc-grid-selectableRow-selectionCell
480
+ > .azc-bg-selected,
481
+ .azc-light-theme
482
+ .azc-grid-selectableRow.azc-grid-activateableRow
483
+ .azc-grid-selectable
484
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
485
+ td.azc-grid-selectableRow-selectionCell
486
+ > .azc-bg-selected,
487
+ .azc-light-theme
488
+ .azc-grid-selectableRow.azc-grid-activateableRow
489
+ .azc-grid-selectable
490
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
491
+ td.azc-grid-selectableRow-selectionCell
492
+ > .azc-bg-selected {
493
+ background-color: #ffffff;
494
+ }
495
+ .azc-light-theme
496
+ .azc-grid-selectableRow.azc-grid-activateableRow
497
+ .azc-grid-selectable
498
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
499
+ td.azc-grid-selectableRow-selectionCell
500
+ .azc-grid-selectableRow-selectionCell-checkMark,
501
+ .azc-light-theme
502
+ .azc-grid-selectableRow.azc-grid-activateableRow
503
+ .azc-grid-selectable
504
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
505
+ td.azc-grid-selectableRow-selectionCell
506
+ .azc-grid-selectableRow-selectionCell-checkMark,
507
+ .azc-light-theme
508
+ .azc-grid-selectableRow.azc-grid-activateableRow
509
+ .azc-grid-selectable
510
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
511
+ td.azc-grid-selectableRow-selectionCell
512
+ .azc-grid-selectableRow-selectionCell-checkMark,
513
+ .azc-light-theme
514
+ .azc-grid-selectableRow.azc-grid-activateableRow
515
+ .azc-grid-selectable
516
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
517
+ td.azc-grid-selectableRow-selectionCell
518
+ .azc-grid-selectableRow-selectionCell-checkMark,
519
+ .azc-light-theme
520
+ .azc-grid-selectableRow.azc-grid-activateableRow
521
+ .azc-grid-selectable
522
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
523
+ td.azc-grid-selectableRow-selectionCell
524
+ .azc-grid-selectableRow-selectionCell-checkMark,
525
+ .azc-light-theme
526
+ .azc-grid-selectableRow.azc-grid-activateableRow
527
+ .azc-grid-selectable
528
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
529
+ td.azc-grid-selectableRow-selectionCell
530
+ .azc-grid-selectableRow-selectionCell-checkMark,
531
+ .azc-light-theme
532
+ .azc-grid-selectableRow.azc-grid-activateableRow
533
+ .azc-grid-selectable
534
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
535
+ td.azc-grid-selectableRow-selectionCell
536
+ .azc-grid-selectableRow-selectionCell-checkMark,
537
+ .azc-light-theme
538
+ .azc-grid-selectableRow.azc-grid-activateableRow
539
+ .azc-grid-selectable
540
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
541
+ td.azc-grid-selectableRow-selectionCell
542
+ .azc-grid-selectableRow-selectionCell-checkMark,
543
+ .azc-light-theme
544
+ .azc-grid-selectableRow.azc-grid-activateableRow
545
+ .azc-grid-selectable
546
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
547
+ td.azc-grid-selectableRow-selectionCell
548
+ .azc-grid-selectableRow-selectionCell-checkMark {
549
+ fill: #00bcf2;
550
+ }
551
+ .azc-light-theme
552
+ .azc-grid-selectableRow.azc-grid-activateableRow
553
+ .azc-grid-selectable
554
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
555
+ td.azc-grid-selectableRow-selectionCell:hover
556
+ > .azc-bg-selected,
557
+ .azc-light-theme
558
+ .azc-grid-selectableRow.azc-grid-activateableRow
559
+ .azc-grid-selectable
560
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
561
+ td.azc-grid-selectableRow-selectionCell:hover
562
+ > .azc-bg-selected,
563
+ .azc-light-theme
564
+ .azc-grid-selectableRow.azc-grid-activateableRow
565
+ .azc-grid-selectable
566
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
567
+ td.azc-grid-selectableRow-selectionCell:hover
568
+ > .azc-bg-selected,
569
+ .azc-light-theme
570
+ .azc-grid-selectableRow.azc-grid-activateableRow
571
+ .azc-grid-selectable
572
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
573
+ td.azc-grid-selectableRow-selectionCell:hover
574
+ > .azc-bg-selected,
575
+ .azc-light-theme
576
+ .azc-grid-selectableRow.azc-grid-activateableRow
577
+ .azc-grid-selectable
578
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
579
+ td.azc-grid-selectableRow-selectionCell:hover
580
+ > .azc-bg-selected,
581
+ .azc-light-theme
582
+ .azc-grid-selectableRow.azc-grid-activateableRow
583
+ .azc-grid-selectable
584
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
585
+ td.azc-grid-selectableRow-selectionCell:hover
586
+ > .azc-bg-selected,
587
+ .azc-light-theme
588
+ .azc-grid-selectableRow.azc-grid-activateableRow
589
+ .azc-grid-selectable
590
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
591
+ td.azc-grid-selectableRow-selectionCell:hover
592
+ > .azc-bg-selected,
593
+ .azc-light-theme
594
+ .azc-grid-selectableRow.azc-grid-activateableRow
595
+ .azc-grid-selectable
596
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
597
+ td.azc-grid-selectableRow-selectionCell:hover
598
+ > .azc-bg-selected,
599
+ .azc-light-theme
600
+ .azc-grid-selectableRow.azc-grid-activateableRow
601
+ .azc-grid-selectable
602
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
603
+ td.azc-grid-selectableRow-selectionCell:hover
604
+ > .azc-bg-selected {
605
+ background-color: #00bcf2;
606
+ }
607
+ .azc-light-theme
608
+ .azc-grid-selectableRow.azc-grid-activateableRow
609
+ .azc-grid-selectable
610
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
611
+ td.azc-grid-selectableRow-selectionCell:hover
612
+ .azc-grid-selectableRow-selectionCell-checkMark,
613
+ .azc-light-theme
614
+ .azc-grid-selectableRow.azc-grid-activateableRow
615
+ .azc-grid-selectable
616
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
617
+ td.azc-grid-selectableRow-selectionCell:hover
618
+ .azc-grid-selectableRow-selectionCell-checkMark,
619
+ .azc-light-theme
620
+ .azc-grid-selectableRow.azc-grid-activateableRow
621
+ .azc-grid-selectable
622
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):hover
623
+ td.azc-grid-selectableRow-selectionCell:hover
624
+ .azc-grid-selectableRow-selectionCell-checkMark,
625
+ .azc-light-theme
626
+ .azc-grid-selectableRow.azc-grid-activateableRow
627
+ .azc-grid-selectable
628
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
629
+ td.azc-grid-selectableRow-selectionCell:hover
630
+ .azc-grid-selectableRow-selectionCell-checkMark,
631
+ .azc-light-theme
632
+ .azc-grid-selectableRow.azc-grid-activateableRow
633
+ .azc-grid-selectable
634
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
635
+ td.azc-grid-selectableRow-selectionCell:hover
636
+ .azc-grid-selectableRow-selectionCell-checkMark,
637
+ .azc-light-theme
638
+ .azc-grid-selectableRow.azc-grid-activateableRow
639
+ .azc-grid-selectable
640
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected):not([aria-disabled="true"]):not(.azc-list-selected):focus
641
+ td.azc-grid-selectableRow-selectionCell:hover
642
+ .azc-grid-selectableRow-selectionCell-checkMark,
643
+ .azc-light-theme
644
+ .azc-grid-selectableRow.azc-grid-activateableRow
645
+ .azc-grid-selectable
646
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
647
+ td.azc-grid-selectableRow-selectionCell:hover
648
+ .azc-grid-selectableRow-selectionCell-checkMark,
649
+ .azc-light-theme
650
+ .azc-grid-selectableRow.azc-grid-activateableRow
651
+ .azc-grid-selectable
652
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
653
+ td.azc-grid-selectableRow-selectionCell:hover
654
+ .azc-grid-selectableRow-selectionCell-checkMark,
655
+ .azc-light-theme
656
+ .azc-grid-selectableRow.azc-grid-activateableRow
657
+ .azc-grid-selectable
658
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-external-hovered:not(.azc-list-selected)
659
+ td.azc-grid-selectableRow-selectionCell:hover
660
+ .azc-grid-selectableRow-selectionCell-checkMark {
661
+ fill: #ffffff;
662
+ }
663
+ .azc-light-theme
664
+ .azc-grid-selectableRow.azc-grid-activateableRow
665
+ .azc-grid-selectable
666
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
667
+ td.azc-grid-selectableRow-selectionCell,
668
+ .azc-light-theme
669
+ .azc-grid-selectableRow.azc-grid-activateableRow
670
+ .azc-grid-selectable
671
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
672
+ td.azc-grid-selectableRow-selectionCell,
673
+ .azc-light-theme
674
+ .azc-grid-selectableRow.azc-grid-activateableRow
675
+ .azc-grid-selectable
676
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
677
+ td.azc-grid-selectableRow-selectionCell {
678
+ border-color: #00bcf2;
679
+ }
680
+ .azc-light-theme
681
+ .azc-grid-selectableRow.azc-grid-activateableRow
682
+ .azc-grid-selectable
683
+ .azc-has-hover:hover:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
684
+ td.azc-grid-selectableRow-selectionCell
685
+ div.azc-grid-selectableRow-selectionCell-wrapper,
686
+ .azc-light-theme
687
+ .azc-grid-selectableRow.azc-grid-activateableRow
688
+ .azc-grid-selectable
689
+ .azc-has-hover:focus:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
690
+ td.azc-grid-selectableRow-selectionCell
691
+ div.azc-grid-selectableRow-selectionCell-wrapper,
692
+ .azc-light-theme
693
+ .azc-grid-selectableRow.azc-grid-activateableRow
694
+ .azc-grid-selectable
695
+ .azc-external-hovered:not(.azc-bg-invalid):not(.azc-bg-edited):not(.azc-disabled):not(.azc-row-disabled):not(.azc-bg-selected).azc-list-selected
696
+ td.azc-grid-selectableRow-selectionCell
697
+ div.azc-grid-selectableRow-selectionCell-wrapper {
698
+ background-color: #00bcf2;
699
+ }