profoundjs 7.1.1 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1274,6 +1274,9 @@ button.pui-wf-elements-button:hover {
1274
1274
  div.pui-wf-action[plugin-categ=client-side] {
1275
1275
  border: 1px solid #86c1eb;
1276
1276
  font-weight: normal;
1277
+ /* Default client-side color should be dark to stand out. */
1278
+ background-color: #0E68B7;
1279
+ color: #FFFFFF;
1277
1280
  }
1278
1281
 
1279
1282
  div.pui-wf-action[plugin-name=terminate-routine],
@@ -1317,6 +1320,58 @@ div.pui-wf-disabled div.pui-wf-action-text {
1317
1320
  text-decoration: line-through;
1318
1321
  }
1319
1322
 
1323
+ /* Color of low-code step; the extra specificity allows the rule to take precedent over another rule
1324
+ using an attribute selector.*/
1325
+ div.pui-wf-action-bg-red, div.pui-wf-action-bg-red[plugin-categ] {
1326
+ background-color: #C52A00;
1327
+ color: #FFFFFF;
1328
+ }
1329
+ div.pui-wf-action-bg-blue, div.pui-wf-action-bg-blue[plugin-categ] {
1330
+ background-color: #0E68B7;
1331
+ color: #FFFFFF;
1332
+ }
1333
+ div.pui-wf-action-bg-orange, div.pui-wf-action-bg-orange[plugin-categ] {
1334
+ background-color: #F37820;
1335
+ color: #FFFFFF;
1336
+ }
1337
+ div.pui-wf-action-bg-green, div.pui-wf-action-bg-green[plugin-categ] {
1338
+ background-color: #075433;
1339
+ color: #FFFFFF;
1340
+ }
1341
+ div.pui-wf-action-bg-yellow, div.pui-wf-action-bg-yellow[plugin-categ] {
1342
+ background-color: #957F14;
1343
+ color: #FFFFFF;
1344
+ }
1345
+ div.pui-wf-action-bg-purple, div.pui-wf-action-bg-purple[plugin-categ] {
1346
+ background-color: #7570B3;
1347
+ color: #FFFFFF;
1348
+ }
1349
+ div.pui-wf-action-bg-white, div.pui-wf-action-bg-white[plugin-categ] {
1350
+ background-color: #FCFCFC;
1351
+ color: #86c1eb;
1352
+ }
1353
+ div.pui-wf-action-bg-gray, div.pui-wf-action-bg-gray[plugin-categ] {
1354
+ background-color: #6B6D72;
1355
+ color: #FFFFFF;
1356
+ }
1357
+ div.pui-wf-action-bg-black, div.pui-wf-action-bg-black[plugin-categ] {
1358
+ background-color: #393A3D;
1359
+ color: #FFFFFF;
1360
+ }
1361
+
1362
+ div.pui-wf-action-color-icon {
1363
+ border-radius: 16px;
1364
+ border: none;
1365
+ width: 16px;
1366
+ height: 16px;
1367
+ margin-left: 4px;
1368
+ box-sizing: border-box;
1369
+ }
1370
+
1371
+ div.pui-wf-action-color-icon.pui-wf-action-bg-white {
1372
+ border: solid 1px #333333;
1373
+ }
1374
+
1320
1375
  div.pui-wf-mask {
1321
1376
  position: absolute;
1322
1377
  top: 0;