From cf5e4b4da25d3a7ec284738bf328353f0f0f6bff Mon Sep 17 00:00:00 2001 From: jlukic Date: Fri, 12 Dec 2014 17:01:33 -0500 Subject: [PATCH] Fix responsive sizing of definition table #1428 --- src/definitions/collections/table.less | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/definitions/collections/table.less b/src/definitions/collections/table.less index 6731a526d..c3ecc6877 100755 --- a/src/definitions/collections/table.less +++ b/src/definitions/collections/table.less @@ -143,7 +143,7 @@ /* Responsive */ -@media only screen and (max-width : 768px) { +@media only screen and (max-width : @largestMobileScreen) { .ui.table { display: block; padding: 0em; @@ -189,6 +189,20 @@ .ui.table tr > td.negative { background-color: @responsiveStatusColor !important; } + + /* Definition Table */ + .ui.definition.table thead th:first-child { + box-shadow: none !important; + } + + .ui.definition.table tr td:first-child { + padding-bottom: @responsiveRowVerticalPadding; + } + .ui.definition.table tr td:nth-child(n+2) { + padding-top: @responsiveRowVerticalPadding; + } + + }