Merge branch 'master' of https://github.com/jgoodman/Freeside
[freeside.git] / rt / share / html / NoAuth / css / web2 / ticket.css
index 6dbaed3..d390216 100644 (file)
@@ -2,7 +2,7 @@
 %#
 %# COPYRIGHT:
 %#
-%# This software is Copyright (c) 1996-2011 Best Practical Solutions, LLC
+%# This software is Copyright (c) 1996-2014 Best Practical Solutions, LLC
 %#                                          <sales@bestpractical.com>
 %#
 %# (Except where explicitly superseded by other copyright notices)
@@ -48,7 +48,7 @@
 div#ticket-history div.ticket-transaction {
  border-top: 1px solid #ccc;
  padding-bottom: 0.25em;
-
+    position: relative; /* gives us a container for position: absolute */
 }
 
 div#ticket-history div.odd {
@@ -67,7 +67,8 @@ div#ticket-history {
 
 .ticket-transaction div.metadata span.actions {
  position: absolute;
- right: 2.3em;
+ top: 0;
+ right: 0;
  padding: 0em;
  background: #ccc;
  text-align: right;
@@ -77,6 +78,8 @@ div#ticket-history {
  -moz-border-radius-bottomleft: 0.5em;
  -webkit-border-bottom-left-radius: 0.5em;
  white-space: nowrap;
+
+ border-radius: 0 0 0 0.5em;
 }
 
 .ticket-transaction div.metadata  span.type {
@@ -88,8 +91,11 @@ div#ticket-history {
  padding: 0.75em 0 0 0;
  border-right: 1px solid #999;
  border-bottom: 1px solid #999;
- -moz-border-radius: 0.25em;
+ -moz-border-radius-bottomright: 0.25em;
  -webkit-border-bottom-right-radius: 0.25em;
+
+ border-radius: 0 0 0.25em 0;
+
 }
 
 div#ticket-history span.type a {
@@ -114,15 +120,9 @@ div#ticket-history span.time-taken {
 div#ticket-history div.content {
  padding-right: 1em;
  padding-bottom: 0.7em;
- font-size: 1.1em;
  margin-left: 1.5em;
 }
 
-.plain-text-white-space {
- white-space: pre-wrap;
- font-family: monospace;
-}
-
 .ticket-transaction .messagebody {
  font-size: 1em;
  padding-left: 1em;
@@ -133,6 +133,7 @@ div#ticket-history div.content {
  min-height: 2.5em;
  /* To avoid overlapping of "downloadattachment" by messagebody */
  clear: left;
+ word-wrap: break-word;
 }
 
 .ticket-transaction .messagebody img {
@@ -154,7 +155,7 @@ border-bottom: 2px solid #aaa;
 margin-top: 0.5em;
 -moz-border-radius: 0.5em;
 -webkit-border-radius: 0.5em;
-
+ border-radius: 0.5em;
 }
 
 div#ticket-history div.downloadattachment .downloadcontenttype{
@@ -201,7 +202,7 @@ div#ticket-history .messagebody .messagebody{
 .ticket-info-attachments .titlebox-title .left { background-color: #993366;  color: #fff;}
 
 
-.ticket-summary .titlebox-title a, div#body .ticket-summary .titlebox-title a:visited { color: #fff;}
+.ticket-summary .titlebox-title .left a, .ticket-summary .titlebox-title .left a:visited { color: #fff;}
 
 .unread-messages .titlebox , .unread-messages .titlebox-title .left { 
   border: 1px solid #99a;
@@ -228,3 +229,52 @@ table.ticket-summary td.boxcontainer:first-child {
   width: 50%;
 }
 
+div.requestor-ticket-links {
+    text-align: left;
+    font-size: 0.8em;
+    padding-top: 0.25em;
+}
+
+.more-about-requestor-extra-field .label {
+    display: inline-block;
+    width: 8em;
+    font-weight: bold;
+    text-align: right;
+}
+
+.more-about-requestor-extra-field .value {
+    display: inline-block;
+}
+
+.ticket-info-requestor .more-about-requestor-extra,
+.ticket-info-requestor .comments-about-user,
+.ticket-info-requestor .more-about-requestor-tickets,
+.ticket-info-requestor .more-about-user-groups
+{
+    margin: 1em 0;
+}
+
+.ticket-info-requestor .comments-about-user .label,
+.ticket-info-requestor .more-about-user-groups .label,
+.ticket-info-requestor .more-about-requestor-tickets .label
+{
+    display: block;
+    font-weight: bold;
+    text-align: left;
+}
+
+.ticket-info-requestor .more-about-user-groups .value ul,
+.ticket-info-requestor .more-about-requestor-tickets ul
+{
+    margin-top: 0;
+    margin-bottom: 0;
+}
+
+
+/* textareas get to be bigger when we're in a table */
+tr.edit-custom-field.cftype-Text textarea,
+tr.edit-custom-field.cftype-Freeform input,
+tr.edit-custom-field.cftype-Wikitext textarea
+{
+    width: 100%;
+}