From fbc7e86248e8a52d24b4629a7e59606be3cc69ae Mon Sep 17 00:00:00 2001 From: briandunnigan Date: Thu, 3 Mar 2016 12:16:28 -0500 Subject: [PATCH] Adding mobile responsive table support to UC People --- css/hale2015-blue.css | 6 ++++++ css/hale2015-green.css | 6 ++++++ css/hale2015-orange.css | 6 ++++++ css/hale2015-purple.css | 6 ++++++ css/hale2015-red.css | 6 ++++++ scss/_hale2015-common.scss | 2 +- 6 files changed, 31 insertions(+), 1 deletion(-) diff --git a/css/hale2015-blue.css b/css/hale2015-blue.css index e7b3c4b..2ec3398 100644 --- a/css/hale2015-blue.css +++ b/css/hale2015-blue.css @@ -9842,6 +9842,12 @@ q:before, table q:after { */ } +@media (max-width: 767px) { + .uc-people table img { + max-width: none; + } +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ diff --git a/css/hale2015-green.css b/css/hale2015-green.css index 6676b9e..e1d730b 100644 --- a/css/hale2015-green.css +++ b/css/hale2015-green.css @@ -9842,6 +9842,12 @@ q:before, table q:after { */ } +@media (max-width: 767px) { + .uc-people table img { + max-width: none; + } +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ diff --git a/css/hale2015-orange.css b/css/hale2015-orange.css index 1f5b7d2..ac0617b 100644 --- a/css/hale2015-orange.css +++ b/css/hale2015-orange.css @@ -9842,6 +9842,12 @@ q:before, table q:after { */ } +@media (max-width: 767px) { + .uc-people table img { + max-width: none; + } +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ diff --git a/css/hale2015-purple.css b/css/hale2015-purple.css index d50ed46..fc3ee97 100644 --- a/css/hale2015-purple.css +++ b/css/hale2015-purple.css @@ -9842,6 +9842,12 @@ q:before, table q:after { */ } +@media (max-width: 767px) { + .uc-people table img { + max-width: none; + } +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ diff --git a/css/hale2015-red.css b/css/hale2015-red.css index 6e460ff..62316ba 100644 --- a/css/hale2015-red.css +++ b/css/hale2015-red.css @@ -9842,6 +9842,12 @@ q:before, table q:after { */ } +@media (max-width: 767px) { + .uc-people table img { + max-width: none; + } +} + /* - - - - - - - - - - - - - - - - - - - == Calendar - - - - - - - - - - - - - - - - - - - */ diff --git a/scss/_hale2015-common.scss b/scss/_hale2015-common.scss index a36456a..299e382 100644 --- a/scss/_hale2015-common.scss +++ b/scss/_hale2015-common.scss @@ -22,7 +22,7 @@ $btn-primary-border: darken($brand-primary, 15%) !default; $btn-success-border: darken($brand-success, 15%) !default; $btn-info-border: darken($brand-info, 15%) !default; $btn-warning-border: darken($brand-warning, 15%) !default; -$btn-danger-border: darken($brand-danger, 15%) !default; +$btn-danger-border: darken($brand-danger, 15%) !default;