--- a/shared/src/main/scala/purecss/generic/PureTable.scala Thu Dec 14 15:32:50 2017 +0100
+++ b/shared/src/main/scala/purecss/generic/PureTable.scala Fri Jan 19 11:13:53 2018 +0100
@@ -1,5 +1,5 @@
/*
- * Copyright 2017 Tomas Zeman <tzeman@volny.cz>
+ * Copyright 2017-2018 Tomas Zeman <tzeman@volny.cz>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -17,7 +17,7 @@
import scala.language.{implicitConversions, postfixOps}
-trait PureTable[B, O <: F, F] extends Component[B, O, F] {
+trait PureTable[B, O <: F, F] extends PureCssComponent[B, O, F] {
import bundle.all._
@@ -29,7 +29,7 @@
implicit def tbl2cls(t: Table): C = t.toCls
implicit def tbl2mod(t: Table): Modifier = t.toCls.apply()
- case class Table(opt: Option[C] = None) extends Element {
+ case class Table(opt: Option[C] = None) extends PureCssElement {
def bordered: Table = copy(opt = Some(pure_table_bordered))
def horizontal: Table = copy(opt = Some(pure_table_horizontal))
def striped: Table = copy(opt = Some(pure_table_striped))