Skip to content
This repository has been archived by the owner. It is now read-only.

Minor fixes to Contact & Search bar #24

Merged
merged 4 commits into from
Sep 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions css/titlebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -73,3 +73,7 @@
#site-title .searchform .form-group .form-control {
width: 150px;
}

.lte7.form-control {
height: 20px;
}
5 changes: 4 additions & 1 deletion sass/titlebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@
width:150px;
}
}

}
}
// IE Fixes
.lte7.form-control {
height:20px;
}
9 changes: 9 additions & 0 deletions sass/widgets.scss
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,15 @@
th {
white-space:nowrap;
}
td{
&.uc-output-email{
word-break: break-all;
}
&.uc-output-more{
word-break: break-all;
}

}
}
&.uc-ecw {
padding-bottom:$widget-content-margin;
Expand Down
10 changes: 10 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6809,6 +6809,10 @@ button.close {
width: 150px;
}

.lte7.form-control {
height: 20px;
}

/* NAV
--------------------------------------------------------------*/
#nav-secondary {
Expand Down Expand Up @@ -7430,6 +7434,12 @@ object {
.widget.uc-contact-widget th {
white-space: nowrap;
}
.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 {
padding-bottom: 1em;
}
Expand Down