You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2020/09/17 18:25:06 UTC

[allura] branch master updated: ticket_titles fix truncated ticket titles by allowing overflow wrappign

This is an automated email from the ASF dual-hosted git repository.

brondsem pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/allura.git


The following commit(s) were added to refs/heads/master by this push:
     new 4cc3c48  ticket_titles fix truncated ticket titles by allowing overflow wrappign
4cc3c48 is described below

commit 4cc3c4836c2c394da31abbe45c97f4cc866f5ccc
Author: Dillon Walls <di...@slashdotmedia.com>
AuthorDate: Wed Sep 9 18:02:36 2020 +0000

    ticket_titles fix truncated ticket titles by allowing overflow wrappign
---
 Allura/allura/nf/allura/css/site_style.css | 16 +++-------------
 1 file changed, 3 insertions(+), 13 deletions(-)

diff --git a/Allura/allura/nf/allura/css/site_style.css b/Allura/allura/nf/allura/css/site_style.css
index c1da84c..9f1f444 100644
--- a/Allura/allura/nf/allura/css/site_style.css
+++ b/Allura/allura/nf/allura/css/site_style.css
@@ -1896,10 +1896,6 @@ a.sidebar-disabled:focus {
   width: 935px;
 }
 .pad h2.dark {
-  background-color: #555555;
-  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #666666), color-stop(100%, #555555));
-  background-image: -moz-linear-gradient(top, #666666 0%, #555555 100%);
-  background-image: linear-gradient(top, #666666 0%, #555555 100%);
   border: 1px solid #333333;
   color: #fff;
   font-size: 14px;
@@ -1920,6 +1916,7 @@ a.sidebar-disabled:focus {
   -ms-border-top-right-radius: 3px;
   -khtml-border-top-right-radius: 3px;
   border-top-right-radius: 3px;
+  overflow: auto;
 }
 .pad h2.dark hr {
   border: 1px solid #000;
@@ -1928,15 +1925,8 @@ a.sidebar-disabled:focus {
 }
 .pad h2.dark small {
   text-transform: none;
-  position: absolute;
-  right: 0px;
-  top: 5px;
-  padding-right: 5px;
   text-align: center;
-  background-color: #555555;
-  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(0%, #666666), color-stop(100%, #555555));
-  background-image: -moz-linear-gradient(top, #666666 0%, #555555 100%);
-  background-image: linear-gradient(top, #666666 0%, #555555 100%);
+  float: right;
 }
 .pad h2.dark small a {
   margin: 0 10px;
@@ -2011,7 +2001,7 @@ a.sidebar-disabled:focus {
 .pad h2.title {
   font-weight: normal;
   margin-bottom: 1.5em;
-  white-space: nowrap;
+  overflow: auto;
 }
 .pad .paginate {
   margin: 0 0 0 20px;