From 4c7a5155f070c4d2324a8188e59390ea2b4d3f34 Mon Sep 17 00:00:00 2001 From: Mika Caldera Date: Mon, 8 Sep 2014 10:42:49 -0400 Subject: [PATCH 1/4] Contact Widget Table Quick Fix This is the first for the contact table. --- sass/widgets.scss | 3 +++ style.css | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sass/widgets.scss b/sass/widgets.scss index 2d971e2..fe51894 100644 --- a/sass/widgets.scss +++ b/sass/widgets.scss @@ -179,6 +179,9 @@ th { white-space:nowrap; } + td{ + word-break: break-all; + } } &.uc-ecw { padding-bottom:$widget-content-margin; diff --git a/style.css b/style.css index a0a5d62..38ab0e4 100644 --- a/style.css +++ b/style.css @@ -7430,6 +7430,9 @@ object { .widget.uc-contact-widget th { white-space: nowrap; } +.widget.uc-contact-widget td { + word-break: break-all; +} .widget.uc-ecw { padding-bottom: 1em; } From 6ef0f2830f7444eb555438e5662b3d29b2abcfb3 Mon Sep 17 00:00:00 2001 From: Mika Caldera Date: Wed, 10 Sep 2014 09:32:26 -0400 Subject: [PATCH 2/4] Trying to sync up to master. Remote syncing master and upstream --- css/titlebar.css | 4 ++++ sass/titlebar.scss | 5 ++++- style.css | 4 ++++ 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/css/titlebar.css b/css/titlebar.css index bf3bc85..4fa9892 100644 --- a/css/titlebar.css +++ b/css/titlebar.css @@ -73,3 +73,7 @@ #site-title .searchform .form-group .form-control { width: 150px; } + +.lte7.form-control { + width: 20px; +} diff --git a/sass/titlebar.scss b/sass/titlebar.scss index e1f251f..886d6ae 100644 --- a/sass/titlebar.scss +++ b/sass/titlebar.scss @@ -67,6 +67,9 @@ width:150px; } } - } } +// IE Fixes +.lte7.form-control { + width:20px; +} diff --git a/style.css b/style.css index 38ab0e4..652cf22 100644 --- a/style.css +++ b/style.css @@ -6809,6 +6809,10 @@ button.close { width: 150px; } +.lte7.form-control { + width: 20px; +} + /* NAV --------------------------------------------------------------*/ #nav-secondary { From 4a1f45d983db423e148a09808f0f0d27755acd0d Mon Sep 17 00:00:00 2001 From: Mika Caldera Date: Wed, 10 Sep 2014 10:06:20 -0400 Subject: [PATCH 3/4] Contact Widget Fix Fixed the contact widget code so that it is more specific. --- sass/widgets.scss | 8 +++++++- style.css | 5 ++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/sass/widgets.scss b/sass/widgets.scss index fe51894..7679dc4 100644 --- a/sass/widgets.scss +++ b/sass/widgets.scss @@ -180,7 +180,13 @@ white-space:nowrap; } td{ - word-break: break-all; + &.uc-output-email{ + word-break: break-all; + } + &.uc-output-more{ + word-break: break-all; + } + } } &.uc-ecw { diff --git a/style.css b/style.css index 652cf22..f875826 100644 --- a/style.css +++ b/style.css @@ -7434,7 +7434,10 @@ object { .widget.uc-contact-widget th { white-space: nowrap; } -.widget.uc-contact-widget td { +.widget.uc-contact-widget td.uc-output-email { + word-break: break-all; +} +.widget.uc-contact-widget td.uc-output-more { word-break: break-all; } .widget.uc-ecw { From 410f4ed5a367676b95e486b867c40d1c89643c91 Mon Sep 17 00:00:00 2001 From: Mika Caldera Date: Wed, 10 Sep 2014 10:07:37 -0400 Subject: [PATCH 4/4] Fixed Search Bar Fixed Search bar height for i.e. 7 --- css/titlebar.css | 2 +- sass/titlebar.scss | 2 +- style.css | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/css/titlebar.css b/css/titlebar.css index 4fa9892..0129510 100644 --- a/css/titlebar.css +++ b/css/titlebar.css @@ -75,5 +75,5 @@ } .lte7.form-control { - width: 20px; + height: 20px; } diff --git a/sass/titlebar.scss b/sass/titlebar.scss index 886d6ae..490cc20 100644 --- a/sass/titlebar.scss +++ b/sass/titlebar.scss @@ -71,5 +71,5 @@ } // IE Fixes .lte7.form-control { - width:20px; + height:20px; } diff --git a/style.css b/style.css index f875826..0eed0bf 100644 --- a/style.css +++ b/style.css @@ -6810,7 +6810,7 @@ button.close { } .lte7.form-control { - width: 20px; + height: 20px; } /* NAV