Advertisement
rccharles

asc june 2016 questioner a

Jun 29th, 2016
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.47 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.      /*  Hiroto's pagination fix. Needs work.
  9.        @media screen {
  10.         .j-thread .jive-thread-messages .j-pagination:first-child {
  11.             position: fixed !important;
  12.             top: -30px !important;
  13.             right: 10px !important;
  14.         }
  15.     }  */
  16.    
  17.       /* Move who wrote the question back to where it was before!
  18.          Will appear to the left of the question text box. */
  19.  
  20.       /* Avatar */
  21.       header.js-original-header  img.jive-avatar {
  22.            position: absolute !important;
  23.            top: 30px !important;
  24.            left: 15px !important;
  25.            width: 66px !important;
  26.            height: 66px !important;      
  27.          }
  28.  
  29.       /* Let questioner's info escape the box  */
  30.       div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden { overflow: visible !important; }
  31.      
  32.        /* html for user's name
  33.          <strong itemprop="author"
  34.               itemscope=""
  35.               itemtype="http://schema.org/Person">
  36.            <a rel="nofollow"
  37.               href="/people/rccharles"
  38.               data-externalid=""
  39.               data-username="rccharles"
  40.               data-avatarid="1095"
  41.               id="jive-99999999999999999999999"
  42.               data-userid="999999"
  43.               data-presence="null"
  44.               class="jiveTT-hover-user jive-username-link">rccharles</a>
  45.           </strong>
  46.        */
  47.       /* questioner's name. movement. */
  48.       span.j-post-author strong  {
  49.           position: absolute !important;
  50.           top: 80px !important;
  51.           left: -96px !important;
  52.           text-align: center !important;
  53.           width: 120px !important;
  54.          }  
  55.       /* questioner's name. text adjustment */
  56.       span.j-post-author strong  a {
  57.           font-weight: 400 !important;
  58.           font-size: 13px !important;
  59.           line-height: 13px !important;
  60.          }  
  61.  
  62.      /* questioner's points icon. fyi: position: absolute didn't work here.  */
  63.      div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden span.status-image img.svg {
  64.          margin-top: 100px !important;
  65.          margin-left: -50px !important;
  66.          }  
  67.  
  68.       /* questioner's points.  Actual coding:
  69.          <span class="level-points">Level 6
  70.              <span>(8,266 points)</span>
  71.          </span>
  72.       */
  73.       div.status-container span.level-points {
  74.           position: absolute !important;
  75.           top: 134px !important;
  76.           left: -152px !important;    /* shove level # off the left of window.  Need to save space. */
  77.          }  
  78.       div.status-container span.level-points span {
  79.           display: inline !important;  
  80.           font-size: 12px !important;
  81.           line-height: 12px !important;
  82.           text-align: center !important;
  83.           width: 120px !important;  /* doesn't seem to have an effect. */
  84.          /* background-color: yellow !important; */
  85.          }  
  86.      
  87.      /* For some reason, maybe overflow: visible, wrecks some tags positioning, fix up. */
  88.      /* Move folling and tool icon back to where they were */
  89.      ul.apple-social-actions-toolbar  { margin-top: -45px !important; }
  90.  
  91. }    /* end of @-moz-document */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement