summaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/chameleon
diff options
context:
space:
mode:
authorHenri Sara <henri.sara@itmill.com>2011-07-29 12:55:12 +0000
committerHenri Sara <henri.sara@itmill.com>2011-07-29 12:55:12 +0000
commitf2e58e4aa59fbe082e4e7ac1867f06c4b8e1e511 (patch)
tree934decd175550a13d8c09d59718ca929e16a0ff7 /WebContent/VAADIN/themes/chameleon
parent5c6aa674102a39af0388d6494c752c1cba4a11e1 (diff)
downloadvaadin-framework-f2e58e4aa59fbe082e4e7ac1867f06c4b8e1e511.tar.gz
vaadin-framework-f2e58e4aa59fbe082e4e7ac1867f06c4b8e1e511.zip
#7053 copy two icons from reindeer to chameleon
svn changeset:20027/svn branch:6.7
Diffstat (limited to 'WebContent/VAADIN/themes/chameleon')
-rw-r--r--WebContent/VAADIN/themes/chameleon/components/table/table.css4
-rw-r--r--WebContent/VAADIN/themes/chameleon/icons/bullet-white.pngbin0 -> 154 bytes
-rw-r--r--WebContent/VAADIN/themes/chameleon/icons/bullet.pngbin0 -> 218 bytes
3 files changed, 2 insertions, 2 deletions
diff --git a/WebContent/VAADIN/themes/chameleon/components/table/table.css b/WebContent/VAADIN/themes/chameleon/components/table/table.css
index 74b9c88223..ae1ada0793 100644
--- a/WebContent/VAADIN/themes/chameleon/components/table/table.css
+++ b/WebContent/VAADIN/themes/chameleon/components/table/table.css
@@ -67,7 +67,7 @@ div.v-table-focus-slot-right {
.v-contextmenu .v-on,
.v-contextmenu .v-off {
display: block;
- background: transparent url(../../../reindeer/common/icons/bullet.png) no-repeat 0 4px;
+ background: transparent url(../../icons/bullet.png) no-repeat 0 4px;
padding-left: 12px;
}
@@ -77,7 +77,7 @@ div.v-table-focus-slot-right {
}
.v-contextmenu .gwt-MenuItem-selected .v-on {
- background-image: url(../../../reindeer/common/icons/bullet-white.png);
+ background-image: url(../../icons/bullet-white.png);
}
.v-table-scrollposition {
diff --git a/WebContent/VAADIN/themes/chameleon/icons/bullet-white.png b/WebContent/VAADIN/themes/chameleon/icons/bullet-white.png
new file mode 100644
index 0000000000..f0a0b1bfba
--- /dev/null
+++ b/WebContent/VAADIN/themes/chameleon/icons/bullet-white.png
Binary files differ
diff --git a/WebContent/VAADIN/themes/chameleon/icons/bullet.png b/WebContent/VAADIN/themes/chameleon/icons/bullet.png
new file mode 100644
index 0000000000..5047f6b27c
--- /dev/null
+++ b/WebContent/VAADIN/themes/chameleon/icons/bullet.png
Binary files differ
"><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar</artifactId> <version>3.4-SNAPSHOT</version> <relativePath>../..</relativePath> </parent> <groupId>org.codehaus.sonar.plugins</groupId> <artifactId>sonar-core-plugin</artifactId> <packaging>sonar-plugin</packaging> <name>Sonar :: Plugins :: Core</name> <dependencies> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-core</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-batch</artifactId> <version>${project.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <scope>provided</scope> </dependency> <!-- unit tests --> <dependency> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-testing-harness</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <testResources> <testResource> <directory>${basedir}/src/main/resources</directory> </testResource> <testResource> <directory>${basedir}/src/test/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-dev-maven-plugin</artifactId> <executions> <execution> <id>trim</id> <phase>process-resources</phase> <goals> <goal>trim</goal> </goals> <configuration> <directory>${project.build.outputDirectory}</directory> <includes> <include>**/*.erb</include> </includes> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.sonar</groupId> <artifactId>sonar-packaging-maven-plugin</artifactId> <configuration> <pluginKey>core</pluginKey> <pluginName>Core</pluginName> <pluginClass>org.sonar.plugins.core.CorePlugin</pluginClass> <pluginDescription> <![CDATA[Provides all common components required to cover all languages.]]></pluginDescription> </configuration> </plugin> </plugins> </build> </project>