profoundjs 7.19.1 → 7.20.1
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/htdocs/profoundui/proddata/css/profoundui.css +128 -2
- package/htdocs/profoundui/proddata/images/1920x1080.png +0 -0
- package/htdocs/profoundui/proddata/js/designer.js +3957 -3950
- package/htdocs/profoundui/proddata/js/genie.js +2456 -2434
- package/htdocs/profoundui/proddata/js/runtime.js +1579 -1575
- package/package.json +1 -1
- package/profound.jse +1 -1
- package/setup/pjsdist.savf +0 -0
|
@@ -17865,7 +17865,6 @@ mark.pui-error-screen-highlighted-line {
|
|
|
17865
17865
|
white-space: nowrap;
|
|
17866
17866
|
overflow: hidden;
|
|
17867
17867
|
width: 100%;
|
|
17868
|
-
height: 32px;
|
|
17869
17868
|
}
|
|
17870
17869
|
|
|
17871
17870
|
.pui-auto-testing-step-name:focus {
|
|
@@ -17898,7 +17897,6 @@ mark.pui-error-screen-highlighted-line {
|
|
|
17898
17897
|
/* Content Area */
|
|
17899
17898
|
.pui-auto-testing-content {
|
|
17900
17899
|
flex: 1;
|
|
17901
|
-
overflow: auto;
|
|
17902
17900
|
position: relative;
|
|
17903
17901
|
}
|
|
17904
17902
|
|
|
@@ -18203,3 +18201,131 @@ table.auto-testing-user-input tr:hover, table.auto-testing-results tr:hover, tab
|
|
|
18203
18201
|
width: 20px;
|
|
18204
18202
|
text-align: right;
|
|
18205
18203
|
}
|
|
18204
|
+
|
|
18205
|
+
/* CSS for the floating draggable annotation toolbar */
|
|
18206
|
+
.pui-auto-testing-annotation-toolbar {
|
|
18207
|
+
position: absolute;
|
|
18208
|
+
top: 75px; /* Initial position */
|
|
18209
|
+
left: 275px; /* Initial position */
|
|
18210
|
+
background-color: #f0f0f0;
|
|
18211
|
+
border: 1px solid #ccc;
|
|
18212
|
+
border-radius: 5px;
|
|
18213
|
+
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
|
|
18214
|
+
z-index: 1001; /* Ensure it's above most other content */
|
|
18215
|
+
display: none; /* Initially hidden */
|
|
18216
|
+
flex-direction: column; /* Stack handle and tools vertically */
|
|
18217
|
+
padding: 5px;
|
|
18218
|
+
width: 160px;
|
|
18219
|
+
}
|
|
18220
|
+
|
|
18221
|
+
.pui-annotation-toolbar-handle {
|
|
18222
|
+
cursor: grab; /* Indicate draggability */
|
|
18223
|
+
background-color: #e0e0e0;
|
|
18224
|
+
padding: 5px 8px;
|
|
18225
|
+
border-bottom: 1px solid #ccc;
|
|
18226
|
+
border-radius: 4px 4px 0 0; /* Rounded top corners */
|
|
18227
|
+
text-align: center;
|
|
18228
|
+
font-size: 0.9em;
|
|
18229
|
+
font-weight: bold;
|
|
18230
|
+
color: #555;
|
|
18231
|
+
user-select: none; /* Prevent text selection on the handle */
|
|
18232
|
+
}
|
|
18233
|
+
|
|
18234
|
+
.pui-annotation-toolbar-handle:active {
|
|
18235
|
+
cursor: grabbing;
|
|
18236
|
+
}
|
|
18237
|
+
|
|
18238
|
+
.pui-annotation-toolbar-tools {
|
|
18239
|
+
display: flex; /* Arrange tools horizontally */
|
|
18240
|
+
flex-wrap: wrap; /* Allow wrapping if space is limited */
|
|
18241
|
+
padding: 5px 0 0 0; /* Space below the handle */
|
|
18242
|
+
justify-content: center; /* Center tools */
|
|
18243
|
+
}
|
|
18244
|
+
|
|
18245
|
+
.pui-annotation-tool-button {
|
|
18246
|
+
cursor: pointer;
|
|
18247
|
+
padding: 6px 8px;
|
|
18248
|
+
margin: 2px;
|
|
18249
|
+
border: 1px solid transparent;
|
|
18250
|
+
border-radius: 3px;
|
|
18251
|
+
font-size: 1.1em; /* Slightly larger icons */
|
|
18252
|
+
color: #333;
|
|
18253
|
+
background-color: #fff;
|
|
18254
|
+
box-shadow: 1px 1px 3px rgba(0,0,0,0.1);
|
|
18255
|
+
transition: background-color 0.2s, border-color 0.2s, opacity 0.2s;
|
|
18256
|
+
}
|
|
18257
|
+
|
|
18258
|
+
.pui-annotation-tool-button:hover {
|
|
18259
|
+
background-color: #eee;
|
|
18260
|
+
border-color: #bbb;
|
|
18261
|
+
}
|
|
18262
|
+
|
|
18263
|
+
.pui-annotation-tool-button:active {
|
|
18264
|
+
background-color: #ddd;
|
|
18265
|
+
box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2);
|
|
18266
|
+
}
|
|
18267
|
+
|
|
18268
|
+
/* Style for the active annotation toggle button in the header */
|
|
18269
|
+
.pui-auto-testing-action-button.pui-active {
|
|
18270
|
+
border-bottom: 2px solid #fff;
|
|
18271
|
+
border-radius: 0px 0px 0px 0px;
|
|
18272
|
+
}
|
|
18273
|
+
|
|
18274
|
+
.pui-auto-testing-annotation-icon {
|
|
18275
|
+
margin-left: 5px;
|
|
18276
|
+
font-size: 0.8em;
|
|
18277
|
+
position: relative;
|
|
18278
|
+
display: inline-block;
|
|
18279
|
+
vertical-align: middle;
|
|
18280
|
+
}
|
|
18281
|
+
|
|
18282
|
+
.pui-auto-testing-annotation-icon.pui-annotations-exist {
|
|
18283
|
+
color: #007bff;
|
|
18284
|
+
}
|
|
18285
|
+
.pui-auto-testing-annotation-icon.pui-annotations-dirty {
|
|
18286
|
+
color: #007bff;
|
|
18287
|
+
}
|
|
18288
|
+
|
|
18289
|
+
/* Add bullet using a pseudo-element */
|
|
18290
|
+
.pui-auto-testing-annotation-icon.pui-annotations-dirty::after {
|
|
18291
|
+
content: '*';
|
|
18292
|
+
position: absolute;
|
|
18293
|
+
top: -0.6em;
|
|
18294
|
+
right: -0.4em;
|
|
18295
|
+
font-weight: bold;
|
|
18296
|
+
font-size: 1.5em; /* Relative to the icon's font-size */
|
|
18297
|
+
color: #f47b20;
|
|
18298
|
+
line-height: 1;
|
|
18299
|
+
}
|
|
18300
|
+
|
|
18301
|
+
.pui-auto-testing-annotation-container {
|
|
18302
|
+
position: absolute;
|
|
18303
|
+
top: 0px;
|
|
18304
|
+
left: 0px;
|
|
18305
|
+
width: 1920px;
|
|
18306
|
+
height: 1080px;
|
|
18307
|
+
}
|
|
18308
|
+
|
|
18309
|
+
mjs-marker-area {
|
|
18310
|
+
z-index: 99;
|
|
18311
|
+
}
|
|
18312
|
+
|
|
18313
|
+
/* Style for the active tool button */
|
|
18314
|
+
.pui-annotation-tool-button.active {
|
|
18315
|
+
background-color: #cce5ff; /* Light blue background */
|
|
18316
|
+
border-color: #007bff; /* Blue border */
|
|
18317
|
+
}
|
|
18318
|
+
|
|
18319
|
+
/* Style for disabled buttons (Undo, Redo, Save) */
|
|
18320
|
+
.pui-annotation-tool-button.disabled {
|
|
18321
|
+
opacity: 0.5;
|
|
18322
|
+
cursor: not-allowed;
|
|
18323
|
+
background-color: #eee; /* Slightly grayer background */
|
|
18324
|
+
border-color: transparent;
|
|
18325
|
+
box-shadow: none;
|
|
18326
|
+
}
|
|
18327
|
+
|
|
18328
|
+
.pui-annotation-tool-button.disabled:hover {
|
|
18329
|
+
background-color: #eee; /* Keep background the same on hover */
|
|
18330
|
+
border-color: transparent;
|
|
18331
|
+
}
|
|
Binary file
|