Advertisement
rccharles

Untitled

Jun 27th, 2016
292
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.34 KB | None | 0 0
  1. /* https://discussions.apple.com/thread/7568866 */
  2.  
  3. @-moz-document
  4.    url-prefix(https://discussions.apple.com/thread),
  5.    url-prefix(https://discussions.apple.com/message),
  6.    url-prefix(https://discussions.apple.com/update-advanced-comment.jspa) {
  7.    
  8.       /* Move who wrote the question back to where it was before!
  9.          Will appear to the left of the question text box. */
  10.  
  11.       /* Avatar */
  12.       header.js-original-header  img.jive-avatar {
  13.            position: absolute !important;
  14.            top: 30px !important;
  15.            left: 20px !important;
  16.            width: 66px !important;
  17.            height: 66px !important;      
  18.          }
  19.  
  20.       /* Let questioner's info escape the box  */
  21.       div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden { overflow: visible !important; }
  22.    
  23.       /* questioner's name */
  24.       span.j-post-author strong  {
  25.           position: absolute !important;
  26.           top: 80px !important;
  27.           left: -84px !important;
  28.          }  
  29.       span.j-post-author strong  a {
  30.           font-weight: 400 !important;
  31.           font-size: 16px !important;
  32.           line-height: 16px !important;
  33.          }  
  34.  
  35.      /* questioner's points icon. fyi: position: absolute didn't work here.  */
  36.      div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden span.status-image img.svg {
  37.          margin-top: 100px !important;
  38.          margin-left: -45px !important;
  39.          }  
  40.  
  41.       /* questioner's points.  Actual coding:
  42.          <span class="level-points">Level 6
  43.              <span>(8,266 points)</span>
  44.          </span>
  45.       */
  46.       div.status-container span.level-points {
  47.           position: absolute !important;
  48.           top: 134px !important;
  49.           left: -152px !important;    /* shove level # off the left of window.  Need to save space. */
  50.          }  
  51.       div.status-container span.level-points span {
  52.           display: inline !important;  
  53.           font-size: 12px !important;
  54.           line-height: 12px !important;
  55.          }  
  56.      
  57.      /* For some reason, maybe overflow: visible, wrecks some tags positioning, fix up. */
  58.      /* Move folling and tool icon back to where they were */
  59.      ul.apple-social-actions-toolbar  { margin-top: -45px !important; }
  60.  
  61. }    /* end of @-moz-document */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement