You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by de...@apache.org on 2013/09/10 22:39:31 UTC

git commit: updated refs/heads/master to 100df79

Updated Branches:
  refs/heads/master 833fb6020 -> 100df792a


Replication css fixes for long urls


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/100df792
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/100df792
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/100df792

Branch: refs/heads/master
Commit: 100df792a0b4b75f8db2a87bae756a745aaf0a01
Parents: 833fb60
Author: suelockwood <de...@gmail.com>
Authored: Tue Sep 10 15:51:10 2013 -0400
Committer: suelockwood <de...@gmail.com>
Committed: Tue Sep 10 16:39:22 2013 -0400

----------------------------------------------------------------------
 .../app/addons/replication/assets/less/replication.less  | 11 ++++++++---
 .../app/addons/replication/templates/progress.html       |  2 +-
 2 files changed, 9 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/100df792/src/fauxton/app/addons/replication/assets/less/replication.less
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/replication/assets/less/replication.less b/src/fauxton/app/addons/replication/assets/less/replication.less
index 4329443..a301966 100644
--- a/src/fauxton/app/addons/replication/assets/less/replication.less
+++ b/src/fauxton/app/addons/replication/assets/less/replication.less
@@ -177,9 +177,14 @@ form#replication {
 				margin: 0px;
 				vertical-align: bottom;
 				&.break {
-					padding-right: 20px;
-					text-overflow: ellipsis;
-					overflow: hidden;
+					-ms-word-break: break-all;
+					word-break: break-all;
+
+					/* Non standard for webkit */
+					word-break: break-word;
+					-webkit-hyphens: auto;
+					-moz-hyphens: auto;
+					hyphens: auto;
 				}
 			}
 			padding: 10px 10px;

http://git-wip-us.apache.org/repos/asf/couchdb/blob/100df792/src/fauxton/app/addons/replication/templates/progress.html
----------------------------------------------------------------------
diff --git a/src/fauxton/app/addons/replication/templates/progress.html b/src/fauxton/app/addons/replication/templates/progress.html
index 02c47f2..1e6ef90 100644
--- a/src/fauxton/app/addons/replication/templates/progress.html
+++ b/src/fauxton/app/addons/replication/templates/progress.html
@@ -11,7 +11,7 @@ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 License for the specific language governing permissions and limitations under
 the License.
 -->
-<p class="span6">Replicating <strong><%=source%></strong> to <strong><%=target%></strong></p>
+<p class="span6 break">Replicating <strong><%=source%></strong> to <strong><%=target%></strong></p>
 
 <div class="span4 progress progress-striped active">
   <div class="bar" style="width: <%=progress || 0%>%;"><%=progress || "0"%>%</div>