Advertisement
rccharles

subscription fix up 2-2-2017

Mar 2nd, 2017
471
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.66 KB | None | 0 0
  1. /*
  2.    https://discussions.apple.com/mysubscriptions.jspa#start=0&numResults=25&itemView=detail&filterID=all~objecttype~discn~discn%5Ball%5D&sortKey=all~recentActivityDateDesc&sortColumn=lastReplied&sortOrder=0&filterOnlyUnanswered=false&authored=false&participated=false&autoRefreshed=false&communityId=
  3. */
  4.  
  5. @-moz-document
  6.   url-prefix(https://discussions.apple.com/mysubscriptions.jspa),
  7.   url-prefix(https://discussionsjapan.apple.com/mysubscriptions.jspa),
  8.   url-prefix(https://discussionskorea.apple.com/mysubscriptions.jspa),  
  9.   regexp("https://communities.apple.com/(de|es|fr|pt)/mysubscriptions.*") {  
  10.      
  11.  
  12.   /* Move button out of list. Da  */
  13.   button#auto-refresh {
  14.     position: absolute !important;  /* override what in the main css */
  15.     text-align: left !important;
  16.     top: 200px !important;  
  17.     left: 320px !important;
  18.     font-size: 13px !important;          
  19.     width: inherit !important;   /* override what in the main css */
  20.     height: 30px !important;
  21.     /* background-color: yellow !important; /* */
  22.   }
  23.  
  24.   /* How much space to let for the title. Space allocation comes from the header line */
  25.   th.text-left.contentTitle.th-sortable.bold-text{
  26.     width: 520px !important;
  27.     /* background-color: pink !important;/**/
  28.   }
  29.  
  30.   /* padding to the right.  No need for 50px. */
  31.   td.text-left.contentTitle {
  32.     padding-right: 0px !important;
  33.     /*background-color: pink !important;/**/
  34.   }
  35.  
  36.   /* # viewed; # replies
  37.      Right align numbers */
  38.   td.text-left.viewCount.hidden-xs.icon-size,
  39.   td.text-left.replyCount.hidden-xs {
  40.     text-align: right !important;
  41.     /*background-color: lightcoral !important;/**/
  42.   }
  43.    
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement