Skip to content

Commit df46958

Browse files
authored
Merge pull request #154 from 2sic/develop
15.01
2 parents 33e9ce7 + bfbfff6 commit df46958

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
{
22
"name": "2sxc-ui",
3-
"version": "15.00.00",
3+
"version": "15.01.00",
44
"description": "2sxc UI - the JS UI of 2sxc",
55
"scripts": {
6-
"release-all": "npm run js2sxc && npm run inpage && npm run snippets && npm run quickdialog && npm run turn-on",
6+
"release-all": "npm run js2sxc && npm run inpage && npm run snippets && npm run quickdialog && npm run turn-on && npm run cms-wysiwyg",
77
"js2sxc": "cd projects/$2sxc && npm run release && cd ../..",
88
"inpage": "cd projects/inpage && npm run release && cd ../..",
99
"snippets": "cd projects/code-editor-snippets && npm run gulp && cd ../..",
1010
"quickdialog": "cd projects/quick-dialog && npm run release && cd ../..",
1111
"doc-dnn-sxc-angular": "cd projects/dnn-sxc-angular/ && typedoc --tsconfig projects/dnn-sxc-angular && cd ../..",
12-
"turn-on": "robocopy projects/turnOn/dist/ %Dev2sxcAssets%/dist/turnOn && robocopy projects/turnOn/dist/ %Dev2sxcDnnRoot%/DesktopModules/ToSIC_SexyContent/dist/turnOn"
12+
"turn-on": "robocopy projects/turnOn/dist/ %Dev2sxcAssets%/dist/turnOn && robocopy projects/turnOn/dist/ %Dev2sxcDnnRoot%/DesktopModules/ToSIC_SexyContent/dist/turnOn",
13+
"cms-wysiwyg": "robocopy projects/cms/dist/ %Dev2sxcAssets%/dist/cms && robocopy projects/cms/dist/ %Dev2sxcDnnRoot%/DesktopModules/ToSIC_SexyContent/dist/cms"
1314
},
1415
"repository": {
1516
"type": "git",

projects/cms/dist/wysiwyg.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/* Make sure the special HR clear-fixes the layout */
2+
hr.wysiwyg-division {
3+
display: block;
4+
width: 100%;
5+
height: 0;
6+
}
7+
8+
img.wysiwyg-right {
9+
float: right;
10+
margin-left: 20px;
11+
}
12+
13+
img.wysiwyg-left {
14+
float: left;
15+
margin-right: 20px;
16+
}
17+
18+
img.wysiwyg-center {
19+
margin-left: auto;
20+
margin-right: auto;
21+
}
22+
23+
img.wysiwyg-1of2 {
24+
width: 50%;
25+
}
26+
27+
img.wysiwyg-1of3 {
28+
width: 33%;
29+
}
30+
img.wysiwyg-2of3 {
31+
width: 66%;
32+
}
33+
img.wysiwyg-1of4 {
34+
width: 25%;
35+
}
36+
img.wysiwyg-3of4 {
37+
width: 75%;
38+
}

projects/cms/readme.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# CMS files
2+
3+
These are runtime files for the CMS.
4+
5+
As of 2023-01 it's just CSS for the wysiwyg,
6+
but in the future it may contain other files.

0 commit comments

Comments
 (0)