diff --git a/css/shiny.css b/css/shiny.css index 2021ace4057453f649161c573dad10be8be074fb..017cc41a8c528a3491807f801a8bbc6ea03d0ee6 100644 --- a/css/shiny.css +++ b/css/shiny.css @@ -760,6 +760,13 @@ table td { table.sticky-header { z-index: 99; + border-bottom: 0; + -moz-box-shadow: 0 1px 1px #bebfb9; + -webkit-box-shadow: 0 1px 1px #bebfb9; + box-shadow: 0 1px 1px #bebfb9; +} +table.sticky-header th { + border-bottom: 0; } form .field-multiple-table { diff --git a/scss/shiny.scss b/scss/shiny.scss index 37c2936fc6c221413499d2ce1faae7df88a318ac..5fb243b02a42e890c113e5a405230a3ecae37f1a 100644 --- a/scss/shiny.scss +++ b/scss/shiny.scss @@ -565,6 +565,13 @@ table td { } table.sticky-header { z-index: 99; + border-bottom: 0; + -moz-box-shadow: 0 1px 1px #bebfb9; + -webkit-box-shadow: 0 1px 1px #bebfb9; + box-shadow: 0 1px 1px #bebfb9; + th { + border-bottom: 0; + } } form .field-multiple-table { margin-bottom: 10px;