@bpmn-io/form-js-carbon-styles 1.12.0 → 1.13.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/package.json +3 -3
- package/src/carbon-styles.scss +21 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bpmn-io/form-js-carbon-styles",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.13.1",
|
|
4
4
|
"description": "Custom carbon styles for form-js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"all": "run-s test",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"url": "https://github.com/bpmn-io"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
|
-
"@bpmn-io/form-js-viewer": "^1.
|
|
21
|
+
"@bpmn-io/form-js-viewer": "^1.13.1",
|
|
22
22
|
"@carbon/elements": "^11.56.0",
|
|
23
23
|
"styled-components": "^6.1.13"
|
|
24
24
|
},
|
|
25
25
|
"files": [
|
|
26
26
|
"src"
|
|
27
27
|
],
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "bc8a9709133f283c7152ea62331bf2ff5cca0251"
|
|
29
29
|
}
|
package/src/carbon-styles.scss
CHANGED
|
@@ -1395,3 +1395,24 @@
|
|
|
1395
1395
|
}
|
|
1396
1396
|
}
|
|
1397
1397
|
}
|
|
1398
|
+
|
|
1399
|
+
// Document preview ////////////
|
|
1400
|
+
|
|
1401
|
+
.fjs-container .fjs-form-field-documentPreview {
|
|
1402
|
+
.fjs-documentPreview-single-document-container {
|
|
1403
|
+
border-radius: 0;
|
|
1404
|
+
}
|
|
1405
|
+
|
|
1406
|
+
.fjs-documentPreview-download-button {
|
|
1407
|
+
border-radius: 0;
|
|
1408
|
+
background-color: var(--cds-background);
|
|
1409
|
+
border-color: var(--cds-button-tertiary);
|
|
1410
|
+
color: var(--cds-button-tertiary);
|
|
1411
|
+
cursor: pointer;
|
|
1412
|
+
|
|
1413
|
+
&:focus {
|
|
1414
|
+
outline: 2px solid var(--cds-focus);
|
|
1415
|
+
outline-offset: -2px;
|
|
1416
|
+
}
|
|
1417
|
+
}
|
|
1418
|
+
}
|