Skip to content

Commit 3516c4b

Browse files
committed
initial
0 parents  commit 3516c4b

File tree

163 files changed

+4911
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+4911
-0
lines changed

.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/compiler.xml

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jarRepositories.xml

Lines changed: 25 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pom.xml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!--
2+
~ Copyright 2016 Red Hat, Inc. and/or its affiliates
3+
~ and other contributors as indicated by the @author tags.
4+
~
5+
~ Licensed under the Apache License, Version 2.0 (the "License");
6+
~ you may not use this file except in compliance with the License.
7+
~ You may obtain a copy of the License at
8+
~
9+
~ http://www.apache.org/licenses/LICENSE-2.0
10+
~
11+
~ Unless required by applicable law or agreed to in writing, software
12+
~ distributed under the License is distributed on an "AS IS" BASIS,
13+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
~ See the License for the specific language governing permissions and
15+
~ limitations under the License.
16+
-->
17+
18+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
20+
21+
<groupId>com.nimbit.keycloak</groupId>
22+
<artifactId>keycloak-theme</artifactId>
23+
<version>1.0-SNAPSHOT</version>
24+
<packaging>jar</packaging>
25+
26+
27+
<name>Nimbit themes</name>
28+
<description>Nimbit keycloak themes</description>
29+
<modelVersion>4.0.0</modelVersion>
30+
31+
32+
<build>
33+
<finalName>nimbit-keycloak-themes</finalName>
34+
</build>
35+
</project>
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"themes": [
3+
{
4+
"name": "keywind",
5+
"types": [
6+
"login"
7+
]
8+
},
9+
{
10+
"name": "nimbit",
11+
"types": [
12+
"login"
13+
]
14+
}
15+
]
16+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<#macro kw component="span" rest...>
2+
<${component}
3+
class="absolute left-0 ml-3 text-lg"
4+
<#list rest as attrName, attrValue>
5+
${attrName}="${attrValue}"
6+
</#list>
7+
>
8+
<#nested>
9+
</${component}>
10+
</#macro>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<#macro kw component="button" rest...>
2+
<${component}
3+
class="bg-primary-600 flex justify-center px-4 py-2 relative rounded-lg text-sm text-white w-full focus:outline-none focus:ring-2 focus:ring-primary-600 focus:ring-offset-2 hover:bg-primary-700"
4+
<#list rest as attrName, attrValue>
5+
${attrName}="${attrValue}"
6+
</#list>
7+
>
8+
<#nested>
9+
</${component}>
10+
</#macro>

0 commit comments

Comments
 (0)