Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions component/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,48 +24,54 @@
<parent>
<groupId>com.celements</groupId>
<artifactId>celements</artifactId>
<version>6.6</version>
<version>7.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>celements-structuredDataEditor</artifactId>
<version>6.5-SNAPSHOT</version>
<version>7.0-SNAPSHOT</version>
<description>Celements structured data editor</description>
<dependencies>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-model</artifactId>
<version>6.6</version>
<version>7.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-core</artifactId>
<version>6.14</version>
<version>7.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-search</artifactId>
<version>6.3</version>
<version>7.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-tag</artifactId>
<version>6.5</version>
<version>7.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-scheduler</artifactId>
<version>7.0-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<!-- test dependencies -->
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-layout</artifactId>
<version>6.4</version>
<version>7.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-spring-security</artifactId>
<version>6.0</version>
<version>7.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
17 changes: 13 additions & 4 deletions web-module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@
<parent>
<groupId>com.celements</groupId>
<artifactId>celementsweb</artifactId>
<version>6.2</version>
<version>7.0-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>structuredDataEditor-web</artifactId>
<packaging>war</packaging>
<name>Celements Structured Data Editor Web-Module</name>
<version>6.9-SNAPSHOT</version>
<version>7.0-SNAPSHOT</version>
<description> </description>
<licenses>
<license>
Expand All @@ -51,15 +51,24 @@
<dependency>
<groupId>com.celements</groupId>
<artifactId>celements-structuredDataEditor</artifactId>
<version>6.5-SNAPSHOT</version>
<version>7.0-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<finalName>structuredDataEditor-web</finalName>
<plugins>
<plugin>
<groupId>com.jarslab.maven</groupId>
<artifactId>babel-maven-plugin</artifactId>
<artifactId>babel-maven-plugin</artifactId>
<executions>
<execution>
<id>js-transpile</id>
<configuration>
<babelSrc>${project.basedir}/babel-jslib/babel.min.js</babelSrc>
<targetDir>${project.basedir}/target/${project.build.finalName}/resources/</targetDir>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
input {
box-sizing: border-box;
border: 1px solid #9fb0cd;
border: 1px solid #ccc;
box-shadow: none;
border-radius: 0px;
padding: 0px 3px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ ul.struct_object > li.cel-data-removing {
}

.struct_table.border ul.struct_table_data li.struct_table_row {
border-color: #888;
border-color: #ccc;
border-top: 1px solid;
border-right: 1px solid;
border-left: 1px solid;
Expand Down Expand Up @@ -114,7 +114,7 @@ ul.struct_object > li.cel-data-removing {

.struct_table.border ul.struct_table_data .struct_table_cell.edit,
.struct_table.border ul.struct_table_data .struct_table_cell.delete {
border-color: #888;
border-color: #ccc;
border-left: 1px solid;
}

Expand Down Expand Up @@ -220,7 +220,7 @@ ul.struct_object > li.cel-data-removing {
.select2-container .cel_button .view_cel_buttonLink {
float: none;
width: 170px;
border: 1px solid #9fb0cd;
border: 1px solid #ccc;
margin-right: 5px;
margin-bottom: 5px;
padding: 3px;
Expand Down