From 4b8d12832b3f5c6c9d3ca8bd003a8c0cb8fd8aea Mon Sep 17 00:00:00 2001 From: Rodrigo Boratto Date: Mon, 7 Dec 2015 13:53:28 -0200 Subject: [PATCH] Fix a problem with border inside table Fixing a problem where the border isn't showing when the element is inside a table. --- scss/control.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scss/control.scss b/scss/control.scss index 714c4c642e..c9676bc9cc 100644 --- a/scss/control.scss +++ b/scss/control.scss @@ -39,6 +39,8 @@ color: $select-text-color; cursor: default; display: table; + border-spacing: 0; + border-collapse: separate; height: $select-input-height; outline: none; overflow: hidden;