iguazio.dashboard-controls 0.38.10-patch2 → 0.38.10-patch3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/i18n/en/common.json +1 -1
- package/dist/i18n/en/functions.json +1 -1
- package/dist/js/iguazio.dashboard-controls.js +2757 -2757
- package/dist/less/iguazio.dashboard-controls.less +884 -880
- package/package.json +1 -1
- package/src/i18n/en/common.json +1 -1
- package/src/i18n/en/functions.json +1 -1
- package/src/igz_controls/less/table.less +4 -0
- package/src/nuclio/common/screens/create-function/function-from-template/function-from-template.tpl.html +1 -1
- package/src/nuclio/functions/version/version-configuration/tabs/version-configuration-labels/version-configuration-labels.tpl.html +1 -1
|
@@ -3003,6 +3003,10 @@ html input[disabled], html textarea[disabled] {
|
|
|
3003
3003
|
&.centered {
|
|
3004
3004
|
justify-content: center;
|
|
3005
3005
|
}
|
|
3006
|
+
|
|
3007
|
+
&.overflow-visible {
|
|
3008
|
+
overflow: visible;
|
|
3009
|
+
}
|
|
3006
3010
|
}
|
|
3007
3011
|
|
|
3008
3012
|
//
|
|
@@ -5522,23 +5526,6 @@ yx-axis
|
|
|
5522
5526
|
}
|
|
5523
5527
|
}
|
|
5524
5528
|
}
|
|
5525
|
-
.action-checkbox-all {
|
|
5526
|
-
.action-checkbox-all-color-set();
|
|
5527
|
-
|
|
5528
|
-
text-align: center;
|
|
5529
|
-
|
|
5530
|
-
.check-item {
|
|
5531
|
-
cursor: pointer;
|
|
5532
|
-
color: @check-item-color;
|
|
5533
|
-
font-size: 16px;
|
|
5534
|
-
line-height: 1;
|
|
5535
|
-
vertical-align: middle;
|
|
5536
|
-
|
|
5537
|
-
&.igz-icon-checkbox-checked {
|
|
5538
|
-
color: @check-item-icon-checkbox-checked-color;
|
|
5539
|
-
}
|
|
5540
|
-
}
|
|
5541
|
-
}
|
|
5542
5529
|
.igz-action-menu {
|
|
5543
5530
|
.action-menu-color-set();
|
|
5544
5531
|
.action-icon-color-set();
|
|
@@ -5697,6 +5684,23 @@ yx-axis
|
|
|
5697
5684
|
}
|
|
5698
5685
|
}
|
|
5699
5686
|
|
|
5687
|
+
.action-checkbox-all {
|
|
5688
|
+
.action-checkbox-all-color-set();
|
|
5689
|
+
|
|
5690
|
+
text-align: center;
|
|
5691
|
+
|
|
5692
|
+
.check-item {
|
|
5693
|
+
cursor: pointer;
|
|
5694
|
+
color: @check-item-color;
|
|
5695
|
+
font-size: 16px;
|
|
5696
|
+
line-height: 1;
|
|
5697
|
+
vertical-align: middle;
|
|
5698
|
+
|
|
5699
|
+
&.igz-icon-checkbox-checked {
|
|
5700
|
+
color: @check-item-icon-checkbox-checked-color;
|
|
5701
|
+
}
|
|
5702
|
+
}
|
|
5703
|
+
}
|
|
5700
5704
|
.igz-action-panel {
|
|
5701
5705
|
.action-panel-color-set();
|
|
5702
5706
|
.action-icon-color-set();
|
|
@@ -6872,6 +6876,45 @@ yx-axis
|
|
|
6872
6876
|
}
|
|
6873
6877
|
}
|
|
6874
6878
|
|
|
6879
|
+
.igz-navigation-tabs {
|
|
6880
|
+
.navigation-tabs-color-set();
|
|
6881
|
+
|
|
6882
|
+
background-color: @navigation-tabs-bg-color;
|
|
6883
|
+
height: 56px;
|
|
6884
|
+
padding-top: 7px;
|
|
6885
|
+
|
|
6886
|
+
.navigation-tab {
|
|
6887
|
+
float: left;
|
|
6888
|
+
height: 32px;
|
|
6889
|
+
padding: 15px 24px 0;
|
|
6890
|
+
font-family: @font-family-sans-serif;
|
|
6891
|
+
color: @navigation-tab-color;
|
|
6892
|
+
font-size: 14px;
|
|
6893
|
+
text-align: center;
|
|
6894
|
+
cursor: pointer;
|
|
6895
|
+
border-bottom: @navigation-tab-border-bottom;
|
|
6896
|
+
box-sizing: content-box;
|
|
6897
|
+
|
|
6898
|
+
&.active, &.active:hover {
|
|
6899
|
+
background-color: @navigation-tab-active-hover-bg-color;
|
|
6900
|
+
color: @navigation-tab-active-hover-color;
|
|
6901
|
+
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
6902
|
+
}
|
|
6903
|
+
|
|
6904
|
+
&:hover {
|
|
6905
|
+
background-color: @navigation-tab-hover-bg-color;
|
|
6906
|
+
}
|
|
6907
|
+
|
|
6908
|
+
&.active {
|
|
6909
|
+
background-color: @navigation-tab-active-bg-color;
|
|
6910
|
+
}
|
|
6911
|
+
|
|
6912
|
+
@media screen and (max-width: 940px) {
|
|
6913
|
+
padding: 15px 12px 0;
|
|
6914
|
+
}
|
|
6915
|
+
}
|
|
6916
|
+
}
|
|
6917
|
+
|
|
6875
6918
|
.igz-number-input {
|
|
6876
6919
|
.number-input-color-set();
|
|
6877
6920
|
|
|
@@ -7025,45 +7068,6 @@ yx-axis
|
|
|
7025
7068
|
}
|
|
7026
7069
|
}
|
|
7027
7070
|
|
|
7028
|
-
.igz-navigation-tabs {
|
|
7029
|
-
.navigation-tabs-color-set();
|
|
7030
|
-
|
|
7031
|
-
background-color: @navigation-tabs-bg-color;
|
|
7032
|
-
height: 56px;
|
|
7033
|
-
padding-top: 7px;
|
|
7034
|
-
|
|
7035
|
-
.navigation-tab {
|
|
7036
|
-
float: left;
|
|
7037
|
-
height: 32px;
|
|
7038
|
-
padding: 15px 24px 0;
|
|
7039
|
-
font-family: @font-family-sans-serif;
|
|
7040
|
-
color: @navigation-tab-color;
|
|
7041
|
-
font-size: 14px;
|
|
7042
|
-
text-align: center;
|
|
7043
|
-
cursor: pointer;
|
|
7044
|
-
border-bottom: @navigation-tab-border-bottom;
|
|
7045
|
-
box-sizing: content-box;
|
|
7046
|
-
|
|
7047
|
-
&.active, &.active:hover {
|
|
7048
|
-
background-color: @navigation-tab-active-hover-bg-color;
|
|
7049
|
-
color: @navigation-tab-active-hover-color;
|
|
7050
|
-
border-bottom: @navigation-tab-active-hover-border-bottom;
|
|
7051
|
-
}
|
|
7052
|
-
|
|
7053
|
-
&:hover {
|
|
7054
|
-
background-color: @navigation-tab-hover-bg-color;
|
|
7055
|
-
}
|
|
7056
|
-
|
|
7057
|
-
&.active {
|
|
7058
|
-
background-color: @navigation-tab-active-bg-color;
|
|
7059
|
-
}
|
|
7060
|
-
|
|
7061
|
-
@media screen and (max-width: 940px) {
|
|
7062
|
-
padding: 15px 12px 0;
|
|
7063
|
-
}
|
|
7064
|
-
}
|
|
7065
|
-
}
|
|
7066
|
-
|
|
7067
7071
|
.igz-pagination {
|
|
7068
7072
|
.pagination-color-set();
|
|
7069
7073
|
|
|
@@ -8963,6 +8967,21 @@ body {
|
|
|
8963
8967
|
}
|
|
8964
8968
|
}
|
|
8965
8969
|
|
|
8970
|
+
.override-function-dialog {
|
|
8971
|
+
.sub-title {
|
|
8972
|
+
font-size: 16px;
|
|
8973
|
+
color: @silver-chalice-two;
|
|
8974
|
+
}
|
|
8975
|
+
|
|
8976
|
+
.buttons {
|
|
8977
|
+
display: flex;
|
|
8978
|
+
|
|
8979
|
+
.function-redirect-button {
|
|
8980
|
+
margin-right: auto;
|
|
8981
|
+
}
|
|
8982
|
+
}
|
|
8983
|
+
}
|
|
8984
|
+
|
|
8966
8985
|
.ncl-edit-version {
|
|
8967
8986
|
background: #f2f2f6;
|
|
8968
8987
|
position: relative;
|
|
@@ -9221,19 +9240,76 @@ body {
|
|
|
9221
9240
|
}
|
|
9222
9241
|
}
|
|
9223
9242
|
|
|
9224
|
-
|
|
9225
|
-
|
|
9226
|
-
|
|
9227
|
-
color: @silver-chalice-two;
|
|
9228
|
-
}
|
|
9243
|
+
// Style rules for actions bar
|
|
9244
|
+
.border-top > .igz-info-page-actions-bar {
|
|
9245
|
+
.info-page-actions-bar-color-set();
|
|
9229
9246
|
|
|
9230
|
-
|
|
9231
|
-
|
|
9247
|
+
border-top: @info-page-actions-bar-border-top;
|
|
9248
|
+
}
|
|
9232
9249
|
|
|
9233
|
-
|
|
9234
|
-
|
|
9250
|
+
.igz-info-page-actions-bar {
|
|
9251
|
+
.info-page-actions-bar-color-set();
|
|
9252
|
+
|
|
9253
|
+
background-color: @info-page-actions-bar-bg-color;
|
|
9254
|
+
position: absolute;
|
|
9255
|
+
top: 0;
|
|
9256
|
+
right: 0;
|
|
9257
|
+
left: 0;
|
|
9258
|
+
height: 56px;
|
|
9259
|
+
padding: 8px 20px 8px 16px;
|
|
9260
|
+
border-bottom: @info-page-actions-bar-border-bottom;
|
|
9261
|
+
transition: @igz-basic-transition;
|
|
9262
|
+
|
|
9263
|
+
&.upper-pane-opened {
|
|
9264
|
+
top: 150px;
|
|
9265
|
+
}
|
|
9266
|
+
|
|
9267
|
+
&.filters-opened {
|
|
9268
|
+
right: 376px;
|
|
9269
|
+
padding-right: 8px;
|
|
9270
|
+
}
|
|
9271
|
+
|
|
9272
|
+
&.info-pane-opened {
|
|
9273
|
+
right: 379px;
|
|
9274
|
+
padding-right: 8px;
|
|
9275
|
+
}
|
|
9276
|
+
|
|
9277
|
+
.actions-bar-left {
|
|
9278
|
+
float: left;
|
|
9279
|
+
height: 100%;
|
|
9280
|
+
}
|
|
9281
|
+
|
|
9282
|
+
.actions-bar-right {
|
|
9283
|
+
float: right;
|
|
9284
|
+
height: 100%;
|
|
9285
|
+
text-align: right;
|
|
9286
|
+
}
|
|
9287
|
+
|
|
9288
|
+
&:before, &:after {
|
|
9289
|
+
content: " ";
|
|
9290
|
+
display: table;
|
|
9291
|
+
}
|
|
9292
|
+
&:after {
|
|
9293
|
+
clear: both;
|
|
9294
|
+
}
|
|
9295
|
+
|
|
9296
|
+
.actions-panes-block {
|
|
9297
|
+
padding-left: 16px;
|
|
9298
|
+
border-left: @actions-panes-block-border-left;
|
|
9299
|
+
}
|
|
9300
|
+
|
|
9301
|
+
.actions-content-block {
|
|
9302
|
+
margin: 0 8px 0 32px;
|
|
9303
|
+
}
|
|
9304
|
+
|
|
9305
|
+
.actions-buttons-block {
|
|
9306
|
+
margin-left: 16px;
|
|
9307
|
+
margin-top: 1px;
|
|
9308
|
+
|
|
9309
|
+
[class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
|
|
9310
|
+
margin-left: 8px;
|
|
9311
|
+
}
|
|
9235
9312
|
}
|
|
9236
|
-
}
|
|
9237
9313
|
}
|
|
9238
9314
|
|
|
9239
9315
|
.igz-info-page-content-wrapper {
|
|
@@ -9358,112 +9434,40 @@ igz-info-page-content {
|
|
|
9358
9434
|
}
|
|
9359
9435
|
|
|
9360
9436
|
|
|
9361
|
-
|
|
9362
|
-
.
|
|
9363
|
-
.info-page-actions-bar-color-set();
|
|
9364
|
-
|
|
9365
|
-
border-top: @info-page-actions-bar-border-top;
|
|
9366
|
-
}
|
|
9367
|
-
|
|
9368
|
-
.igz-info-page-actions-bar {
|
|
9369
|
-
.info-page-actions-bar-color-set();
|
|
9437
|
+
.info-page-filters-bookmark {
|
|
9438
|
+
.info-page-filters-color-set();
|
|
9370
9439
|
|
|
9371
|
-
background-color: @
|
|
9372
|
-
|
|
9373
|
-
top:
|
|
9440
|
+
background-color: @filters-bookmark-bg-color;
|
|
9441
|
+
border-bottom-right-radius: 4px;
|
|
9442
|
+
border-top-right-radius: 4px;
|
|
9443
|
+
box-shadow: @filters-bookmark-box-shadow;
|
|
9444
|
+
color: @filters-bookmark-color;
|
|
9445
|
+
cursor: pointer;
|
|
9446
|
+
font-size: 10px;
|
|
9447
|
+
height: 22px;
|
|
9374
9448
|
right: 0;
|
|
9375
|
-
|
|
9376
|
-
|
|
9377
|
-
|
|
9378
|
-
|
|
9449
|
+
line-height: 22px;
|
|
9450
|
+
position: absolute;
|
|
9451
|
+
text-align: center;
|
|
9452
|
+
top: 22px;
|
|
9379
9453
|
transition: @igz-basic-transition;
|
|
9454
|
+
width: 18px;
|
|
9455
|
+
z-index: 998;
|
|
9380
9456
|
|
|
9381
|
-
|
|
9382
|
-
|
|
9457
|
+
&:before {
|
|
9458
|
+
right: 3px;
|
|
9459
|
+
position: absolute;
|
|
9460
|
+
top: 6px;
|
|
9383
9461
|
}
|
|
9384
9462
|
|
|
9385
|
-
|
|
9386
|
-
|
|
9387
|
-
|
|
9388
|
-
|
|
9389
|
-
|
|
9390
|
-
|
|
9391
|
-
|
|
9392
|
-
|
|
9393
|
-
}
|
|
9394
|
-
|
|
9395
|
-
.actions-bar-left {
|
|
9396
|
-
float: left;
|
|
9397
|
-
height: 100%;
|
|
9398
|
-
}
|
|
9399
|
-
|
|
9400
|
-
.actions-bar-right {
|
|
9401
|
-
float: right;
|
|
9402
|
-
height: 100%;
|
|
9403
|
-
text-align: right;
|
|
9404
|
-
}
|
|
9405
|
-
|
|
9406
|
-
&:before, &:after {
|
|
9407
|
-
content: " ";
|
|
9408
|
-
display: table;
|
|
9409
|
-
}
|
|
9410
|
-
&:after {
|
|
9411
|
-
clear: both;
|
|
9412
|
-
}
|
|
9413
|
-
|
|
9414
|
-
.actions-panes-block {
|
|
9415
|
-
padding-left: 16px;
|
|
9416
|
-
border-left: @actions-panes-block-border-left;
|
|
9417
|
-
}
|
|
9418
|
-
|
|
9419
|
-
.actions-content-block {
|
|
9420
|
-
margin: 0 8px 0 32px;
|
|
9421
|
-
}
|
|
9422
|
-
|
|
9423
|
-
.actions-buttons-block {
|
|
9424
|
-
margin-left: 16px;
|
|
9425
|
-
margin-top: 1px;
|
|
9426
|
-
|
|
9427
|
-
[class^="igz-button"]:not(:first-child), [class*="igz-button"]:not(:first-child) {
|
|
9428
|
-
margin-left: 8px;
|
|
9429
|
-
}
|
|
9430
|
-
}
|
|
9431
|
-
}
|
|
9432
|
-
|
|
9433
|
-
.info-page-filters-bookmark {
|
|
9434
|
-
.info-page-filters-color-set();
|
|
9435
|
-
|
|
9436
|
-
background-color: @filters-bookmark-bg-color;
|
|
9437
|
-
border-bottom-right-radius: 4px;
|
|
9438
|
-
border-top-right-radius: 4px;
|
|
9439
|
-
box-shadow: @filters-bookmark-box-shadow;
|
|
9440
|
-
color: @filters-bookmark-color;
|
|
9441
|
-
cursor: pointer;
|
|
9442
|
-
font-size: 10px;
|
|
9443
|
-
height: 22px;
|
|
9444
|
-
right: 0;
|
|
9445
|
-
line-height: 22px;
|
|
9446
|
-
position: absolute;
|
|
9447
|
-
text-align: center;
|
|
9448
|
-
top: 22px;
|
|
9449
|
-
transition: @igz-basic-transition;
|
|
9450
|
-
width: 18px;
|
|
9451
|
-
z-index: 998;
|
|
9452
|
-
|
|
9453
|
-
&:before {
|
|
9454
|
-
right: 3px;
|
|
9455
|
-
position: absolute;
|
|
9456
|
-
top: 6px;
|
|
9457
|
-
}
|
|
9458
|
-
|
|
9459
|
-
&:after {
|
|
9460
|
-
background-color: @filters-bookmark-after-bg-color;
|
|
9461
|
-
content: "";
|
|
9462
|
-
height: 100%;
|
|
9463
|
-
right: -6px;
|
|
9464
|
-
position: absolute;
|
|
9465
|
-
top: 0;
|
|
9466
|
-
width: 6px;
|
|
9463
|
+
&:after {
|
|
9464
|
+
background-color: @filters-bookmark-after-bg-color;
|
|
9465
|
+
content: "";
|
|
9466
|
+
height: 100%;
|
|
9467
|
+
right: -6px;
|
|
9468
|
+
position: absolute;
|
|
9469
|
+
top: 0;
|
|
9470
|
+
width: 6px;
|
|
9467
9471
|
}
|
|
9468
9472
|
|
|
9469
9473
|
&.upper-pane-opened {
|
|
@@ -10200,6 +10204,24 @@ ncl-breadcrumbs {
|
|
|
10200
10204
|
}
|
|
10201
10205
|
}
|
|
10202
10206
|
|
|
10207
|
+
.view-yaml-dialog-wrapper {
|
|
10208
|
+
.ngdialog-content {
|
|
10209
|
+
.view-yaml-dialog-header {
|
|
10210
|
+
.title {
|
|
10211
|
+
margin-bottom: 10px;
|
|
10212
|
+
}
|
|
10213
|
+
|
|
10214
|
+
.copy-to-clipboard {
|
|
10215
|
+
width: 20px;
|
|
10216
|
+
}
|
|
10217
|
+
}
|
|
10218
|
+
|
|
10219
|
+
.monaco-editor {
|
|
10220
|
+
min-width: 700px;
|
|
10221
|
+
min-height: 450px;
|
|
10222
|
+
}
|
|
10223
|
+
}
|
|
10224
|
+
}
|
|
10203
10225
|
.ncl-key-value-input {
|
|
10204
10226
|
.input-wrapper {
|
|
10205
10227
|
width: 100%;
|
|
@@ -10403,24 +10425,6 @@ ncl-breadcrumbs {
|
|
|
10403
10425
|
}
|
|
10404
10426
|
}
|
|
10405
10427
|
|
|
10406
|
-
.view-yaml-dialog-wrapper {
|
|
10407
|
-
.ngdialog-content {
|
|
10408
|
-
.view-yaml-dialog-header {
|
|
10409
|
-
.title {
|
|
10410
|
-
margin-bottom: 10px;
|
|
10411
|
-
}
|
|
10412
|
-
|
|
10413
|
-
.copy-to-clipboard {
|
|
10414
|
-
width: 20px;
|
|
10415
|
-
}
|
|
10416
|
-
}
|
|
10417
|
-
|
|
10418
|
-
.monaco-editor {
|
|
10419
|
-
min-width: 700px;
|
|
10420
|
-
min-height: 450px;
|
|
10421
|
-
}
|
|
10422
|
-
}
|
|
10423
|
-
}
|
|
10424
10428
|
.ncl-monaco {
|
|
10425
10429
|
.ncl-monaco-wrapper {
|
|
10426
10430
|
padding-top: 20px;
|
|
@@ -10986,6 +10990,66 @@ ncl-navigation-tabs {
|
|
|
10986
10990
|
}
|
|
10987
10991
|
}
|
|
10988
10992
|
|
|
10993
|
+
.ncl-version-configuration {
|
|
10994
|
+
> .igz-scrollable-container {
|
|
10995
|
+
padding: 24px 25px 22px 41px;
|
|
10996
|
+
}
|
|
10997
|
+
|
|
10998
|
+
.ncl-version-configuration-wrapper {
|
|
10999
|
+
> .row {
|
|
11000
|
+
display: flex;
|
|
11001
|
+
justify-content: space-between;
|
|
11002
|
+
flex-wrap: wrap;
|
|
11003
|
+
|
|
11004
|
+
.configuration-block {
|
|
11005
|
+
padding: 16px 23px 16px;
|
|
11006
|
+
background-color: @white;
|
|
11007
|
+
border: solid 1px @pale-grey;
|
|
11008
|
+
flex-grow: 1;
|
|
11009
|
+
flex-basis: 500px;
|
|
11010
|
+
margin-right: 16px;
|
|
11011
|
+
margin-bottom: 16px;
|
|
11012
|
+
|
|
11013
|
+
&.invisible {
|
|
11014
|
+
visibility: hidden;
|
|
11015
|
+
}
|
|
11016
|
+
|
|
11017
|
+
.title {
|
|
11018
|
+
font-size: 16px;
|
|
11019
|
+
font-weight: bold;
|
|
11020
|
+
font-style: normal;
|
|
11021
|
+
font-stretch: normal;
|
|
11022
|
+
letter-spacing: normal;
|
|
11023
|
+
text-align: left;
|
|
11024
|
+
color: @dusk-three;
|
|
11025
|
+
margin-bottom: 12px;
|
|
11026
|
+
}
|
|
11027
|
+
|
|
11028
|
+
.row {
|
|
11029
|
+
.label {
|
|
11030
|
+
display: block;
|
|
11031
|
+
font-family: Roboto, sans-serif;
|
|
11032
|
+
font-size: 14px;
|
|
11033
|
+
font-weight: 500;
|
|
11034
|
+
font-style: normal;
|
|
11035
|
+
font-stretch: normal;
|
|
11036
|
+
letter-spacing: normal;
|
|
11037
|
+
text-align: left;
|
|
11038
|
+
color: @dusk-three;
|
|
11039
|
+
padding: 0;
|
|
11040
|
+
}
|
|
11041
|
+
}
|
|
11042
|
+
|
|
11043
|
+
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11044
|
+
.more-info-wrapper {
|
|
11045
|
+
height: 20px;
|
|
11046
|
+
}
|
|
11047
|
+
}
|
|
11048
|
+
}
|
|
11049
|
+
}
|
|
11050
|
+
}
|
|
11051
|
+
}
|
|
11052
|
+
|
|
10989
11053
|
.ncl-edit-version-code {
|
|
10990
11054
|
height: 100%;
|
|
10991
11055
|
display: flex;
|
|
@@ -11198,66 +11262,6 @@ ncl-navigation-tabs {
|
|
|
11198
11262
|
}
|
|
11199
11263
|
}
|
|
11200
11264
|
|
|
11201
|
-
.ncl-version-configuration {
|
|
11202
|
-
> .igz-scrollable-container {
|
|
11203
|
-
padding: 24px 25px 22px 41px;
|
|
11204
|
-
}
|
|
11205
|
-
|
|
11206
|
-
.ncl-version-configuration-wrapper {
|
|
11207
|
-
> .row {
|
|
11208
|
-
display: flex;
|
|
11209
|
-
justify-content: space-between;
|
|
11210
|
-
flex-wrap: wrap;
|
|
11211
|
-
|
|
11212
|
-
.configuration-block {
|
|
11213
|
-
padding: 16px 23px 16px;
|
|
11214
|
-
background-color: @white;
|
|
11215
|
-
border: solid 1px @pale-grey;
|
|
11216
|
-
flex-grow: 1;
|
|
11217
|
-
flex-basis: 500px;
|
|
11218
|
-
margin-right: 16px;
|
|
11219
|
-
margin-bottom: 16px;
|
|
11220
|
-
|
|
11221
|
-
&.invisible {
|
|
11222
|
-
visibility: hidden;
|
|
11223
|
-
}
|
|
11224
|
-
|
|
11225
|
-
.title {
|
|
11226
|
-
font-size: 16px;
|
|
11227
|
-
font-weight: bold;
|
|
11228
|
-
font-style: normal;
|
|
11229
|
-
font-stretch: normal;
|
|
11230
|
-
letter-spacing: normal;
|
|
11231
|
-
text-align: left;
|
|
11232
|
-
color: @dusk-three;
|
|
11233
|
-
margin-bottom: 12px;
|
|
11234
|
-
}
|
|
11235
|
-
|
|
11236
|
-
.row {
|
|
11237
|
-
.label {
|
|
11238
|
-
display: block;
|
|
11239
|
-
font-family: Roboto, sans-serif;
|
|
11240
|
-
font-size: 14px;
|
|
11241
|
-
font-weight: 500;
|
|
11242
|
-
font-style: normal;
|
|
11243
|
-
font-stretch: normal;
|
|
11244
|
-
letter-spacing: normal;
|
|
11245
|
-
text-align: left;
|
|
11246
|
-
color: @dusk-three;
|
|
11247
|
-
padding: 0;
|
|
11248
|
-
}
|
|
11249
|
-
}
|
|
11250
|
-
|
|
11251
|
-
.ncl-version-configuration-labels, .ncl-version-configuration-annotations {
|
|
11252
|
-
.more-info-wrapper {
|
|
11253
|
-
height: 20px;
|
|
11254
|
-
}
|
|
11255
|
-
}
|
|
11256
|
-
}
|
|
11257
|
-
}
|
|
11258
|
-
}
|
|
11259
|
-
}
|
|
11260
|
-
|
|
11261
11265
|
.ncl-version-monitoring {
|
|
11262
11266
|
> .igz-scrollable-container {
|
|
11263
11267
|
padding: 24px 25px 22px 41px;
|
|
@@ -11554,89 +11558,19 @@ ncl-navigation-tabs {
|
|
|
11554
11558
|
}
|
|
11555
11559
|
}
|
|
11556
11560
|
|
|
11557
|
-
.function-
|
|
11558
|
-
|
|
11559
|
-
padding-left: 3%;
|
|
11560
|
-
width: 96%;
|
|
11561
|
+
.function-from-template-content {
|
|
11562
|
+
.ncl-function-from-template-color-set();
|
|
11561
11563
|
|
|
11562
|
-
|
|
11564
|
+
padding: 0 72px 0 63px;
|
|
11565
|
+
|
|
11566
|
+
.configuration-form {
|
|
11563
11567
|
display: flex;
|
|
11564
|
-
align-items: flex-end;
|
|
11565
|
-
margin-bottom: 10px;
|
|
11566
11568
|
|
|
11567
|
-
.
|
|
11568
|
-
|
|
11569
|
-
|
|
11570
|
-
|
|
11571
|
-
|
|
11572
|
-
font-weight: 600;
|
|
11573
|
-
color: @dusk-three;
|
|
11574
|
-
}
|
|
11575
|
-
|
|
11576
|
-
igz-default-dropdown {
|
|
11577
|
-
.default-dropdown {
|
|
11578
|
-
background-color: @white;
|
|
11579
|
-
|
|
11580
|
-
.default-dropdown-field {
|
|
11581
|
-
&:focus {
|
|
11582
|
-
background-color: inherit;
|
|
11583
|
-
}
|
|
11584
|
-
}
|
|
11585
|
-
}
|
|
11586
|
-
}
|
|
11587
|
-
}
|
|
11588
|
-
|
|
11589
|
-
.function-import-actions-bar {
|
|
11590
|
-
display: flex;
|
|
11591
|
-
|
|
11592
|
-
.function-import-file-picker {
|
|
11593
|
-
.file-picker-wrapper {
|
|
11594
|
-
margin: 0;
|
|
11595
|
-
line-height: 34px;
|
|
11596
|
-
|
|
11597
|
-
.igz-icon-upload {
|
|
11598
|
-
margin-right: 10px;
|
|
11599
|
-
}
|
|
11600
|
-
}
|
|
11601
|
-
|
|
11602
|
-
.function-import-input {
|
|
11603
|
-
opacity: 0;
|
|
11604
|
-
position: absolute;
|
|
11605
|
-
z-index: -1;
|
|
11606
|
-
}
|
|
11607
|
-
}
|
|
11608
|
-
}
|
|
11609
|
-
}
|
|
11610
|
-
|
|
11611
|
-
.splash-screen {
|
|
11612
|
-
top: 0;
|
|
11613
|
-
}
|
|
11614
|
-
|
|
11615
|
-
.function-import-monaco {
|
|
11616
|
-
.ncl-monaco {
|
|
11617
|
-
height: 370px;
|
|
11618
|
-
width: 100%;
|
|
11619
|
-
|
|
11620
|
-
.monaco-code-editor {
|
|
11621
|
-
height: 100%;
|
|
11622
|
-
}
|
|
11623
|
-
}
|
|
11624
|
-
}
|
|
11625
|
-
}
|
|
11626
|
-
|
|
11627
|
-
.function-from-template-content {
|
|
11628
|
-
.ncl-function-from-template-color-set();
|
|
11629
|
-
|
|
11630
|
-
padding: 0 72px 0 63px;
|
|
11631
|
-
|
|
11632
|
-
.configuration-form {
|
|
11633
|
-
display: flex;
|
|
11634
|
-
|
|
11635
|
-
.function-name-wrapper {
|
|
11636
|
-
width: 50%;
|
|
11637
|
-
display: flex;
|
|
11638
|
-
justify-content: flex-end;
|
|
11639
|
-
margin-bottom: 2px;
|
|
11569
|
+
.function-name-wrapper {
|
|
11570
|
+
width: 50%;
|
|
11571
|
+
display: flex;
|
|
11572
|
+
justify-content: flex-end;
|
|
11573
|
+
margin-bottom: 2px;
|
|
11640
11574
|
|
|
11641
11575
|
.projects-drop-down {
|
|
11642
11576
|
width: 40%;
|
|
@@ -11886,6 +11820,76 @@ ncl-navigation-tabs {
|
|
|
11886
11820
|
}
|
|
11887
11821
|
}
|
|
11888
11822
|
|
|
11823
|
+
.function-import-wrapper-content {
|
|
11824
|
+
font-family: @font-family-sans-serif;
|
|
11825
|
+
padding-left: 3%;
|
|
11826
|
+
width: 96%;
|
|
11827
|
+
|
|
11828
|
+
.function-import-form {
|
|
11829
|
+
display: flex;
|
|
11830
|
+
align-items: flex-end;
|
|
11831
|
+
margin-bottom: 10px;
|
|
11832
|
+
|
|
11833
|
+
.projects-drop-down {
|
|
11834
|
+
margin-right: 48px;
|
|
11835
|
+
|
|
11836
|
+
.input-label {
|
|
11837
|
+
font-size: 14px;
|
|
11838
|
+
font-weight: 600;
|
|
11839
|
+
color: @dusk-three;
|
|
11840
|
+
}
|
|
11841
|
+
|
|
11842
|
+
igz-default-dropdown {
|
|
11843
|
+
.default-dropdown {
|
|
11844
|
+
background-color: @white;
|
|
11845
|
+
|
|
11846
|
+
.default-dropdown-field {
|
|
11847
|
+
&:focus {
|
|
11848
|
+
background-color: inherit;
|
|
11849
|
+
}
|
|
11850
|
+
}
|
|
11851
|
+
}
|
|
11852
|
+
}
|
|
11853
|
+
}
|
|
11854
|
+
|
|
11855
|
+
.function-import-actions-bar {
|
|
11856
|
+
display: flex;
|
|
11857
|
+
|
|
11858
|
+
.function-import-file-picker {
|
|
11859
|
+
.file-picker-wrapper {
|
|
11860
|
+
margin: 0;
|
|
11861
|
+
line-height: 34px;
|
|
11862
|
+
|
|
11863
|
+
.igz-icon-upload {
|
|
11864
|
+
margin-right: 10px;
|
|
11865
|
+
}
|
|
11866
|
+
}
|
|
11867
|
+
|
|
11868
|
+
.function-import-input {
|
|
11869
|
+
opacity: 0;
|
|
11870
|
+
position: absolute;
|
|
11871
|
+
z-index: -1;
|
|
11872
|
+
}
|
|
11873
|
+
}
|
|
11874
|
+
}
|
|
11875
|
+
}
|
|
11876
|
+
|
|
11877
|
+
.splash-screen {
|
|
11878
|
+
top: 0;
|
|
11879
|
+
}
|
|
11880
|
+
|
|
11881
|
+
.function-import-monaco {
|
|
11882
|
+
.ncl-monaco {
|
|
11883
|
+
height: 370px;
|
|
11884
|
+
width: 100%;
|
|
11885
|
+
|
|
11886
|
+
.monaco-code-editor {
|
|
11887
|
+
height: 100%;
|
|
11888
|
+
}
|
|
11889
|
+
}
|
|
11890
|
+
}
|
|
11891
|
+
}
|
|
11892
|
+
|
|
11889
11893
|
.test-events-pane-wrapper {
|
|
11890
11894
|
position: absolute;
|
|
11891
11895
|
height: 100%;
|
|
@@ -12610,369 +12614,75 @@ ncl-navigation-tabs {
|
|
|
12610
12614
|
}
|
|
12611
12615
|
}
|
|
12612
12616
|
|
|
12613
|
-
|
|
12614
|
-
|
|
12615
|
-
|
|
12617
|
+
@desktop: 1350px;
|
|
12618
|
+
@desktop-low: 1202px;
|
|
12619
|
+
@desktop-middle: 1550px;
|
|
12616
12620
|
|
|
12617
|
-
|
|
12618
|
-
|
|
12621
|
+
.ncl-version-configuration-basic-settings {
|
|
12622
|
+
.row {
|
|
12619
12623
|
display: flex;
|
|
12620
|
-
justify-content:
|
|
12621
|
-
color: @color;
|
|
12622
|
-
font-size: 16px;
|
|
12623
|
-
|
|
12624
|
-
> div {
|
|
12625
|
-
margin-right: 24px;
|
|
12624
|
+
justify-content: space-between;
|
|
12626
12625
|
|
|
12627
|
-
|
|
12628
|
-
|
|
12629
|
-
}
|
|
12626
|
+
&:not(:last-child) {
|
|
12627
|
+
margin-bottom: 23px;
|
|
12630
12628
|
}
|
|
12631
|
-
}
|
|
12632
|
-
|
|
12633
|
-
.collapsed-row {
|
|
12634
|
-
.black(0.2);
|
|
12635
|
-
display: flex;
|
|
12636
|
-
align-items: center;
|
|
12637
|
-
position: relative;
|
|
12638
|
-
height: 36px;
|
|
12639
|
-
background-color: @white;
|
|
12640
|
-
color: @dusk-three;
|
|
12641
|
-
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
12642
|
-
border: solid 1px @pale-grey;
|
|
12643
|
-
margin-bottom: 10px;
|
|
12644
12629
|
|
|
12645
|
-
|
|
12646
|
-
|
|
12647
|
-
|
|
12648
|
-
color: @color;
|
|
12649
|
-
margin: 0 8px 0 12px;
|
|
12630
|
+
&:last-child {
|
|
12631
|
+
margin-bottom: 4px;
|
|
12632
|
+
}
|
|
12650
12633
|
|
|
12651
|
-
|
|
12652
|
-
|
|
12653
|
-
|
|
12634
|
+
&.enable-checkbox {
|
|
12635
|
+
justify-content: flex-start;
|
|
12636
|
+
margin-bottom: 18px;
|
|
12654
12637
|
}
|
|
12655
12638
|
|
|
12656
|
-
|
|
12657
|
-
|
|
12658
|
-
margin-right: 8px;
|
|
12659
|
-
width: 20px;
|
|
12660
|
-
text-align: center;
|
|
12639
|
+
> div {
|
|
12640
|
+
flex: 1;
|
|
12661
12641
|
|
|
12662
|
-
|
|
12663
|
-
|
|
12664
|
-
vertical-align: text-bottom;
|
|
12642
|
+
&:not(:last-child) {
|
|
12643
|
+
margin-right: 46px;
|
|
12665
12644
|
}
|
|
12666
12645
|
|
|
12667
|
-
|
|
12668
|
-
|
|
12646
|
+
.label {
|
|
12647
|
+
padding: 0;
|
|
12648
|
+
margin-bottom: 5px;
|
|
12649
|
+
}
|
|
12669
12650
|
|
|
12670
|
-
|
|
12671
|
-
|
|
12651
|
+
&.timeout-block {
|
|
12652
|
+
.label {
|
|
12653
|
+
margin-bottom: 3px;
|
|
12672
12654
|
}
|
|
12673
|
-
}
|
|
12674
12655
|
|
|
12675
|
-
|
|
12676
|
-
|
|
12677
|
-
}
|
|
12656
|
+
.timeout-values {
|
|
12657
|
+
margin-left: 27px;
|
|
12678
12658
|
|
|
12679
|
-
|
|
12680
|
-
|
|
12681
|
-
|
|
12659
|
+
.inputs {
|
|
12660
|
+
display: flex;
|
|
12661
|
+
align-items: center;
|
|
12682
12662
|
|
|
12683
|
-
|
|
12684
|
-
|
|
12663
|
+
.values-label {
|
|
12664
|
+
.duskThree(0.9);
|
|
12665
|
+
margin: 0 17px 0 8px;
|
|
12666
|
+
font-size: 14px;
|
|
12667
|
+
font-weight: normal;
|
|
12668
|
+
font-style: normal;
|
|
12669
|
+
letter-spacing: normal;
|
|
12670
|
+
text-align: left;
|
|
12671
|
+
color: @color;
|
|
12672
|
+
}
|
|
12673
|
+
}
|
|
12674
|
+
}
|
|
12685
12675
|
}
|
|
12686
12676
|
}
|
|
12687
12677
|
|
|
12688
|
-
.
|
|
12689
|
-
display:
|
|
12690
|
-
|
|
12691
|
-
font-size: 14px;
|
|
12692
|
-
font-weight: bold;
|
|
12693
|
-
margin-right: 15px;
|
|
12694
|
-
}
|
|
12678
|
+
.logger-block {
|
|
12679
|
+
display: flex;
|
|
12680
|
+
margin-top: 3px;
|
|
12695
12681
|
|
|
12696
|
-
|
|
12697
|
-
|
|
12698
|
-
|
|
12699
|
-
|
|
12700
|
-
}
|
|
12701
|
-
|
|
12702
|
-
.ncl-icon-parameters {
|
|
12703
|
-
.duskThree(0.64);
|
|
12704
|
-
color: @color;
|
|
12705
|
-
font-size: 14px;
|
|
12706
|
-
position: absolute;
|
|
12707
|
-
top: 9px;
|
|
12708
|
-
right: 9px;
|
|
12709
|
-
}
|
|
12710
|
-
}
|
|
12711
|
-
|
|
12712
|
-
.expanded-row {
|
|
12713
|
-
background-color: @white;
|
|
12714
|
-
color: @dusk-three;
|
|
12715
|
-
border: solid 1px @pale-grey;
|
|
12716
|
-
margin-bottom: 10px;
|
|
12717
|
-
|
|
12718
|
-
.header {
|
|
12719
|
-
position: relative;
|
|
12720
|
-
display: flex;
|
|
12721
|
-
align-items: center;
|
|
12722
|
-
height: 34px;
|
|
12723
|
-
|
|
12724
|
-
.igz-icon-down {
|
|
12725
|
-
.duskThree(0.64);
|
|
12726
|
-
font-size: 12px;
|
|
12727
|
-
color: @color;
|
|
12728
|
-
margin: 0 8px 0 12px;
|
|
12729
|
-
|
|
12730
|
-
&::before {
|
|
12731
|
-
vertical-align: text-bottom;
|
|
12732
|
-
}
|
|
12733
|
-
}
|
|
12734
|
-
|
|
12735
|
-
.level-icon {
|
|
12736
|
-
display: inline-block;
|
|
12737
|
-
margin-right: 8px;
|
|
12738
|
-
width: 20px;
|
|
12739
|
-
text-align: center;
|
|
12740
|
-
|
|
12741
|
-
&::before {
|
|
12742
|
-
font-size: 16px;
|
|
12743
|
-
vertical-align: text-bottom;
|
|
12744
|
-
}
|
|
12745
|
-
|
|
12746
|
-
&.ncl-icon-debug {
|
|
12747
|
-
color: @orangish;
|
|
12748
|
-
|
|
12749
|
-
&::before {
|
|
12750
|
-
font-size: 18px;
|
|
12751
|
-
}
|
|
12752
|
-
}
|
|
12753
|
-
|
|
12754
|
-
&.igz-icon-info-round {
|
|
12755
|
-
color: @orangish;
|
|
12756
|
-
}
|
|
12757
|
-
|
|
12758
|
-
&.igz-icon-warning {
|
|
12759
|
-
color: @orangish;
|
|
12760
|
-
}
|
|
12761
|
-
|
|
12762
|
-
&.igz-icon-cancel-path {
|
|
12763
|
-
color: @orangish;
|
|
12764
|
-
}
|
|
12765
|
-
}
|
|
12766
|
-
|
|
12767
|
-
.date {
|
|
12768
|
-
display: inline-block;
|
|
12769
|
-
width: 230px;
|
|
12770
|
-
font-size: 14px;
|
|
12771
|
-
font-weight: bold;
|
|
12772
|
-
margin-right: 15px;
|
|
12773
|
-
}
|
|
12774
|
-
|
|
12775
|
-
.ncl-icon-parameters {
|
|
12776
|
-
.duskThree(0.64);
|
|
12777
|
-
position: absolute;
|
|
12778
|
-
top: 9px;
|
|
12779
|
-
right: 9px;
|
|
12780
|
-
color: @color;
|
|
12781
|
-
font-size: 14px;
|
|
12782
|
-
}
|
|
12783
|
-
}
|
|
12784
|
-
|
|
12785
|
-
.expanded-body {
|
|
12786
|
-
font-size: 14px;
|
|
12787
|
-
color: @dusk-three;
|
|
12788
|
-
|
|
12789
|
-
.error {
|
|
12790
|
-
width: 71%;
|
|
12791
|
-
border-radius: 3px;
|
|
12792
|
-
background-color: #fbe5e8;
|
|
12793
|
-
border: solid 1px @darkish-pink;
|
|
12794
|
-
color: @darkish-pink;
|
|
12795
|
-
word-wrap: break-word;
|
|
12796
|
-
margin-left: 62px;
|
|
12797
|
-
padding: 12px;
|
|
12798
|
-
margin-bottom: 16px;
|
|
12799
|
-
}
|
|
12800
|
-
|
|
12801
|
-
.message {
|
|
12802
|
-
display: inline-block;
|
|
12803
|
-
width: 70%;
|
|
12804
|
-
word-wrap: break-word;
|
|
12805
|
-
margin: 0 0 16px 62px;
|
|
12806
|
-
}
|
|
12807
|
-
|
|
12808
|
-
.parameters {
|
|
12809
|
-
padding: 0 62px 16px;
|
|
12810
|
-
|
|
12811
|
-
.parameters-header {
|
|
12812
|
-
font-weight: bold;
|
|
12813
|
-
}
|
|
12814
|
-
|
|
12815
|
-
> div {
|
|
12816
|
-
display: flex;
|
|
12817
|
-
line-height: 2;
|
|
12818
|
-
|
|
12819
|
-
.labels {
|
|
12820
|
-
color: @greyish-purple;
|
|
12821
|
-
font-size: 14px;
|
|
12822
|
-
width: 30%;
|
|
12823
|
-
}
|
|
12824
|
-
|
|
12825
|
-
.values {
|
|
12826
|
-
color: @dusk-three;
|
|
12827
|
-
font-size: 14px;
|
|
12828
|
-
width: 70%;
|
|
12829
|
-
}
|
|
12830
|
-
}
|
|
12831
|
-
}
|
|
12832
|
-
}
|
|
12833
|
-
}
|
|
12834
|
-
|
|
12835
|
-
.no-logs {
|
|
12836
|
-
margin: 10px auto 0;
|
|
12837
|
-
font-size: 14px;
|
|
12838
|
-
color: @pale-grey;
|
|
12839
|
-
text-align: center;
|
|
12840
|
-
}
|
|
12841
|
-
}
|
|
12842
|
-
.ncl-test-events-navigation-tabs {
|
|
12843
|
-
display: flex;
|
|
12844
|
-
background: #f8f8fb;
|
|
12845
|
-
height: 40px;
|
|
12846
|
-
border-top: 1px solid @pale-grey;
|
|
12847
|
-
border-bottom: 1px solid @pale-grey;
|
|
12848
|
-
|
|
12849
|
-
.test-events-navigation-tab {
|
|
12850
|
-
.duskThree(0.64);
|
|
12851
|
-
position: relative;
|
|
12852
|
-
float: left;
|
|
12853
|
-
height: 27px;
|
|
12854
|
-
padding: 10px 40px 0;
|
|
12855
|
-
font-family: @font-family-sans-serif;
|
|
12856
|
-
color: @color;
|
|
12857
|
-
font-size: 13px;
|
|
12858
|
-
text-align: center;
|
|
12859
|
-
cursor: pointer;
|
|
12860
|
-
border-bottom: none;
|
|
12861
|
-
box-sizing: content-box;
|
|
12862
|
-
|
|
12863
|
-
&.active, &.active:hover {
|
|
12864
|
-
background: none;
|
|
12865
|
-
color: @dusk-three;
|
|
12866
|
-
border-bottom: 2px solid @dusk-three;
|
|
12867
|
-
font-weight: bold;
|
|
12868
|
-
|
|
12869
|
-
.badge {
|
|
12870
|
-
color: @white;
|
|
12871
|
-
background-color: @light-grey-blue;
|
|
12872
|
-
}
|
|
12873
|
-
}
|
|
12874
|
-
|
|
12875
|
-
.badge {
|
|
12876
|
-
display: inline-block;
|
|
12877
|
-
min-width: 22px;
|
|
12878
|
-
padding: 3px 7px;
|
|
12879
|
-
font-size: 12px;
|
|
12880
|
-
font-weight: 500;
|
|
12881
|
-
color: @greyish-purple;
|
|
12882
|
-
line-height: 1;
|
|
12883
|
-
vertical-align: middle;
|
|
12884
|
-
white-space: nowrap;
|
|
12885
|
-
text-align: center;
|
|
12886
|
-
background-color: @pale-grey;
|
|
12887
|
-
border-radius: 7.5px;
|
|
12888
|
-
margin-left: 7px;
|
|
12889
|
-
margin-top: -4px;
|
|
12890
|
-
}
|
|
12891
|
-
}
|
|
12892
|
-
|
|
12893
|
-
.default-dropdown {
|
|
12894
|
-
float: left;
|
|
12895
|
-
width: 105px;
|
|
12896
|
-
|
|
12897
|
-
.default-dropdown-field:not(:hover) {
|
|
12898
|
-
border-color: transparent;
|
|
12899
|
-
}
|
|
12900
|
-
|
|
12901
|
-
.default-dropdown-container {
|
|
12902
|
-
z-index: 3;
|
|
12903
|
-
}
|
|
12904
|
-
}
|
|
12905
|
-
}
|
|
12906
|
-
|
|
12907
|
-
@desktop: 1350px;
|
|
12908
|
-
@desktop-low: 1202px;
|
|
12909
|
-
@desktop-middle: 1550px;
|
|
12910
|
-
|
|
12911
|
-
.ncl-version-configuration-basic-settings {
|
|
12912
|
-
.row {
|
|
12913
|
-
display: flex;
|
|
12914
|
-
justify-content: space-between;
|
|
12915
|
-
|
|
12916
|
-
&:not(:last-child) {
|
|
12917
|
-
margin-bottom: 23px;
|
|
12918
|
-
}
|
|
12919
|
-
|
|
12920
|
-
&:last-child {
|
|
12921
|
-
margin-bottom: 4px;
|
|
12922
|
-
}
|
|
12923
|
-
|
|
12924
|
-
&.enable-checkbox {
|
|
12925
|
-
justify-content: flex-start;
|
|
12926
|
-
margin-bottom: 18px;
|
|
12927
|
-
}
|
|
12928
|
-
|
|
12929
|
-
> div {
|
|
12930
|
-
flex: 1;
|
|
12931
|
-
|
|
12932
|
-
&:not(:last-child) {
|
|
12933
|
-
margin-right: 46px;
|
|
12934
|
-
}
|
|
12935
|
-
|
|
12936
|
-
.label {
|
|
12937
|
-
padding: 0;
|
|
12938
|
-
margin-bottom: 5px;
|
|
12939
|
-
}
|
|
12940
|
-
|
|
12941
|
-
&.timeout-block {
|
|
12942
|
-
.label {
|
|
12943
|
-
margin-bottom: 3px;
|
|
12944
|
-
}
|
|
12945
|
-
|
|
12946
|
-
.timeout-values {
|
|
12947
|
-
margin-left: 27px;
|
|
12948
|
-
|
|
12949
|
-
.inputs {
|
|
12950
|
-
display: flex;
|
|
12951
|
-
align-items: center;
|
|
12952
|
-
|
|
12953
|
-
.values-label {
|
|
12954
|
-
.duskThree(0.9);
|
|
12955
|
-
margin: 0 17px 0 8px;
|
|
12956
|
-
font-size: 14px;
|
|
12957
|
-
font-weight: normal;
|
|
12958
|
-
font-style: normal;
|
|
12959
|
-
letter-spacing: normal;
|
|
12960
|
-
text-align: left;
|
|
12961
|
-
color: @color;
|
|
12962
|
-
}
|
|
12963
|
-
}
|
|
12964
|
-
}
|
|
12965
|
-
}
|
|
12966
|
-
}
|
|
12967
|
-
|
|
12968
|
-
.logger-block {
|
|
12969
|
-
display: flex;
|
|
12970
|
-
margin-top: 3px;
|
|
12971
|
-
|
|
12972
|
-
.logger-dropdown {
|
|
12973
|
-
.default-dropdown {
|
|
12974
|
-
position: relative;
|
|
12975
|
-
height: 36px;
|
|
12682
|
+
.logger-dropdown {
|
|
12683
|
+
.default-dropdown {
|
|
12684
|
+
position: relative;
|
|
12685
|
+
height: 36px;
|
|
12976
12686
|
|
|
12977
12687
|
.dropdown-overlap {
|
|
12978
12688
|
z-index: 100;
|
|
@@ -13125,299 +12835,593 @@ ncl-navigation-tabs {
|
|
|
13125
12835
|
font-size: 20px;
|
|
13126
12836
|
}
|
|
13127
12837
|
|
|
13128
|
-
.ncl-icon-script,
|
|
13129
|
-
.ncl-icon-file,
|
|
13130
|
-
.ncl-icon-close {
|
|
13131
|
-
color: @greyish-purple;
|
|
12838
|
+
.ncl-icon-script,
|
|
12839
|
+
.ncl-icon-file,
|
|
12840
|
+
.ncl-icon-close {
|
|
12841
|
+
color: @greyish-purple;
|
|
12842
|
+
}
|
|
12843
|
+
}
|
|
12844
|
+
|
|
12845
|
+
.uploading-proccess-wrapper {
|
|
12846
|
+
width: 100%;
|
|
12847
|
+
flex-grow: 2.5;
|
|
12848
|
+
|
|
12849
|
+
.uploading {
|
|
12850
|
+
position: relative;
|
|
12851
|
+
padding: 6px 130px 6px 8px;
|
|
12852
|
+
|
|
12853
|
+
.progress-percents {
|
|
12854
|
+
margin-left: 15px;
|
|
12855
|
+
color: @dark-grey;
|
|
12856
|
+
}
|
|
12857
|
+
|
|
12858
|
+
.file-name {
|
|
12859
|
+
margin-left: 8px;
|
|
12860
|
+
color: @dark-sky-blue;
|
|
12861
|
+
text-overflow: ellipsis;
|
|
12862
|
+
}
|
|
12863
|
+
|
|
12864
|
+
.ncl-icon-script {
|
|
12865
|
+
font-size: 12px;
|
|
12866
|
+
}
|
|
12867
|
+
}
|
|
12868
|
+
|
|
12869
|
+
.uploading-file {
|
|
12870
|
+
padding: 3px 55px 3px 8px;
|
|
12871
|
+
|
|
12872
|
+
.file-name {
|
|
12873
|
+
vertical-align: top;
|
|
12874
|
+
margin: 4px;
|
|
12875
|
+
margin-left: 9px;
|
|
12876
|
+
}
|
|
12877
|
+
}
|
|
12878
|
+
}
|
|
12879
|
+
|
|
12880
|
+
.one-file-uploaded {
|
|
12881
|
+
margin-right: 16px;
|
|
12882
|
+
}
|
|
12883
|
+
|
|
12884
|
+
.uploaded-wrapper {
|
|
12885
|
+
width: 100%;
|
|
12886
|
+
display: flex;
|
|
12887
|
+
justify-content: space-between;
|
|
12888
|
+
|
|
12889
|
+
.uploaded {
|
|
12890
|
+
position: relative;
|
|
12891
|
+
flex-grow: 1;
|
|
12892
|
+
padding: 6px 40px 6px 8px;
|
|
12893
|
+
|
|
12894
|
+
.file-name {
|
|
12895
|
+
margin-left: 9px;
|
|
12896
|
+
color: @dusk-three;
|
|
12897
|
+
|
|
12898
|
+
.uploaded-file-directory {
|
|
12899
|
+
margin-left: 8px;
|
|
12900
|
+
color: @dark-greyish-blue;
|
|
12901
|
+
}
|
|
12902
|
+
}
|
|
12903
|
+
}
|
|
12904
|
+
|
|
12905
|
+
.uploaded-file {
|
|
12906
|
+
padding: 3px 55px 3px 8px;
|
|
12907
|
+
|
|
12908
|
+
.file-name {
|
|
12909
|
+
margin: 4px 4px 4px 9px;
|
|
12910
|
+
vertical-align: top;
|
|
12911
|
+
}
|
|
12912
|
+
|
|
12913
|
+
.build-close-button {
|
|
12914
|
+
top: 6px;
|
|
12915
|
+
}
|
|
12916
|
+
}
|
|
12917
|
+
}
|
|
12918
|
+
}
|
|
12919
|
+
}
|
|
12920
|
+
|
|
12921
|
+
.configuration-build-title-wrapper {
|
|
12922
|
+
display: flex;
|
|
12923
|
+
justify-content: space-between;
|
|
12924
|
+
|
|
12925
|
+
.igz-action-menu {
|
|
12926
|
+
.menu-button {
|
|
12927
|
+
width: 40px;
|
|
12928
|
+
height: 40px;
|
|
12929
|
+
display: flex;
|
|
12930
|
+
justify-content: center;
|
|
12931
|
+
align-items: center;
|
|
12932
|
+
font-size: 22px;
|
|
12933
|
+
margin: -10px -15px 0 0;
|
|
12934
|
+
border-radius: 50%;
|
|
12935
|
+
color: @dusk-three;
|
|
12936
|
+
}
|
|
12937
|
+
|
|
12938
|
+
.active {
|
|
12939
|
+
.black(0.1);
|
|
12940
|
+
background-color: @silver;
|
|
12941
|
+
box-shadow: inset 0px 2px 3px 0 @color;
|
|
12942
|
+
}
|
|
12943
|
+
|
|
12944
|
+
.menu-dropdown {
|
|
12945
|
+
margin-top: 4px;
|
|
12946
|
+
right: -18px;
|
|
12947
|
+
}
|
|
12948
|
+
}
|
|
12949
|
+
}
|
|
12950
|
+
}
|
|
12951
|
+
|
|
12952
|
+
.ncl-version-configuration-logging {
|
|
12953
|
+
.row {
|
|
12954
|
+
display: flex;
|
|
12955
|
+
position: relative;
|
|
12956
|
+
|
|
12957
|
+
.logging-wrapper {
|
|
12958
|
+
width: 100%;
|
|
12959
|
+
}
|
|
12960
|
+
}
|
|
12961
|
+
}
|
|
12962
|
+
|
|
12963
|
+
@desktop-middle: 1550px;
|
|
12964
|
+
|
|
12965
|
+
.ncl-version-configuration-resources {
|
|
12966
|
+
.row {
|
|
12967
|
+
.range-inputs-row {
|
|
12968
|
+
display: flex;
|
|
12969
|
+
align-items: flex-end;
|
|
12970
|
+
|
|
12971
|
+
.row-title {
|
|
12972
|
+
margin-bottom: 8px;
|
|
12973
|
+
}
|
|
12974
|
+
}
|
|
12975
|
+
|
|
12976
|
+
.form-row {
|
|
12977
|
+
padding: 12px 0;
|
|
12978
|
+
|
|
12979
|
+
.row-title, .input-title {
|
|
12980
|
+
font-size: 14px;
|
|
12981
|
+
}
|
|
12982
|
+
|
|
12983
|
+
.row-title {
|
|
12984
|
+
font-weight: 500;
|
|
12985
|
+
}
|
|
12986
|
+
|
|
12987
|
+
.input-wrapper {
|
|
12988
|
+
display: flex;
|
|
12989
|
+
flex-wrap: wrap;
|
|
12990
|
+
|
|
12991
|
+
.input-title {
|
|
12992
|
+
width: 100%;
|
|
12993
|
+
}
|
|
12994
|
+
|
|
12995
|
+
.memory-number-input, .cpu-number-input {
|
|
12996
|
+
width: 50%;
|
|
12997
|
+
}
|
|
12998
|
+
|
|
12999
|
+
.memory-size-dropdown, .cpu-dropdown {
|
|
13000
|
+
width: 35%
|
|
13001
|
+
}
|
|
13002
|
+
|
|
13003
|
+
.gpu-number-input, .replicas-number-input, .preemtion-mode-input, .priority-class-input {
|
|
13004
|
+
width: 85%;
|
|
13005
|
+
}
|
|
13006
|
+
}
|
|
13007
|
+
}
|
|
13008
|
+
|
|
13009
|
+
.slider-block {
|
|
13010
|
+
padding-top: 0;
|
|
13011
|
+
margin-bottom: 10px;
|
|
13012
|
+
|
|
13013
|
+
.slider {
|
|
13014
|
+
width: 70%;
|
|
13015
|
+
}
|
|
13016
|
+
}
|
|
13017
|
+
}
|
|
13018
|
+
}
|
|
13019
|
+
|
|
13020
|
+
.ncl-version-configuration-volumes {
|
|
13021
|
+
.ncl-version-volume {
|
|
13022
|
+
.common-table-header {
|
|
13023
|
+
border: none;
|
|
13024
|
+
padding-left: 40px;
|
|
13025
|
+
padding-right: 60px;
|
|
13026
|
+
|
|
13027
|
+
.common-table-cell {
|
|
13028
|
+
font-size: 14px;
|
|
13029
|
+
font-weight: bold;
|
|
13030
|
+
letter-spacing: normal;
|
|
13031
|
+
color: @dusk-three;
|
|
13032
|
+
height: 46px;
|
|
13033
|
+
}
|
|
13034
|
+
|
|
13035
|
+
&.item-header {
|
|
13036
|
+
display: flex;
|
|
13037
|
+
|
|
13038
|
+
.item-name {
|
|
13039
|
+
width: 25%;
|
|
13040
|
+
padding-left: 0;
|
|
13041
|
+
}
|
|
13042
|
+
|
|
13043
|
+
.item-class {
|
|
13044
|
+
width: 20%;
|
|
13045
|
+
}
|
|
13046
|
+
|
|
13047
|
+
.item-info {
|
|
13048
|
+
width: 55%;
|
|
13132
13049
|
}
|
|
13133
13050
|
}
|
|
13051
|
+
}
|
|
13134
13052
|
|
|
13135
|
-
|
|
13136
|
-
|
|
13137
|
-
|
|
13053
|
+
.common-table-body {
|
|
13054
|
+
.ncl-collapsing-row .item-row {
|
|
13055
|
+
.item-name {
|
|
13056
|
+
padding-left: 0;
|
|
13057
|
+
width: 25%;
|
|
13058
|
+
}
|
|
13138
13059
|
|
|
13139
|
-
.
|
|
13140
|
-
|
|
13141
|
-
|
|
13060
|
+
.item-class {
|
|
13061
|
+
width: 20%;
|
|
13062
|
+
}
|
|
13142
13063
|
|
|
13143
|
-
|
|
13144
|
-
|
|
13145
|
-
|
|
13146
|
-
|
|
13064
|
+
.item-info {
|
|
13065
|
+
width: 55%;
|
|
13066
|
+
}
|
|
13067
|
+
}
|
|
13147
13068
|
|
|
13148
|
-
|
|
13149
|
-
|
|
13150
|
-
|
|
13151
|
-
|
|
13069
|
+
.common-table-row {
|
|
13070
|
+
&:not(.read-only):hover {
|
|
13071
|
+
.common-table-cells-container {
|
|
13072
|
+
background-color: @white;
|
|
13152
13073
|
}
|
|
13153
13074
|
|
|
13154
|
-
.
|
|
13155
|
-
|
|
13075
|
+
.actions-menu {
|
|
13076
|
+
background-color: @white;
|
|
13156
13077
|
}
|
|
13157
13078
|
}
|
|
13079
|
+
}
|
|
13080
|
+
}
|
|
13081
|
+
}
|
|
13082
|
+
}
|
|
13158
13083
|
|
|
13159
|
-
|
|
13160
|
-
|
|
13084
|
+
.ncl-version-configuration-runtime-attributes {
|
|
13085
|
+
.row:not(.info-row) {
|
|
13086
|
+
display: flex;
|
|
13087
|
+
justify-content: space-between;
|
|
13161
13088
|
|
|
13162
|
-
|
|
13163
|
-
|
|
13164
|
-
|
|
13165
|
-
|
|
13166
|
-
}
|
|
13167
|
-
}
|
|
13168
|
-
}
|
|
13089
|
+
&:not(:last-child) {
|
|
13090
|
+
margin-top: 10px;
|
|
13091
|
+
margin-bottom: 25px;
|
|
13092
|
+
}
|
|
13169
13093
|
|
|
13170
|
-
|
|
13094
|
+
> div {
|
|
13095
|
+
flex: 0.65;
|
|
13096
|
+
|
|
13097
|
+
&:not(:last-child) {
|
|
13171
13098
|
margin-right: 16px;
|
|
13172
13099
|
}
|
|
13173
13100
|
|
|
13174
|
-
|
|
13175
|
-
|
|
13176
|
-
|
|
13177
|
-
|
|
13101
|
+
&.arguments-input {
|
|
13102
|
+
flex-grow: 2;
|
|
13103
|
+
}
|
|
13104
|
+
}
|
|
13105
|
+
}
|
|
13178
13106
|
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
|
|
13182
|
-
|
|
13107
|
+
.row {
|
|
13108
|
+
.runtime {
|
|
13109
|
+
height: 36px;
|
|
13110
|
+
border-radius: 2px;
|
|
13111
|
+
padding: 9px 0 0 14px;
|
|
13112
|
+
text-transform: capitalize;
|
|
13113
|
+
font-family: @font-family-sans-serif;
|
|
13114
|
+
font-size: 14px;
|
|
13115
|
+
text-align: left;
|
|
13116
|
+
color: @dusk-three;
|
|
13117
|
+
}
|
|
13183
13118
|
|
|
13184
|
-
|
|
13185
|
-
|
|
13186
|
-
|
|
13119
|
+
.textarea-field {
|
|
13120
|
+
height: 177px;
|
|
13121
|
+
resize: none;
|
|
13122
|
+
white-space: pre;
|
|
13123
|
+
overflow-x: auto;
|
|
13124
|
+
}
|
|
13125
|
+
}
|
|
13187
13126
|
|
|
13188
|
-
|
|
13189
|
-
|
|
13190
|
-
|
|
13191
|
-
|
|
13192
|
-
|
|
13193
|
-
|
|
13127
|
+
.java-attribute {
|
|
13128
|
+
.textarea-field {
|
|
13129
|
+
height: 70px;
|
|
13130
|
+
overflow-y: auto;
|
|
13131
|
+
}
|
|
13132
|
+
}
|
|
13133
|
+
}
|
|
13194
13134
|
|
|
13195
|
-
|
|
13196
|
-
|
|
13135
|
+
.ncl-test-events-logs {
|
|
13136
|
+
padding: 6px 17px 25px;
|
|
13137
|
+
background-color: @white;
|
|
13197
13138
|
|
|
13198
|
-
|
|
13199
|
-
|
|
13200
|
-
|
|
13201
|
-
|
|
13139
|
+
.functional-buttons {
|
|
13140
|
+
.duskThree(0.64);
|
|
13141
|
+
display: flex;
|
|
13142
|
+
justify-content: flex-end;
|
|
13143
|
+
color: @color;
|
|
13144
|
+
font-size: 16px;
|
|
13202
13145
|
|
|
13203
|
-
|
|
13204
|
-
|
|
13205
|
-
|
|
13206
|
-
|
|
13146
|
+
> div {
|
|
13147
|
+
margin-right: 24px;
|
|
13148
|
+
|
|
13149
|
+
&:hover {
|
|
13150
|
+
color: @dusk-three;
|
|
13207
13151
|
}
|
|
13208
13152
|
}
|
|
13209
13153
|
}
|
|
13210
13154
|
|
|
13211
|
-
.
|
|
13155
|
+
.collapsed-row {
|
|
13156
|
+
.black(0.2);
|
|
13212
13157
|
display: flex;
|
|
13213
|
-
|
|
13158
|
+
align-items: center;
|
|
13159
|
+
position: relative;
|
|
13160
|
+
height: 36px;
|
|
13161
|
+
background-color: @white;
|
|
13162
|
+
color: @dusk-three;
|
|
13163
|
+
box-shadow: 1.7px 1.1px 4px 0 @color;
|
|
13164
|
+
border: solid 1px @pale-grey;
|
|
13165
|
+
margin-bottom: 10px;
|
|
13214
13166
|
|
|
13215
|
-
.igz-
|
|
13216
|
-
.
|
|
13217
|
-
|
|
13218
|
-
|
|
13219
|
-
|
|
13220
|
-
|
|
13221
|
-
|
|
13222
|
-
|
|
13223
|
-
margin: -10px -15px 0 0;
|
|
13224
|
-
border-radius: 50%;
|
|
13225
|
-
color: @dusk-three;
|
|
13167
|
+
.igz-icon-right {
|
|
13168
|
+
.duskThree(0.64);
|
|
13169
|
+
font-size: 12px;
|
|
13170
|
+
color: @color;
|
|
13171
|
+
margin: 0 8px 0 12px;
|
|
13172
|
+
|
|
13173
|
+
&::before {
|
|
13174
|
+
vertical-align: text-bottom;
|
|
13226
13175
|
}
|
|
13176
|
+
}
|
|
13227
13177
|
|
|
13228
|
-
|
|
13229
|
-
|
|
13230
|
-
|
|
13231
|
-
|
|
13178
|
+
.level-icon {
|
|
13179
|
+
display: inline-block;
|
|
13180
|
+
margin-right: 8px;
|
|
13181
|
+
width: 20px;
|
|
13182
|
+
text-align: center;
|
|
13183
|
+
|
|
13184
|
+
&::before {
|
|
13185
|
+
font-size: 16px;
|
|
13186
|
+
vertical-align: text-bottom;
|
|
13232
13187
|
}
|
|
13233
13188
|
|
|
13234
|
-
|
|
13235
|
-
|
|
13236
|
-
|
|
13189
|
+
&.ncl-icon-debug {
|
|
13190
|
+
color: @orangish;
|
|
13191
|
+
|
|
13192
|
+
&::before {
|
|
13193
|
+
font-size: 18px;
|
|
13194
|
+
}
|
|
13237
13195
|
}
|
|
13238
|
-
}
|
|
13239
|
-
}
|
|
13240
|
-
}
|
|
13241
13196
|
|
|
13242
|
-
|
|
13243
|
-
|
|
13244
|
-
|
|
13245
|
-
position: relative;
|
|
13197
|
+
&.igz-icon-info-round {
|
|
13198
|
+
color: @orangish;
|
|
13199
|
+
}
|
|
13246
13200
|
|
|
13247
|
-
|
|
13248
|
-
|
|
13201
|
+
&.igz-icon-warning {
|
|
13202
|
+
color: @orangish;
|
|
13203
|
+
}
|
|
13204
|
+
|
|
13205
|
+
&.igz-icon-cancel-path {
|
|
13206
|
+
color: @orangish;
|
|
13207
|
+
}
|
|
13249
13208
|
}
|
|
13250
|
-
}
|
|
13251
|
-
}
|
|
13252
13209
|
|
|
13253
|
-
|
|
13210
|
+
.date {
|
|
13211
|
+
display: inline-block;
|
|
13212
|
+
width: 230px;
|
|
13213
|
+
font-size: 14px;
|
|
13214
|
+
font-weight: bold;
|
|
13215
|
+
margin-right: 15px;
|
|
13216
|
+
}
|
|
13254
13217
|
|
|
13255
|
-
.
|
|
13256
|
-
|
|
13257
|
-
|
|
13258
|
-
|
|
13259
|
-
|
|
13218
|
+
.message {
|
|
13219
|
+
display: inline-block;
|
|
13220
|
+
width: 200px;
|
|
13221
|
+
margin-right: 30px;
|
|
13222
|
+
}
|
|
13260
13223
|
|
|
13261
|
-
|
|
13262
|
-
|
|
13263
|
-
|
|
13224
|
+
.ncl-icon-parameters {
|
|
13225
|
+
.duskThree(0.64);
|
|
13226
|
+
color: @color;
|
|
13227
|
+
font-size: 14px;
|
|
13228
|
+
position: absolute;
|
|
13229
|
+
top: 9px;
|
|
13230
|
+
right: 9px;
|
|
13264
13231
|
}
|
|
13232
|
+
}
|
|
13265
13233
|
|
|
13266
|
-
|
|
13267
|
-
|
|
13234
|
+
.expanded-row {
|
|
13235
|
+
background-color: @white;
|
|
13236
|
+
color: @dusk-three;
|
|
13237
|
+
border: solid 1px @pale-grey;
|
|
13238
|
+
margin-bottom: 10px;
|
|
13239
|
+
|
|
13240
|
+
.header {
|
|
13241
|
+
position: relative;
|
|
13242
|
+
display: flex;
|
|
13243
|
+
align-items: center;
|
|
13244
|
+
height: 34px;
|
|
13268
13245
|
|
|
13269
|
-
.
|
|
13270
|
-
|
|
13271
|
-
|
|
13246
|
+
.igz-icon-down {
|
|
13247
|
+
.duskThree(0.64);
|
|
13248
|
+
font-size: 12px;
|
|
13249
|
+
color: @color;
|
|
13250
|
+
margin: 0 8px 0 12px;
|
|
13272
13251
|
|
|
13273
|
-
|
|
13274
|
-
|
|
13252
|
+
&::before {
|
|
13253
|
+
vertical-align: text-bottom;
|
|
13254
|
+
}
|
|
13275
13255
|
}
|
|
13276
13256
|
|
|
13277
|
-
.
|
|
13278
|
-
display:
|
|
13279
|
-
|
|
13257
|
+
.level-icon {
|
|
13258
|
+
display: inline-block;
|
|
13259
|
+
margin-right: 8px;
|
|
13260
|
+
width: 20px;
|
|
13261
|
+
text-align: center;
|
|
13280
13262
|
|
|
13281
|
-
|
|
13282
|
-
|
|
13263
|
+
&::before {
|
|
13264
|
+
font-size: 16px;
|
|
13265
|
+
vertical-align: text-bottom;
|
|
13283
13266
|
}
|
|
13284
13267
|
|
|
13285
|
-
|
|
13286
|
-
|
|
13287
|
-
}
|
|
13268
|
+
&.ncl-icon-debug {
|
|
13269
|
+
color: @orangish;
|
|
13288
13270
|
|
|
13289
|
-
|
|
13290
|
-
|
|
13271
|
+
&::before {
|
|
13272
|
+
font-size: 18px;
|
|
13273
|
+
}
|
|
13291
13274
|
}
|
|
13292
13275
|
|
|
13293
|
-
|
|
13294
|
-
|
|
13276
|
+
&.igz-icon-info-round {
|
|
13277
|
+
color: @orangish;
|
|
13295
13278
|
}
|
|
13296
|
-
}
|
|
13297
|
-
}
|
|
13298
13279
|
|
|
13299
|
-
|
|
13300
|
-
|
|
13301
|
-
|
|
13280
|
+
&.igz-icon-warning {
|
|
13281
|
+
color: @orangish;
|
|
13282
|
+
}
|
|
13302
13283
|
|
|
13303
|
-
|
|
13304
|
-
|
|
13284
|
+
&.igz-icon-cancel-path {
|
|
13285
|
+
color: @orangish;
|
|
13286
|
+
}
|
|
13305
13287
|
}
|
|
13306
|
-
}
|
|
13307
|
-
}
|
|
13308
|
-
}
|
|
13309
|
-
|
|
13310
|
-
.ncl-version-configuration-runtime-attributes {
|
|
13311
|
-
.row:not(.info-row) {
|
|
13312
|
-
display: flex;
|
|
13313
|
-
justify-content: space-between;
|
|
13314
|
-
|
|
13315
|
-
&:not(:last-child) {
|
|
13316
|
-
margin-top: 10px;
|
|
13317
|
-
margin-bottom: 25px;
|
|
13318
|
-
}
|
|
13319
|
-
|
|
13320
|
-
> div {
|
|
13321
|
-
flex: 0.65;
|
|
13322
13288
|
|
|
13323
|
-
|
|
13324
|
-
|
|
13289
|
+
.date {
|
|
13290
|
+
display: inline-block;
|
|
13291
|
+
width: 230px;
|
|
13292
|
+
font-size: 14px;
|
|
13293
|
+
font-weight: bold;
|
|
13294
|
+
margin-right: 15px;
|
|
13325
13295
|
}
|
|
13326
13296
|
|
|
13327
|
-
|
|
13328
|
-
|
|
13297
|
+
.ncl-icon-parameters {
|
|
13298
|
+
.duskThree(0.64);
|
|
13299
|
+
position: absolute;
|
|
13300
|
+
top: 9px;
|
|
13301
|
+
right: 9px;
|
|
13302
|
+
color: @color;
|
|
13303
|
+
font-size: 14px;
|
|
13329
13304
|
}
|
|
13330
13305
|
}
|
|
13331
|
-
}
|
|
13332
13306
|
|
|
13333
|
-
|
|
13334
|
-
.runtime {
|
|
13335
|
-
height: 36px;
|
|
13336
|
-
border-radius: 2px;
|
|
13337
|
-
padding: 9px 0 0 14px;
|
|
13338
|
-
text-transform: capitalize;
|
|
13339
|
-
font-family: @font-family-sans-serif;
|
|
13307
|
+
.expanded-body {
|
|
13340
13308
|
font-size: 14px;
|
|
13341
|
-
text-align: left;
|
|
13342
13309
|
color: @dusk-three;
|
|
13343
|
-
}
|
|
13344
|
-
|
|
13345
|
-
.textarea-field {
|
|
13346
|
-
height: 177px;
|
|
13347
|
-
resize: none;
|
|
13348
|
-
white-space: pre;
|
|
13349
|
-
overflow-x: auto;
|
|
13350
|
-
}
|
|
13351
|
-
}
|
|
13352
|
-
|
|
13353
|
-
.java-attribute {
|
|
13354
|
-
.textarea-field {
|
|
13355
|
-
height: 70px;
|
|
13356
|
-
overflow-y: auto;
|
|
13357
|
-
}
|
|
13358
|
-
}
|
|
13359
|
-
}
|
|
13360
13310
|
|
|
13361
|
-
.
|
|
13362
|
-
|
|
13363
|
-
|
|
13364
|
-
|
|
13365
|
-
|
|
13366
|
-
|
|
13311
|
+
.error {
|
|
13312
|
+
width: 71%;
|
|
13313
|
+
border-radius: 3px;
|
|
13314
|
+
background-color: #fbe5e8;
|
|
13315
|
+
border: solid 1px @darkish-pink;
|
|
13316
|
+
color: @darkish-pink;
|
|
13317
|
+
word-wrap: break-word;
|
|
13318
|
+
margin-left: 62px;
|
|
13319
|
+
padding: 12px;
|
|
13320
|
+
margin-bottom: 16px;
|
|
13321
|
+
}
|
|
13367
13322
|
|
|
13368
|
-
.
|
|
13369
|
-
|
|
13370
|
-
|
|
13371
|
-
|
|
13372
|
-
|
|
13373
|
-
height: 46px;
|
|
13323
|
+
.message {
|
|
13324
|
+
display: inline-block;
|
|
13325
|
+
width: 70%;
|
|
13326
|
+
word-wrap: break-word;
|
|
13327
|
+
margin: 0 0 16px 62px;
|
|
13374
13328
|
}
|
|
13375
13329
|
|
|
13376
|
-
|
|
13377
|
-
|
|
13330
|
+
.parameters {
|
|
13331
|
+
padding: 0 62px 16px;
|
|
13378
13332
|
|
|
13379
|
-
.
|
|
13380
|
-
|
|
13381
|
-
padding-left: 0;
|
|
13333
|
+
.parameters-header {
|
|
13334
|
+
font-weight: bold;
|
|
13382
13335
|
}
|
|
13383
13336
|
|
|
13384
|
-
|
|
13385
|
-
|
|
13386
|
-
|
|
13337
|
+
> div {
|
|
13338
|
+
display: flex;
|
|
13339
|
+
line-height: 2;
|
|
13387
13340
|
|
|
13388
|
-
|
|
13389
|
-
|
|
13341
|
+
.labels {
|
|
13342
|
+
color: @greyish-purple;
|
|
13343
|
+
font-size: 14px;
|
|
13344
|
+
width: 30%;
|
|
13345
|
+
}
|
|
13346
|
+
|
|
13347
|
+
.values {
|
|
13348
|
+
color: @dusk-three;
|
|
13349
|
+
font-size: 14px;
|
|
13350
|
+
width: 70%;
|
|
13351
|
+
}
|
|
13390
13352
|
}
|
|
13391
13353
|
}
|
|
13392
13354
|
}
|
|
13355
|
+
}
|
|
13393
13356
|
|
|
13394
|
-
|
|
13395
|
-
|
|
13396
|
-
|
|
13397
|
-
|
|
13398
|
-
|
|
13399
|
-
|
|
13357
|
+
.no-logs {
|
|
13358
|
+
margin: 10px auto 0;
|
|
13359
|
+
font-size: 14px;
|
|
13360
|
+
color: @pale-grey;
|
|
13361
|
+
text-align: center;
|
|
13362
|
+
}
|
|
13363
|
+
}
|
|
13364
|
+
.ncl-test-events-navigation-tabs {
|
|
13365
|
+
display: flex;
|
|
13366
|
+
background: #f8f8fb;
|
|
13367
|
+
height: 40px;
|
|
13368
|
+
border-top: 1px solid @pale-grey;
|
|
13369
|
+
border-bottom: 1px solid @pale-grey;
|
|
13400
13370
|
|
|
13401
|
-
|
|
13402
|
-
|
|
13403
|
-
|
|
13371
|
+
.test-events-navigation-tab {
|
|
13372
|
+
.duskThree(0.64);
|
|
13373
|
+
position: relative;
|
|
13374
|
+
float: left;
|
|
13375
|
+
height: 27px;
|
|
13376
|
+
padding: 10px 40px 0;
|
|
13377
|
+
font-family: @font-family-sans-serif;
|
|
13378
|
+
color: @color;
|
|
13379
|
+
font-size: 13px;
|
|
13380
|
+
text-align: center;
|
|
13381
|
+
cursor: pointer;
|
|
13382
|
+
border-bottom: none;
|
|
13383
|
+
box-sizing: content-box;
|
|
13404
13384
|
|
|
13405
|
-
|
|
13406
|
-
|
|
13407
|
-
|
|
13385
|
+
&.active, &.active:hover {
|
|
13386
|
+
background: none;
|
|
13387
|
+
color: @dusk-three;
|
|
13388
|
+
border-bottom: 2px solid @dusk-three;
|
|
13389
|
+
font-weight: bold;
|
|
13390
|
+
|
|
13391
|
+
.badge {
|
|
13392
|
+
color: @white;
|
|
13393
|
+
background-color: @light-grey-blue;
|
|
13408
13394
|
}
|
|
13395
|
+
}
|
|
13409
13396
|
|
|
13410
|
-
|
|
13411
|
-
|
|
13412
|
-
|
|
13413
|
-
|
|
13414
|
-
|
|
13397
|
+
.badge {
|
|
13398
|
+
display: inline-block;
|
|
13399
|
+
min-width: 22px;
|
|
13400
|
+
padding: 3px 7px;
|
|
13401
|
+
font-size: 12px;
|
|
13402
|
+
font-weight: 500;
|
|
13403
|
+
color: @greyish-purple;
|
|
13404
|
+
line-height: 1;
|
|
13405
|
+
vertical-align: middle;
|
|
13406
|
+
white-space: nowrap;
|
|
13407
|
+
text-align: center;
|
|
13408
|
+
background-color: @pale-grey;
|
|
13409
|
+
border-radius: 7.5px;
|
|
13410
|
+
margin-left: 7px;
|
|
13411
|
+
margin-top: -4px;
|
|
13412
|
+
}
|
|
13413
|
+
}
|
|
13415
13414
|
|
|
13416
|
-
|
|
13417
|
-
|
|
13418
|
-
|
|
13419
|
-
|
|
13420
|
-
|
|
13415
|
+
.default-dropdown {
|
|
13416
|
+
float: left;
|
|
13417
|
+
width: 105px;
|
|
13418
|
+
|
|
13419
|
+
.default-dropdown-field:not(:hover) {
|
|
13420
|
+
border-color: transparent;
|
|
13421
|
+
}
|
|
13422
|
+
|
|
13423
|
+
.default-dropdown-container {
|
|
13424
|
+
z-index: 3;
|
|
13421
13425
|
}
|
|
13422
13426
|
}
|
|
13423
13427
|
}
|