From 05274c89327bb29162882657895ccea28105aad7 Mon Sep 17 00:00:00 2001 From: reuben453 Date: Sun, 14 May 2017 00:41:39 +0530 Subject: [PATCH] Add comment to css * Explains css to hide dt elements inside dl elements used for Foundation horizontal tabs --- stylesheets/tessel.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stylesheets/tessel.scss b/stylesheets/tessel.scss index 7fe6adf..041dd40 100644 --- a/stylesheets/tessel.scss +++ b/stylesheets/tessel.scss @@ -13,6 +13,10 @@ body { text-align: center; background: #008cba; } + /* + Hide any dt elements inside dl elements when the dl elements are being + used to create Foundation horizontal tabs + */ dl.tabs[data-tab] > dt { display: none; }