All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.woojiahao.style.elements.table.TableHeader.kt Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.github.woojiahao.style.elements.table

import com.github.woojiahao.style.css.CssProperty
import com.github.woojiahao.style.elements.Element
import com.github.woojiahao.style.utility.Border
import com.github.woojiahao.style.utility.Border.BorderStyle.SOLID
import com.github.woojiahao.style.utility.BorderBox
import com.github.woojiahao.style.utility.Box
import com.github.woojiahao.style.utility.px
import com.github.woojiahao.utility.c
import java.awt.Color

class TableHeader : Element("th") {
  init {
    val border by CssProperty(
      BorderBox(Border(1.0.px, SOLID, Color.BLACK)),
      BorderBox(Border(1.0.px, SOLID, c("EE")))
    )
    this.border = border

    fontWeight = FontWeight.BOLD
    padding = Box(5.0.px)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy