summaryrefslogtreecommitdiffstats
path: root/tpl
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2022-03-12 22:30:17 +0100
committerVolpeon <git@volpeon.ink>2022-03-12 22:30:17 +0100
commitd8e9977b1747f1f73a7ed2a3e08c2c11aa2e7fcb (patch)
tree0b2166bcfe1c788c4d9e6ce98a7c8aeae388dc85 /tpl
parentForm item: Add align-self: start override (diff)
downloadiro-design-d8e9977b1747f1f73a7ed2a3e08c2c11aa2e7fcb.tar.gz
iro-design-d8e9977b1747f1f73a7ed2a3e08c2c11aa2e7fcb.tar.bz2
iro-design-d8e9977b1747f1f73a7ed2a3e08c2c11aa2e7fcb.zip
Table: Fixed hover bg, added small size
Diffstat (limited to 'tpl')
-rw-r--r--tpl/index.pug25
-rw-r--r--tpl/objects/table.pug1
2 files changed, 26 insertions, 0 deletions
diff --git a/tpl/index.pug b/tpl/index.pug
index 5c46906..016f6be 100644
--- a/tpl/index.pug
+++ b/tpl/index.pug
@@ -677,4 +677,29 @@ html
677 +table-cell= 'Row 4,2' 677 +table-cell= 'Row 4,2'
678 +table-cell= 'Row 4,3' 678 +table-cell= 'Row 4,3'
679 679
680 +box
681 +table(box=true, size50=true)
682 +table-head
683 +table-row
684 +table-head-cell= 'Title'
685 +table-head-cell= 'Title'
686 +table-head-cell= 'Title'
687 +table-body
688 +table-row
689 +table-cell= 'Row 1,1'
690 +table-cell= 'Row 1,2'
691 +table-cell= 'Row 1,3'
692 +table-row
693 +table-cell= 'Row 2,1'
694 +table-cell= 'Row 2,2'
695 +table-cell= 'Row 2,3'
696 +table-row
697 +table-cell= 'Row 3,1'
698 +table-cell= 'Row 3,2'
699 +table-cell= 'Row 3,3'
700 +table-row
701 +table-cell= 'Row 4,1'
702 +table-cell= 'Row 4,2'
703 +table-cell= 'Row 4,3'
704
680 705
diff --git a/tpl/objects/table.pug b/tpl/objects/table.pug
index 0e1632d..b7ec881 100644
--- a/tpl/objects/table.pug
+++ b/tpl/objects/table.pug
@@ -4,6 +4,7 @@ mixin table
4 'o-table': true, 4 'o-table': true,
5 'o-table--flush': attributes.flush, 5 'o-table--flush': attributes.flush,
6 'o-table--box': attributes.box, 6 'o-table--box': attributes.box,
7 'o-table--50': attributes.size50,
7 } 8 }
8 9
9 table(class=classes) 10 table(class=classes)