Skip to content
This repository has been archived by the owner on Aug 10, 2024. It is now read-only.

Commit

Permalink
add some new semantic UI classes
Browse files Browse the repository at this point in the history
  • Loading branch information
sanity committed Jul 2, 2017
1 parent c137dbe commit d42e321
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

group 'io.kweb'
version '0.2.4'
version '0.2.5'

apply plugin: 'java'
apply plugin: 'kotlin'
Expand Down
21 changes: 21 additions & 0 deletions src/main/kotlin/io/kweb/plugins/semanticUI/SemanticUIClasses.kt
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,11 @@ class SemanticUIClasses : AttributeBuilder() {
return this
}

val cinema : SemanticUIClasses get() {
classes("cinema")
return this
}

val circle : SemanticUIClasses get() {
classes("circle")
return this
Expand Down Expand Up @@ -138,6 +143,11 @@ class SemanticUIClasses : AttributeBuilder() {
return this
}

val divided : SemanticUIClasses get() {
classes("divided")
return this
}

val divider : SemanticUIClasses get() {
classes("divider")
return this
Expand Down Expand Up @@ -303,11 +313,17 @@ class SemanticUIClasses : AttributeBuilder() {
return this
}


val message : SemanticUIClasses get() {
classes("message")
return this
}

val meta : SemanticUIClasses get() {
classes("meta")
return this
}

val minus : SemanticUIClasses get() {
classes("minus")
return this
Expand Down Expand Up @@ -355,6 +371,11 @@ class SemanticUIClasses : AttributeBuilder() {
return this
}

val primary : SemanticUIClasses get() {
classes("primary")
return this
}

val raised : SemanticUIClasses get() {
classes("raised")
return this
Expand Down

0 comments on commit d42e321

Please sign in to comment.