From 49ff04424d9e3b7951babb4d3deae49d3b910a95 Mon Sep 17 00:00:00 2001 From: Sam Kim Date: Tue, 23 Oct 2018 16:39:14 -0400 Subject: [PATCH] Generic styling for generic tables --- .../radius-theme/app/customizations.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/app/assets/stylesheets/radius-theme/app/customizations.scss b/app/assets/stylesheets/radius-theme/app/customizations.scss index 59ffcc1..6381e1a 100644 --- a/app/assets/stylesheets/radius-theme/app/customizations.scss +++ b/app/assets/stylesheets/radius-theme/app/customizations.scss @@ -2,3 +2,20 @@ float: none; margin: 0 auto; } + +.table-generic tr td a { + display: block; + text-decoration: none; + color: #656565; + &:hover { + color: #656565; + text-decoration: none; + } +} + +.table.table-hover.table-generic { + th, td { + text-align: center; + vertical-align: middle; + } +}