Advertisement
rccharles

asc combined nov9th2016

Nov 9th, 2016
545
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 97.77 KB | None | 0 0
  1. /*
  2.  
  3. Custom Cascading Style Sheet for Apple Support Communities board system introduced in 2016-06      
  4.      
  5.     Copyright (c) 2014, 2016 Hiroto, et. al.
  6.     All rights reserved.
  7.  
  8.     Redistribution and use in source and binary forms, with or without
  9.     modification, are permitted provided that the following conditions are met:
  10.  
  11.     1. Redistributions of source code must retain the above copyright notice, this
  12.        list of conditions and the following disclaimer.
  13.     2. Redistributions in binary form must reproduce the above copyright notice,
  14.        this list of conditions and the following disclaimer in the documentation
  15.        and/or other materials provided with the distribution.
  16.  
  17.     THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  18.     ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  19.     WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  20.     DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  21.     ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  22.     (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  23.     LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  24.     ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  25.     (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26.     SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27.  
  28.     The views and conclusions contained in the software and documentation are those
  29.     of the authors and should not be interpreted as representing official policies,
  30.     either expressed or implied, of the Custom Styles Project.    
  31.    
  32.     For more information on how to install this css and what the css does, see:      
  33.     https://discussions.apple.com/docs/DOC-7501  
  34.  
  35.     v0.32 by rccharles
  36.          - Positioning tweaks
  37.  
  38.     v0.31 by rccharles
  39.          - adjustments for Nov 2016 ASC changes
  40.          - adjust position of Avatars
  41.          - level icon for original poster
  42.  
  43.     v0.30 by rccharles
  44.          - Smart phone support
  45.          - Use BSD copyright notice
  46.          - (min-width: 500px) and (max-width: 600px)
  47.  
  48.     v0.22 by rccharles
  49.          - Adjusted original poster info.
  50.          
  51.     v0.21 by rccharles
  52.          - Updates for 7-7-2016 ASC changes.  Adjusted reply poster info names.
  53.  
  54.     v0.2 by rccharles
  55.         - scrolling of large code blocks "advanced >> plain"
  56.         - reformat buttons
  57.         - nav list to horizontal for small windows
  58.         - option to sink legalistic bombblast.
  59.             Look for .~.~.~.~.~.~.~. then uncomment the three lines following
  60.         - expanded the display of posts in a discussion to view all posts.  
  61.             Thanks turingtest2
  62.         - colored backgrounds for posts
  63.         - turingtest2's fix for copy & paste in tinyMCE
  64.         - turingtest2's fix to get rid of answered and helpfuls at the top of every
  65.             page.
  66.         - light blue in tool icon pulldowns
  67.         - link popup on simple edit
  68.             Look for -.-.-.-.-.-.-.- then uncomment the line following
  69.         - Move who replied to the left margin.
  70.         - Move original poster's info to the left margin
  71.        
  72.    
  73.    
  74.     v0.11
  75.         - introduced @media rules in THREAD LIST BROWSER and PLACES sections:
  76.             @media all and ( max-width: X ) rule
  77.             @media all and ( min-width: Y ) rule
  78.        
  79.         - added, refined and fixed rules in various sections, which include but not limited to
  80.             BODY
  81.                 - changed #body-apple {width: 100%} to {width: auto}, which is essential to
  82.                   prevent horizontal scroller from appearing in narrow window environment.
  83.             TEXT > font
  84.                 - added rules to use fine local font in lieu of illegible remote font
  85.             ASC TOP PAGE
  86.                 - added rules on 'search or ask a question', 'featured topics' etc
  87.             COMMUNITIES CATEGORIES OVERVIEW
  88.                 - new section
  89.             THREAD LIST BROWSER > community overview
  90.                 - added and refined rules (treating filter ui layout)
  91.             PROFILE > content
  92.                 - new subsection (treating browser control ui layout)
  93.             BLOG
  94.                 - new section
  95.             UNAUTHORIZED
  96.                 - new section
  97.  
  98.     v0.10d
  99.         - draft
  100.  
  101.     written by Hiroto, 2016-06
  102. */
  103. @-moz-document
  104.     domain(communities.apple.com),  /* Português & Spanish */
  105.     domain(discussions.apple.com),
  106.     domain(discussionsjapan.apple.com),
  107.     domain(discussionskorea.apple.com),
  108.     domain(discussionschinese.apple.com)
  109. {
  110.     /* ---------------------------------------------------------------------------------
  111.         BODY
  112.     */
  113.     body.j-body-welome,             /* Welcome */
  114.     body.j-body-place,              /* Community */
  115.     body.j-body-yourwork,           /* Content */
  116.     body.j-body-home,               /* Activity */
  117.     body.j-body-yourconnections,    /* People */
  118.     body.j-body-preferences,        /* Preferences */
  119.     body.jive-body-content,         /* Thread */
  120.     body.jive-body-search,          /* Search */
  121.     body.jive-view-profile          /* Profile */
  122.     {                                                                              
  123.         background: #F2F2F2 !important; /* light grey was white, most of the window
  124.         was this color anyway. */
  125.     }
  126.     body {
  127.         min-width: 0px !important;
  128.     }
  129.    
  130.     /* Note: #body-apple is a div the covers the whole document.  So, it overrides the body tag. */
  131.     #body-apple {
  132.         width: auto !important;
  133.         min-width: 0px !important;
  134.         background: #f2f2f2  !important;
  135.     }
  136.     #globalheader { display: none !important; }                                    
  137.     #global-nav-wrapper {display: none !important; }                                
  138.     #globalfooter,
  139.     #globaldisclaimer { width: 80% !important; }                                    
  140.  
  141.    
  142.  
  143.     /* ---------------------------------------------------------------------------------
  144.         TEXT
  145.     */                                                                                      /* NEW */
  146.     body {
  147.         font-size: 16px !important;
  148.         font-weight: 400 !important;
  149.         line-height: 1.25 !important;
  150.     }
  151.     body * {
  152.         /* font-size: inherit !important; */
  153.        font-weight: inherit !important; /*  turns off bolding. 0.2 */
  154.        line-height: inherit !important;
  155.     }
  156.    
  157.  
  158.    
  159.     /* font
  160.        
  161.          
  162.           lang | remote font name
  163.           -----|-----------------
  164.             ja | "Apple TP"
  165.             ko | "Yoon Gothic"
  166.             zh | "PingHei"
  167.             en | "Myriad Set Pro"
  168.             es | "Myriad Set Pro"
  169.             pt | "Myriad Set Pro"
  170.     */                                                                                      /* NEW (experimental) */
  171. /*
  172.     * { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial,
  173.         Verdana, sans-serif !important; }
  174. */
  175.     [lang|="ja"] * {
  176.         font-family: "Hiragino Kaku Gothic Pro", "Meiryo",
  177.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  178.     }
  179.     [lang|="ko"] * {
  180.         font-family: "Apple Gothic", "HY Gulim", "MalgumGothic", "HY Dotum", "Lexi Gulim",
  181.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  182.     }
  183.     [lang|="zh"] * {
  184.         font-family: "STHeitiSC-Light",
  185.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  186.     }
  187.     [lang|="en"] *,
  188.     [lang|="es"] *,
  189.     [lang|="pt"] * {
  190.         font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  191.     }
  192.    
  193.     /* Start 0.2 additions */
  194.    
  195.    
  196.     /* Reduce white space in user tips */
  197.     /* Put bolding back.  body * is too strong above.  Hack strong back! */
  198.     strong {
  199.         font-weight: bold !important;}
  200.    
  201.     /* No line after Communities.  Waste of space and doesn't separate anything.
  202.            https://discussions.apple.com/community/mac_os/mac_os_x_technologies/content  */
  203.     div#j-header-wrap header nav#j-globalNav-bg {border-bottom: 0px !important; }
  204.    
  205.     /* The problem is caused by a fixed hight of 18px that has been assigned to
  206.        elements of the class j-comm-entry.  Fix by Turingtest2. 0.31 */
  207.     .j-comm-entry {height: auto !important;}                                              
  208.  
  209.     /* ??? */
  210.      select#j-sort.form-cell.form-dropdown option {
  211.          padding: 5px 6px 5px 8px !important;
  212.          font-size: 14px !important;
  213.          width: 180px !important;      /* Was 220px */
  214.          /*color:green !important;/**/
  215.        }
  216.                                                                                    
  217.     /* highlights in dark blue unread posts when logged in.  v0.6      
  218.      
  219.     All your posts      
  220.         https://discussions.apple.com/content?filterID=participated~objecttype~objecttype[thread]        
  221.      
  222.     Discussions you authored      
  223.         https://discussions.apple.com/content?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  224.      
  225.     To see the discussions you have read and not read in a community      
  226.     The suffix to use for any ASC forum, placed after the basic link to any forum, it's      
  227.         /content?filterID=contentstatus[published]~objecttype~objecttype[thread]      
  228.      
  229.     for iPhone community this would be:      
  230.         https://discussions.apple.com/community/iphone/using_iphone/content
  231.             ?filterID=contentstatus[published]~objecttype~objecttype[thread]        
  232.      
  233.      
  234.     */  
  235.     .j-td-title strong {
  236.         color:#191970 !important;
  237.         font-weight: normal !important;}  
  238.    
  239.     /* Prevent capitalization of user names there. (Mine becomes Turingtest2 on
  240.          that page and nowhere else, which is daft!) */
  241.     .jive-username-link {text-transform: none !important;} /* Remove username
  242.                                                               capitalization */
  243.          
  244.    
  245.     /* Scroll code listings.  set max-height of syntax highlighted code in thread      
  246.        content browser   */      
  247.     .jive-rendered-content .dp-highlighter {    
  248.        max-height: 500px !important;      
  249.        overflow: auto !important;      
  250.     }                                                                                  
  251.     /* Scroll code listings. set max-heiht of pre code (visible when javascript is disabled)  */      
  252.     .jive-rendered-content pre {      
  253.        max-height: 500px !important;      
  254.        overflow: auto !important;      
  255.     }  
  256.    
  257.     /* Rambling footer stuff will be sunk              
  258.        no more legalistic bomblast.
  259.        Read about Apple's worries on the Welcome page.
  260.        .~.~.~.~.~.~.~. */      
  261. /*  footer #globaldisclaimer {display: none !important; } */        
  262.     /* Not a complete path to here, so why be misleading */      
  263. /*  footer nav.footer-breadory {display: none !important; }    */      
  264.     /* Guess by now folks know how to buy an apple product */      
  265. /*  p.gf-buy {display: none !important; } */    
  266.    
  267.     /* end 0.2 additions */
  268.    
  269.     /* preseve monospace for pre.jive-pre */
  270.     pre.jive-pre { font-family: monospace !important; }
  271.  
  272.    
  273.     /* ---------------------------------------------------------------------------------
  274.         ASC HEADER, FOOTER AREA
  275.     */
  276.     #j-header,
  277.     #j-compact-header,
  278.     #j-footer { width: 100% !important; }
  279.    
  280.     /* navigation header (Apple Support Communities ...) */
  281.     #j-header-wrap {
  282.         padding: 0px 40px !important;
  283.         margin: 0px 0px 15px !important;
  284.     }
  285.     #j-globalNav-bg {
  286.         padding: 0pX !important;
  287.         margin: 0px !important;
  288.         width: auto !important;                                             /* NEW */
  289.     }
  290.     #j-satNav { overflow: visible !important; }
  291.  
  292.     #j-header-wrap { margin-bottom: 50px !important; }                                      /* NEW */
  293.     #apple-full-header { margin: 10px 0px 0px !important; }                                 /* NEW */
  294.     #second-row {                                                                           /* NEW */
  295.         padding-top: 25px !important;
  296.         height: 30px !important;
  297.     }
  298.  
  299.     /* announcement  Let's adjust in the header 9-20-2016 */  
  300.    
  301.  
  302.    /* breadcrumb         NEW */
  303.     #jive-breadcrumb {
  304.         width: auto !important;
  305.         margin-right: 40px !important;
  306.         position: relative !important;
  307.    
  308.     }
  309.    
  310.     /* footter           NEW */
  311.     .j-js-footer-wrap {
  312.         width: auto !important;
  313.         min-width: 0px !important;
  314.     }
  315.     footer#j-footer {
  316.         width: auto !important;
  317.         min-width: 0px !important;
  318.     }
  319.  
  320.  
  321.     /* ---------------------------------------------------------------------------------
  322.         ASC TOP PAGE
  323.     */
  324.     .j-body-welcome #jive-alert { margin: 0px 40px !important; }
  325.     .j-body-welcome .hero-container img { width: auto !important; }
  326.     .j-body-welcome.j-body-home [id|=jive-widgetframe] > .content-large {
  327.         text-align: center !important;
  328.         overflow-x: auto !important;
  329.         overflow-y: hidden !important;
  330.     }
  331.     .apple-communities {
  332.         display: inline-block !important;
  333.         width: auto !important;
  334.         text-align: left !important;
  335.     }
  336.  
  337.     /* search or ask a question */
  338.     .ask-a-question-container .j-form input[type="text"] { width: 90% !important; }
  339.  
  340.     /* featured topics */
  341.     .jive-widget-featuredcontentwidget h2 {
  342.         font-size: 28px !important;
  343.     }
  344.     .jive-widget-featuredcontentwidget .content-large .featured-content-header {
  345.         padding-bottom: 30px !important;
  346.     }
  347.     .jive-widget-featuredcontentwidget .content-large .featured-content-header p.sub-title {
  348.         margin: 10px 0px 20px !important;
  349.     }
  350.     .jive-widget-featuredcontentwidget .featured-list-container {
  351.         max-width: 1000px !important;
  352.     }
  353.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-row {
  354.         margin-bottom: 20px !important;
  355.         border-style: dotted !important;
  356.         border-width: thin !important;
  357.     }
  358.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-user {
  359.         margin: 0px 10px !important;
  360.     }
  361.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc {
  362.         margin: 0px 10px !important;
  363.     }
  364.     .jive-widget-featuredcontentwidget h4.title {
  365.         font-size: 18px !important;
  366.         margin: 10px 0px !important;
  367.         text-decoration: underline !important;
  368.     }
  369.     .jive-widget-featuredcontentwidget .rating-row,
  370.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc blockquote,
  371.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc .user-metadata {
  372.         margin-bottom: 10px !important;
  373.     }
  374.    
  375.     /* new to communities? */
  376.     .on-boarding .on-boarding-header h2 {
  377.         font-size: 28px !important;
  378.         margin: 0px 0px 25px !important;
  379.     }
  380.     .on-boarding .img-container { margin: 0px auto 30px !important; }
  381.    
  382.     /* how-to grid */
  383.     .on-boarding > .grid-display {
  384.         margin-top: 40px !important;
  385.         padding: 20px 0px !important;
  386.         max-width: 1000px !important;
  387.         display: inline-block !important;
  388.     }
  389.     .on-boarding .row .column h3 {
  390.         margin: 0px 30px 20px !important;
  391.         max-height: 50% !important;
  392.     }  
  393.  
  394.  
  395.     /* ---------------------------------------------------------------------------------
  396.         COMMUNITIES CATEGORIES OVERVIEW
  397.     */                                                                                      /* NEW */
  398.     /* communities description */
  399.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image {
  400.         width: 200px !important;
  401.         position: absolute !important;
  402.         z-index: -1 !important;
  403.     }
  404.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image img {
  405.         width: 200px !important;
  406.         height: 200px !important;
  407.     }
  408.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description {
  409.         margin-bottom: 45px !important;
  410.     }
  411.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description h1 {
  412.         font-size: 28px !important;
  413.         margin: 30px 0px !important;
  414.     }  
  415.    
  416.     /* top communities */
  417.     .apple-space-overview  h2.community-title {
  418.         font-size: 24px !important;
  419.         margin: 0px 0px 20px !important;
  420.     }
  421.     .apple-space-overview .category-latest-header h3 {
  422.         font-size: 22px !important;
  423.         margin: 0px 0px 20px !important;
  424.     }
  425.     .apple-space-overview .category-latest h3,
  426.     .apple-space-overview .category-latest h4 { font-size: 20px !important; }
  427.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large      
  428.         { padding: 10px !important; }
  429.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large > nav
  430.         { padding-top: 0px !important; }
  431.     .apple-space-overview .jive-widget-recentcontentfilterwidget {
  432.         padding-bottom: 10px !important;
  433.         margin-bottom: 0px !important;
  434.     }
  435.    
  436.     /* search for more topics */
  437.     .apple-space-overview .category-page .ask-a-question-header {
  438.         margin-top: 20px !important;
  439.         width: auto !important;
  440.     }
  441.     .apple-space-overview .category-page .ask-a-question-header h2
  442.         { font-size: 24px !important; }
  443.     .apple-space-overview .category-page .ask-a-question-container {
  444.         width: 80% !important;
  445.         max-width: 1000px !important;
  446.         margin: 30px auto !important;
  447.     }
  448.     .apple-space-overview .category-page .ask-a-question-container .j-form input[type="text"] {
  449.         padding: 10px 10px 10px 50px !important;
  450.         width: 94% !important;
  451.     }
  452.     .apple-space-overview .category-page .ask-a-question-footer { margin: 40px 0px !important; }
  453.    
  454.     /* contact apple support */
  455.     .apple-space-overview .section-eyebrow { font-size: 24px !important; }
  456.     .apple-space-overview .section-header {
  457.         font-size: 22px !important;
  458.         margin: 0px 0px 30px !important;
  459.     }
  460.        
  461.    
  462.     /* ---------------------------------------------------------------------------------
  463.         THREAD LIST BROWSER
  464.     */
  465.  
  466.     /* ------------------
  467.         community overview
  468.     */                                                                                      /* NEW */
  469.     .category-latest .category-latest-container .category-latest-row {
  470.         margin: 0px !important;
  471.         padding: 5px 0px !important;
  472.     }
  473.     .category-latest .category-latest-container .category-latest-row .discussion-metadata
  474.         {
  475.         margin: 5px 0px !important;
  476.         }
  477.     .category-latest .category-latest-container .category-latest-row .discussion-title a {
  478.         font-size: 100% !important;
  479.         font-weight: 500 !important;
  480.         color: rgb(0, 136, 204) !important;
  481.         /* background-color: antiquewhite !important;/**/
  482.     }
  483.     .category-latest .category-latest-container .category-latest-row:nth-child(odd) {
  484.         background: rgb(247, 247, 247) !important;
  485.     }
  486.     .category-latest .category-latest-container .category-latest-row .read-full {
  487.         display: none !important;
  488.     }
  489.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell {
  490.         margin-right: 15px !important;
  491.     }
  492.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell a {
  493.         color: rgb(0, 136, 204) !important;
  494.         text-decoration: none !important;
  495.         /* background-color: antiquewhite !important;/**/
  496.     }
  497.    
  498.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar {
  499.         margin: 0px 70px 10px 0px !important;
  500.     }
  501.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar .ask-a-question-space-icon {
  502.         width: 128px !important;
  503.         height: 128px !important;
  504.     }
  505.     .apple-space-overview #body-apple .list-page .ask-a-question-wrapper .community-siblings {
  506.         padding: 5px 0px !important;
  507.         font-size: 20px !important;
  508.     }
  509.  
  510.     /* content filter (by type (solved|recommended|unanswered) & category) */
  511.     .jive-content-filter {
  512.         width: 20% !important;
  513.         max-width: 250px !important;
  514.         min-width: 100px !important;
  515.         padding: 0px 10px 0px 0px !important;
  516.     }
  517.     .jive-content-filter h2 {
  518.         margin-bottom: 15px !important;
  519.         font-weight: 500 !important;
  520.     }
  521.     .jive-content-filter ul li { margin: 3px 0px !important; }
  522.     .jive-content-filter ul li:nth-child(odd)
  523.         { background: rgb(247, 247, 247) !important; }
  524.     .jive-content-filter ul li a.jive-content-filter-highlight
  525.         { background: rgb(230, 240, 230) !important; }
  526.     /* ------------------ */
  527.    
  528.  
  529.     /* show author name in 'Latest activity' column in detailed list view of threads */
  530.     td.j-td-date > span { display : inherit !important; }
  531.  
  532.     /* main section */
  533.     #j-main { padding: 0px !important; }
  534.  
  535.     /* table cell title */
  536.     .jive-table td.jive-table-cell-title { padding: 5px !important; }
  537.        
  538.     /* thread list view column widths */                                            
  539.     .j-browse-details .j-td-title { max-width: none !important; }
  540. /*  ======   .j-browse-details .j-td-date {
  541.         width: auto !important;
  542.         max-width: 20% !important;
  543.     }*/
  544.    
  545.     /* thread list view: read thread font weight */                                         /* NEW (feature restored) */
  546.     /* I'll go with dark blue.  In an earlier implementation of ASC, the bolded fond wasn't that noticeable, so
  547.        a dark blue was picked.  Might as well stay with it.                                    0.2 */
  548.  /*   .j-browse-details .j-td-title strong { font-weight: 600 !important; }  */
  549.        
  550.   /* span.curent-page,
  551.     span.j-pagination.pagination.botom span.class.current-page
  552.     {font-size: 32px !important;
  553.     background-color: burlywood !important;}*/
  554.    
  555.     /* ================================================= */
  556.     /* list of discussions adjustment for narrow windows */
  557.     @media all and ( min-width: 500px ) and ( max-width: 1099px ) {
  558.         /* ------------------
  559.             Treatment for narrow window
  560.             Hide Like and Bookmark columns in thread list view if
  561.               viewport width <= 1098 (= 1265 - 166)
  562.         */      
  563.            
  564.          /*    Table headers to ditch: like & bookmark headers.
  565.             th + th hits 2 or more td's! Hence, it hits the lower td's.
  566.             So, you need to fix up the lower td's. */
  567.         .j-browse-details .j-td-likes,
  568.         .j-browse-details .j-td-bookmarks { display: none !important; }
  569.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th,
  570.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th
  571.             { display: none !important; }
  572.         /* Let the element behave like a <td> element
  573.            And recover from the ditch above.  */
  574.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th + th {
  575.             /*background-color: antiquewhite !important;/**/
  576.             display: table-cell !important; }
  577.        
  578.         /* status
  579.            Vertical align table cells. Hassle.
  580.            For details on how, see: http://vanseodesign.com/css/vertical-centering/ */
  581.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon  {            
  582.             display:inline-block;
  583.             white-space: normal !important;
  584.             vertical-align: middle !important;
  585.             display:table-cell !important;}
  586.        
  587.          /* title */
  588.         .j-browse-details .j-td-title {
  589.            padding-top: 10px !important;
  590.            padding-bottom: 10px !important;
  591.            /*background-color: pink !important;/**/
  592.          }
  593.        
  594.         .j-browse-details .j-td-title p.j-browse-content-location.font-color-meta-light {                  
  595.             margin-bottom: 0  !important;
  596.             /*background-color: antiquewhite !important;/**/
  597.         }
  598.        
  599.        
  600.     } /* end of media */
  601.  
  602.  
  603.     /* ================================================= */
  604.     /* list of discussions adjustment for small windows found on lanscaped smart phones
  605.                 all and ( min-width: 400px ) and ( max-width: 499px )*/
  606.     @media all and ( max-width: 499px )
  607.     {
  608.         /* ------------------
  609.             Treatment for small window
  610.         */  
  611.        
  612.         /* status, Title & Latest activite (time)
  613.            Vertical align table cells. Hassle.
  614.            For details on how, see: http://vanseodesign.com/css/vertical-centering/ */
  615.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon ,
  616.         .j-browse-details .j-td-title,
  617.         .j-browse-details .j-td-date
  618.         {            
  619.             display:inline-block;
  620.             white-space: normal !important;
  621.             vertical-align: middle !important;
  622.             display:table-cell !important;}
  623.        
  624.         table.j-browse-list {
  625.             table-layout: fixed !important;
  626.             margin-top: 20px !important;
  627.             /*background-color: yellow !important;/**/}
  628.        
  629.         /* data columns to ditch.
  630.            fyi: I think apple got rid of likes. */
  631.         .j-browse-details .j-td-likes,
  632.         .j-browse-details .j-td-bookmarks {
  633.            display: none !important;
  634.             /* background-color: yellow !important;/**/
  635.           }
  636.        
  637.        
  638.         /* problem with addressing first and second columns, because of th colspan="2" in
  639.            header row.  */
  640.          .j-browse-details > table.j-browse-list > thead.j-rc4 > tr  {
  641.             display:none !important;
  642.         }
  643.              
  644.          /* status */
  645.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon {  
  646.             width: 20px !important;/**/
  647.             padding-left: 0 !important;
  648.             padding-right: 3px !important;
  649.             /*background-color: pink !important;/**/
  650.          }
  651.  
  652.          /* replies */
  653.         div.j-browse-details > table.j-browse-list > tbody > tr >  td.j-td-replies {
  654.             width: 20px !important;/**/
  655.             font-size: 12px !important;/**/
  656.             background-color: antiquewhite !important;/**/  
  657.         }
  658.          /* views */
  659.         div.j-browse-details > table.j-browse-list > tbody > tr >  td.j-td-views {
  660.             width: 32px !important;/**/
  661.             font-size: 12px !important;/**/
  662.             background-color: cornsilk !important;/**/
  663.         }      
  664.         /* Latest activity (date) */
  665.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-date {
  666.            width: 110px !important;/**/
  667.            font-size: 12px !important;/**/
  668.            /*background-color: antiquewhite!important;/**/
  669.           }
  670.         /* Actions */
  671.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-actions {
  672.            width: 24px !important;/**/          
  673.            /* overflow:hidden !important; /**/
  674.            /* background-color: silver !important;/**/
  675.           }
  676.  
  677.        
  678.        /* Try to get rid of the userid.  Hard because of lack of addressability to the
  679.           words in ... to ...
  680.           This strange combo seems the best we can do. */
  681.        .j-browse-details .j-td-title p.j-browse-content-location.font-color-meta-light
  682.         {                  
  683.             margin-bottom: 0  !important;
  684.             /*display: none !important;*/
  685.             visibility: hidden !important;/**/
  686.             /*background-color: antiquewhite !important;/**/
  687.         }
  688.         .j-browse-details .j-td-title p.j-browse-content-location.font-color-meta-light a:nth-child(1){    
  689.             margin-bottom: 0  !important;
  690.             /*display: inline !important;/**/
  691.             visibility:  visible !important;/**/
  692.             /*background-color: pink !important;/**/
  693.         }
  694.         .j-browse-details .j-td-title p.j-browse-content-location.font-color-meta-light a:nth-child(2){    
  695.             margin-bottom: 0  !important;
  696.             display: none !important;/**/
  697.             /*visibility:  visible !important;/**/
  698.             /*background-color: cornsilk !important;/**/
  699.         }      
  700.        
  701.     } /* end of media */
  702.  
  703.    
  704.     /* ================================================= */
  705.     /* list of discussions adjustment for small windows found on potraited smart phones */
  706.     @media all and ( max-width: 399px )
  707.     {
  708.         /* ------------------
  709.             Treatment for small window
  710.         */  
  711.        
  712.         /* lot of other apps do not have padding (margin) on smart phones. */
  713.         div#body-apple {
  714.             padding-left: 2px !important;
  715.             padding-right: 2px !important;
  716.         }
  717.        
  718.          /* status */
  719.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon {  
  720.             padding-right: 1px !important;
  721.             /*background-color: pink !important;/**/
  722.          }
  723.          /* title */
  724.          div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-title a  {
  725.            font-size: 13px !important;
  726.            /* background-color: yellow !important;/**/
  727.          }
  728.          div.j-browse-details > table.j-browse-list > tbody >
  729.            tr > td.j-td-title div  p a {  
  730.            font-size: 11px !important;
  731.          }
  732.        
  733.         /* status */
  734.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-icon span {
  735.            /* background-color: teal!important;/**/
  736.         }
  737.            
  738.         /* Latest activity (date) */
  739.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-date {
  740.            width: 40px !important;/**/
  741.            font-size: 12px !important;/**/
  742.            /*background-color: antiquewhite!important;/**/
  743.           }
  744.         /* Actions */
  745.         div.j-browse-details > table.j-browse-list > tbody > tr > td.j-td-actions {
  746.            width: 20px !important;/**/  
  747.            /* Vertical align table cells. Hassle. */
  748.            display:inline-block;
  749.            white-space: normal !important;
  750.            vertical-align: middle !important;
  751.            display:table-cell !important;    
  752.            /*background-color: silver !important;/**/
  753.           }        
  754.              
  755.     } /* end of media all and ( max-width: 399px ) */
  756.  
  757.     /* user name link */
  758.     .jive-username-link { text-transform: none !important; }                        
  759.  
  760.     /* threads list view table tr td  */                                  /* CHANGED */
  761.     .j-browse-details-tbody tr td { padding: 2px !important; } /* */
  762.  
  763.     /* threads list view left most icon */                                    /* NEW */
  764.     .j-browse-details-tbody .j-td-icon { padding: 0px 6px 0px !important; }
  765.    
  766.     /* communities list view table tr td */
  767.     .jive-communities-listing table tr td { padding: 5px !important; }
  768.    
  769.     /* thumbnails view width */
  770.     .j-browse-content .j-thumb-view,
  771.     .j-browse-places .j-browse-thumbnails,
  772.     .j-browse-people .j-browse-thumbnails { width: 100% !important; }
  773.    
  774.     /* thumbnail view list item margin */                                          
  775.     .j-browse-content .j-thumb-view > li,
  776.     .j-browse-places .j-browse-thumbnails > li { margin-right: 20px !important; }
  777.    
  778.     /* thumbnail view article font size */                                     /* NEW */
  779.     .j-thumb article { font-size: inherit !important; }
  780.    
  781.     /* thunbnail view article header height */                                 /* NEW */
  782.     .j-content-thumb header { height: 22px !important; }
  783.  
  784.     /* thumbnail view article header font size */                              /* NEW */
  785.     .j-thumb header h4.shrunk { font-size: 80% !important; }
  786.     .j-browse-content .j-content-thumb header .icon {
  787.         font-size: 16px !important;
  788.         margin: 0px 8px 0px 0px !important;
  789.     }
  790.    
  791.     /* thumbnail view article height */                                        /* NEW */
  792.     .j-browse-content .j-content-thumb article { height: 120px !important; }
  793.    
  794.     /* thumbnail view footer */                                                /* NEW */
  795.     .j-browse-content .j-content-thumb.j-thumb footer { padding: 4px 0px 0px !important; }  
  796.  
  797.    
  798.     /* social actions row */
  799.     .apple-social-actions-wrapper { margin-right: 0px !important; }
  800.     .j-thread .j-social-actions { margin-right: 40px !important; }
  801.  
  802.     /* apple header, subheader row ("Find helpful contents..." etc )*/              
  803.     #apple-full-subheader,
  804.     #apple-activity-subheader {
  805.         padding: 0px 40px 15px !important;
  806.         margin-bottom: 15px !important;
  807.     }
  808.     #apple-full-header h2,
  809.     #apple-activity-header h2 { padding: 0px 40px !important; }
  810.  
  811.     /* page header */
  812.     .j-body-place #jive-body > header.j-page-header {
  813.         margin-left: 40px !important;
  814.         margin-right: 40px !important;
  815.         width: auto !important;
  816.     }
  817.    
  818.     /* pagenation */                                                                        /* NEW */
  819.     .j-pagination-prevnext > .j-pagination-prev,
  820.     .j-pagination-prevnext > .j-pagination-next { font-size: 0px !important; }  
  821.    
  822.    
  823.     /* browser filter row */
  824.     #j-browse-filters { margin-bottom: 5px !important; }
  825.  
  826.     /* browser controls row */
  827.     .j-type-row { margin-bottom: 0px !important; }
  828.  
  829.     /* browser controls content types (All Contents|User Tips|Discussions) width */
  830.     #js-browse-controls .j-type-row .j-content-types { width: 90% !important; }
  831.    
  832.     /* browser controls view toggle (Thumbnails|Details) width */
  833.     #js-browse-controls #j-item-view-toggle {
  834.         width: 10% !important;
  835.         display: table !important;
  836.     }
  837.  
  838.     /* content filter row (All|Open|Answered|Threads) */
  839.     .j-content-filter {
  840.         background: white !important;
  841.         margin-bottom: 10px !important;
  842.     }  
  843.    
  844.     /* container canvas */
  845.     .j-contained {
  846.         margin-left: 40px !important;
  847.         margin-right: 40px !important;
  848.     }
  849.  
  850.     /* more search results available */
  851.     #j-more-search-results-available { padding: 10px !important; }
  852.    
  853.     /* misc */
  854.     .jive-widget { margin-bottom: 10px !important; }
  855.     .j-column { margin-bottom: 10px !important; }
  856.    
  857.     /* ================================================= */
  858.     /* for both medium and large displays */
  859.     @media all and ( min-width: 400px )
  860.     {
  861.         /* display titles */
  862.         thead.j-rc4.u-hide--small.u-hide--tablet{
  863.             display:table-header-group !important;/**/
  864.             /*background-color: yellow !important; /**/
  865.         }
  866.        
  867.     }
  868.  
  869.  
  870.     /* ================================================= */
  871.     @media all and ( min-width: 1265px )
  872.     {
  873.         /* ------------------
  874.             Treatment for wide window
  875.             Method 1 (minimum optimisation)
  876.    
  877.             Adjust thread list table's shift and margin to maximize its width.
  878.         */                                                                              
  879.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: -166px !important; }
  880.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 166px !important; }
  881.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  882.     } /* media all and ( min-width: 1265px ) */
  883.  
  884.    
  885.      /* ================================================= */
  886.     @media all and ( max-width: 1265px )
  887.     {
  888.         /* ------------------
  889.             Treatment for narrow window
  890.             Method 2 (more beneficial to narrow window but has disadvantage for wide window)
  891.            
  892.             Let thread list table have full width but not exceed 1019px to make
  893.             room for sidebar ui (filters & actions).  If window is wide enough
  894.             (>=1265px), sidebar ui is displayed next to thread list table,          
  895.             otherwise it is displayed below or above it (depending upon its
  896.             document tree order).
  897.            
  898.             * sidebar width (constant)    = 166px
  899.             * thread table max width      = 1019px
  900.             * canvas margin-left          = 40px
  901.             * canvas margin-right         = 40px
  902.             ---------------------------------------
  903.             * total                       = 1265px
  904.         */                                                                              
  905.         .j-layout-sl.j-browse-content .j-column-wrap-l { max-width: 1019px !important; }
  906.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: 0px !important; }
  907.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 0px !important; }
  908.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  909.     }  /* media all and ( max-width: 1265px ) */
  910.  
  911.  
  912.     /* ------------------
  913.         Swap left-right positions of thread list table and sidebar ui (filters & actions)
  914.     */                                                                              
  915.     /* let thread list table float left */
  916.     .j-layout-sl.j-browse-content .j-column-wrap-l,
  917.     .j-layout-sl.j-browse-places .j-column-wrap-l { float: left !important; }
  918.  
  919.     /* let sidebar ui float right */
  920.     .j-layout-sl.j-browse-content .j-column-s,
  921.     .j-layout-sl.j-browse-places .j-column-s { float: right !important; }
  922.     /* ------------------ */
  923.  
  924.  
  925.     /* ------------------
  926.         leader board
  927.     */
  928.     /* .jive-widget.jive-box.j-rc5.jive-widget-leaderboardwidget */
  929.    
  930. /*
  931.     .jive-widget-leaderboardwidget {display: none !important; }                    
  932. */
  933.  
  934.     .jive-widget-leaderboardwidget { max-width: 1000px !important; }                        
  935.     .jive-widget-leaderboardwidget .j-bigtab-nav .j-tabbar
  936.         { padding-top: 10px !important; }
  937.     .jive-widget-leaderboardwidget .jive-widget-topmembers.split-columns ul li
  938.         { min-height: 0px !important; }
  939.     .jive-widget-leaderboardwidget .top-member-username,
  940.     .jive-widget-leaderboardwidget .top-member-username *
  941.         { font-size: inherit !important; }
  942.     .jive-widget-leaderboardwidget .top-member-username
  943.         { margin-left: 15px !important; }
  944.     .jive-widget-leaderboardwidget .user-level-points {
  945.         font-size: 18px !important;
  946.         margin: 14px 0px !important;
  947.         width: 60px !important;
  948.         height: 30px !important;
  949.         padding: 8px 0px 0px !important;
  950.     }
  951.     .jive-widget-leaderboardwidget .top-member-profile-info { width: 80% !important; }
  952.     .jive-widget-leaderboardwidget .top-member-profile-info > a {
  953.         border-radius: 0% !important;
  954.         width: 60px !important;
  955.         height: 60px !important;
  956.     }
  957.     .jive-widget-leaderboardwidget .top-member-username a.jiveTT-hover-user
  958.         { width: auto !important; }
  959.     .jive-widget-leaderboardwidget .pagination-class { margin-top: 30px !important; }
  960.     /* ------------------ */
  961.  
  962.  
  963.     /* article list
  964.         .j-rc5 is used to identify this list
  965.         e.g., https://discussions.apple.com/article/HT1939 */                      
  966.     .j-layout-sl.j-browse-content.j-rc5 #jive-body-maincol { margin: 0px 0px 0px 166px !important; }
  967.  
  968.  
  969.     /* --------------------------------------------------------------------------------
  970.         THREAD CONTENT BROWSER
  971.     */
  972.     /* thread header */
  973.     .apple-thread-header {
  974.         width: auto !important;
  975.         margin-bottom: 10px !important;
  976.         margin-left: 40px !important;
  977.     }
  978.  
  979.     /* thread message */                                                       /* NEW */
  980.     .j-thread .jive-content .j-thread-post .jive-rendered-content {
  981.         font-size:   inherit !important;
  982.     }
  983.     /* Used for margins around all replies  
  984.             .j-thread #body-apple .all-replies-container,
  985.    
  986.             Used for margins around tinymce
  987.             .j-thread #body-apple .addReply
  988.    
  989.     */
  990.     .j-thread #body-apple .jive-thread-messages h2.helpful-allreply,
  991.     .j-thread #body-apple #helpful-container,
  992.     .j-thread #body-apple .j-thread-post > header .j-post-author,
  993.     .j-thread #body-apple #j-main #jive-breadcrumb,
  994.      /* Used for margins around all replies */
  995.     .j-thread #body-apple .all-replies-container
  996.     {
  997.         max-width: inherit !important;
  998.         margin: 10px 40px !important;
  999.     }
  1000.    
  1001.     .j-inresponse-to {
  1002.         font-size: inherit !important;
  1003.     }
  1004.    
  1005.     .j-thread .jive-content .j-thread-post > header,
  1006.     .j-thread .jive-content .j-thread-post > h3.header {
  1007.         margin: 15px 0px 10px 0px !important;
  1008.     }
  1009.  
  1010.     /* Adjust orginal question */
  1011.    
  1012.     /* Ajust start position of question on left 03.1 */
  1013.     .j-thread-post section.j-original-message div {padding: 0 !important;}
  1014.    
  1015.     /* title of question. 0.31 */
  1016.     .j-thread-post section.j-original-message h1 {
  1017.         max-width: inherit !important;
  1018.         margin: 0px 60px 20px 60px !important;
  1019.         /* background-color: turquoise !important; /* */
  1020.     }
  1021.    
  1022.     /* Question text */
  1023.     .j-thread-post section.j-original-message .jive-rendered-content {
  1024.         max-width: inherit !important;
  1025.         margin: 0px 25px !important;
  1026.         /* background-color: lightblue !important; /* */
  1027.     }
  1028.    
  1029.     /* original poster profile header */
  1030.     .j-thread .jive-content .j-thread-post > header.js-original-header {
  1031.         max-width: inherit !important;
  1032.         margin: 0px 40px !important;
  1033.         padding: 5px !important;
  1034.         /* background-color: pink !important; /* */
  1035.     }
  1036.    
  1037.  
  1038.     .j-original-message .jive-rendered-content p {
  1039.         font-size:   inherit !important;
  1040.     }
  1041.    
  1042.  
  1043.     /* Q mark */
  1044.     .j-original-message h1 .q-marker {
  1045.         left: -60px !important;
  1046.         font-size: 32px !important;
  1047.     }
  1048.    
  1049.  
  1050.     /* answer rollup */                                                        /* NEW */
  1051.     .j-answer-rollup.span-full-width {
  1052.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  1053.         padding-bottom: 10px !important;
  1054.         margin: 20px 0px 0px 0px !important;
  1055.         border: 1px solid rgb(45, 184, 71) !important;
  1056.     }
  1057.     .j-inline-correct-answer {
  1058.         padding: 0px !important;
  1059.         max-width: inherit !important;
  1060.         margin: 0px 10px !important;
  1061.     }
  1062.     .j-inline-correct-answer section {
  1063.         margin: 10px 0px !important;
  1064.     }
  1065.     /* A mark */
  1066.     .j-inline-correct-answer .answer-marker {
  1067.         left: 0px !important;
  1068.         font-size: 32px !important;
  1069.     }
  1070.    
  1071.  
  1072.     /* persistent question shown at top */                                     /* NEW */
  1073.     .persist-question.persist { display: none !important; }
  1074.  
  1075.    
  1076.     /* Solved and Helpful marker text */                                       /* NEW */
  1077.     .j-thread-post header .j-correct-text,
  1078.     .j-thread-post h3.header .j-correct-text,
  1079.     .j-thread-post header .j-helpful-text,
  1080.     .j-thread-post h3.header .j-helpful-text {
  1081.         font-size: 22px !important;
  1082.         background: none repeat scroll 0% 0% transparent !important;
  1083.         border-style: none !important;
  1084.         margin: 0px !important;
  1085.         padding: 10px !important;
  1086.     }
  1087.  
  1088.    
  1089.     /* thread content */                                                   /* CHANGED */
  1090.     .j-thread .jive-content { margin: 0px 10px 0px 10px !important; }
  1091.  
  1092.    
  1093.     /* thread replies ul */
  1094.     ul.jive-discussion-replies.jive-discussion-indent-0 { margin: 0px !important; }
  1095.    
  1096.     /* thread reply li */
  1097.     .jive-discussion-replies li.reply { margin-top: 15px !important; }
  1098.  
  1099.  
  1100.  
  1101.  
  1102.     /* orgininal poster comment background */                                  /* NEW */
  1103.     .original-poster-comment {
  1104.         background: none repeat scroll 0% 0% rgb(247, 247, 237) !important;
  1105.         top:    0px !important;
  1106.         right:  0px !important;
  1107.         bottom: 0px !important;
  1108.         left:   0px !important;
  1109.     }
  1110.  
  1111.  
  1112.     /* pagenation */                                                           /* NEW */
  1113.     .j-thread .jive-thread-messages .j-pagination {
  1114.         margin: 30px 0px !important;
  1115.     }
  1116.  
  1117.  
  1118.  
  1119.     .j-inline-promoted-helpful-answer p {
  1120.         margin: 0px !important;
  1121.     }
  1122.     .j-inline-promoted-helpful-answer header .reply-date,
  1123.     .j-inline-promoted-helpful-answer h3.header .reply-date,
  1124.     .j-inline-recommended-answer header .reply-date,
  1125.     .j-inline-recommended-answer h3.header .reply-date {
  1126.         font-size: inherit !important;
  1127.         margin: 10px 0px !important;
  1128.     }
  1129.     .j-inline-promoted-helpful-answer header .j-helpful-text,
  1130.     .j-inline-promoted-helpful-answer h3.header .j-helpful-text,
  1131.     .j-inline-recommended-answer header .j-helpful-text,
  1132.     .j-inline-recommended-answer h3.header .j-helpful-text {
  1133.         font-size: 22px !important;
  1134.         background: none repeat scroll 0% 0% transparent !important;
  1135.         border-style: none !important;
  1136.         margin: 0px !important;
  1137.     }
  1138.     .j-inline-promoted-helpful-answer section .reply-body,
  1139.     .j-inline-recommended-answer section .reply-body {
  1140.         font-size: inherit !important;
  1141.         margin-bottom: 20px !important;
  1142.     }
  1143.     .j-inline-promoted-helpful-answer section,
  1144.     .j-inline-recommended-answer section {
  1145.         padding: 0px 20px !important;
  1146.     }
  1147.     #helpful-container { padding-top: 0px !important; }
  1148.     #helpful-container hr { margin: 10px !important; }
  1149.     #helpful-container .more-answers { margin: 0px !important; }
  1150.     #helpful-container .more-answers * { font-size: 24px !important; }
  1151.  
  1152.  
  1153.     /* inline correct answer, helpful answer background */                     /* NEW */
  1154.     div[itemprop="acceptedAnswer"] {
  1155.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  1156.     }
  1157.     .j-thread .jive-content.j-helpful,
  1158.     .j-thread .jive-content.j-helpful.j-op {
  1159.         background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  1160.     }
  1161.  
  1162.  
  1163.     /* switch between 'hellpful replies only' and 'all replies' */             /* NEW */
  1164.     .jive-thread-messages .helpful-all-switch * {  
  1165.         font-size: 24px !important;
  1166.     }
  1167.     .jive-thread-messages .helpful-all-switch li.inactive {
  1168.         padding: 0px !important;
  1169.         top: 32px !important;
  1170.     }
  1171.     .jive-thread-messages .helpful-all-switch li.inactive span.menu {
  1172.         width: auto  !important;
  1173.         min-width: 160px !important;
  1174.         padding: 5px  !important;
  1175.         text-align: center !important;
  1176.     }
  1177.    
  1178.  
  1179.     /* thread content footer profile */                                        /* NEW */
  1180.     .j-thread-post section.j-original-message footer .footer-profile {
  1181.         margin-right: 10px !important;
  1182.     }
  1183.     .j-thread-post footer .footer-profile {
  1184.         margin-right: -10px !important;
  1185.     }
  1186.     .j-thread-post footer .footer-profile .j-status-level {
  1187.         padding: 0px 10px 0px 0px !important;
  1188.     }
  1189.     .j-thread-post footer .footer-profile .username,
  1190.     .j-thread-post footer .footer-profile .jive-username-link {
  1191.        /* padding: 0px 10px 0px 10px !important; 0.2 */
  1192.         max-width: 250px !important;
  1193.     }
  1194.     .j-inline-correct-answer footer .footer-profile .j-status-levels,
  1195.     .j-inline-promoted-helpful-answer footer .footer-profile .j-status-levels,
  1196.     .j-inline-recommended-answer footer .footer-profile .j-status-levels {
  1197.         padding: 0px 10px 0px 0px !important;
  1198.     }
  1199.     .j-inline-correct-answer footer .footer-profile .username,
  1200.     .j-inline-promoted-helpful-answer footer .footer-profile .username,
  1201.     .j-inline-recommended-answer footer .footer-profile .username {
  1202.         padding: 0px 10px 0px 10px !important;
  1203.         max-width: 250px !important;
  1204.     }
  1205.  
  1206.  
  1207.     /* text wrap in header */
  1208.     .j-thread-post > header .j-post-author { white-space: normal !important; }      
  1209.    
  1210.     /* thread post section (message body) */
  1211.     .j-thread-post section {
  1212.         padding: 0px 20px !important;
  1213.         margin-bottom: 15px !important;                                    /* CHANGED */
  1214.     }
  1215.    
  1216.  
  1217.     /* thread rendered content */
  1218.     .jive-rendered-content { padding-bottom: 4px !important; }
  1219.    
  1220.     /* thread rendered content quote & pre */
  1221.     .jive-rendered-content .jive-quote,
  1222.     .jive-rendered-content .jive-pre {
  1223.         margin: 5px 15px !important;
  1224.     }
  1225.  
  1226.     /* thread reply footer (Return to Community | Go to original post) */
  1227.     #jive-thread-reply-footer { margin-top: 10px !important; }
  1228.    
  1229.     /* more like this links, incomming links */
  1230.     #apple-related-threads { margin: 0px 40px !important; }
  1231.     #apple-related-threads .j-box { margin-bottom: 0px !important; }
  1232.     .j-icon-list li { padding: 3px 0px 3px 22px !important; }
  1233.  
  1234.     /* related articles */                                                          
  1235.     .apple-sidebar-property {
  1236.         width: auto !important;
  1237.         padding-left: 0px !important;
  1238.     }
  1239.     .jive-box-body.jive-sidebar-body.jive-sidebar-body-related-articles
  1240.         { padding: 15px 0px !important; }
  1241.    
  1242.  
  1243.     /* ------------------
  1244.         staus level, expertise, level points
  1245.     */
  1246.     /* status level expertise tile */
  1247.     .j-status-level.expertise-tile,
  1248.     .status-tile.expertise-tile { display: none !important; }                  
  1249.    
  1250.     /* status level level points */
  1251.     .j-status-level .level-points span { display: inherit !important; }            
  1252.     .j-status-level .level-points { white-space: inherit !important; }              
  1253.     /* ------------------ */
  1254.  
  1255.  
  1256.     /* ---------------------------------------------------------------------------------
  1257.         INLINE EDITOR
  1258.     */
  1259.     /* editor */
  1260.     .jive-discussion-replies li.addReply { margin: 50px 40px 0px !important; }
  1261.  
  1262.  
  1263.     /* --------------------------------------------------------------------------------
  1264.         ADVANCED EDITOR
  1265.     */
  1266.  
  1267.     /* content area */
  1268.     .j-thread.jive-body-formpage #body-apple .j-form {
  1269.         max-width: inherit !important;
  1270.         margin: 0px auto 20px !important;
  1271.         width: inherit !important;
  1272.     }
  1273.     .j-thread .jive-content.jive-create-thread,
  1274.     .jive-body-formpage-document .jive-content.doc-page {
  1275.         margin: 0px 40px !important;
  1276.         padding: 0px !important;
  1277.     }
  1278.  
  1279.  
  1280.     /* editor panel */
  1281.     .j-thread .jive-content.jive-create-thread #jive-compose-title,
  1282.     .j-thread .jive-content.jive-create-thread .jive-editor-panel.jive-large-editor-panel,
  1283.     .jive-body-formpage-document .jive-content.doc-page #jive-compose-title,
  1284.     .jive-body-formpage-document .jive-content.doc-page .jive-editor-panel.jive-large-editor-panel {
  1285.         margin: 0px !important; }
  1286.  
  1287.     /* line height in editor
  1288.    
  1289.        I've tracked down a copy/paste error that happens in the editor if you decide
  1290.        to rearrange things.  Typically the cut and pasted text inherits an unwanted
  1291.        fixed size which isn't displayed in the editor and can be missed after
  1292.        submission. This issue can be suppressed by not explicitly setting the font
  1293.        size of the editor area.   turingtest2
  1294.          https://discussions.apple.com/docs/DOC-10241
  1295.     tt2's July 30th version
  1296.     .tiny_mce_content {font-size: inherit !important}  
  1297.     What I have
  1298.     body.tiny_mce_content { line-height: inherit !important; } */
  1299.    
  1300.     /* tinymce input area.  Stamp out all white
  1301.        area around top and bottom of editor */
  1302.     /* Subject input area for new post */
  1303.     div#jive-compose-title input#subject,
  1304.     .addReply .jive-thread-reply-inline,
  1305.     /* input field
  1306.        Should the page be refreshed. >> > syntax highlighting becomes invisible :-( BUG */
  1307.     div.rte_wrap.tiny_mce_content  {
  1308.         background-color: oldlace !important; /* antiquewhite azure lightskyblue
  1309.                                                  lightsteelblue snow wheat whitesmoke */
  1310.     }
  1311.  
  1312.  
  1313.    
  1314.    
  1315.     /* replying to */
  1316.     p.jive-replying-to { padding: 20px 0px !important; }
  1317.     .jive-body-formpage-comment .jive-thread-message
  1318.         { margin: 0px 40px 0px 80px !important; }
  1319.  
  1320.     /* reply to avatar */
  1321.     .j-thread-post header .j-post-avatar {
  1322.         position: absolute !important;
  1323.         top: 0px !important;
  1324.         left: -50px !important;
  1325.         width: auto !important;
  1326.     }
  1327.    
  1328.     /* buttons (Reply|Cancel) 0,2
  1329.     .j-publishbar,
  1330.     .jive-body-formpage .jive-composebuttons { margin: 20px 40px 0px !important; } */
  1331.  
  1332.  
  1333.     /* --------------------------------------------------------------------------------
  1334.         ACTIVITY STREAM
  1335.     */
  1336.     /* activity entry */
  1337.     .j-act-entry { padding: 5px 0px 10px 100px !important; }
  1338.  
  1339.     /* activity title */
  1340.     .j-body-home .j-act-title { padding: 5px 0px 5px 24px !important; }
  1341.  
  1342.     /* activity body & comment */                                                  
  1343.     .j-body-home .j-act-init { padding: 5px 0px 10px 100px !important; }
  1344.     .apple-activity-comments-wrapper { margin-left: 0px !important; }
  1345.  
  1346.     /* Like list */
  1347.     .j-act-grouped .j-act-g-item { padding: 3px !important; }
  1348.    
  1349.    
  1350.     /* --------------------------------------------------------------------------------
  1351.         SEARCH RESULTS
  1352.     */
  1353.     /* search result entry */
  1354.     .j-search-results-main-container .j-search-result { padding: 10px !important; }
  1355.  
  1356.  
  1357.     /* --------------------------------------------------------------------------------
  1358.         DOC (USER TIP)
  1359.     */                                                                              
  1360.     /* user tip canvas */
  1361.     .jive-body-content.j-doc .j-column-wrap-l { margin: 0px 40px !important; }
  1362.  
  1363.     /* user tip border etc */                                                /* NEW */
  1364.     .j-doc .jive-content {
  1365.         margin: 0px !important;
  1366.      /*   margin-left: 150px !important; */
  1367.         padding: 10px !important;
  1368.         border: thin dotted !important;
  1369.     }
  1370.  
  1371.  
  1372.     /* ---------------------------------------------------------------------------------
  1373.         BLOG (MODERATOR TIP)  NEW */
  1374.    
  1375.     /* blog canvas */
  1376.     .jive-body-content.j-blog .j-column-wrap-l { margin: 0px 40px !important; }
  1377.    
  1378.     /* blog border etc */
  1379.     .jive-content-blog {
  1380.         margin: 0px !important;
  1381.         padding: 10px !important;
  1382.         border: thin dotted !important;
  1383.         border-radius: 0px !important;
  1384.     }
  1385.  
  1386.  
  1387.     /* ---------------------------------------------------------------------------------
  1388.         UNAUTHORIZED (WARNING)
  1389.     NEW */
  1390.                                                                                        
  1391.     /* unauthorized error message */
  1392.     .jive-body-warn.jive-body-unathorized #j-main { margin: 0px 40px !important; }
  1393.  
  1394.    
  1395.     /* --------------------------------------------------------------------------------
  1396.         PROFILE
  1397.     */                                                                              
  1398.     /* header & navigation bar (Bio|Activity|People|Content|Communities|Bookmarks) */
  1399.     .j-view-profile .j-page-header { padding: 10px 40px !important; }
  1400.     .j-bigtab-nav { margin: 10px 40px !important; }
  1401.    
  1402.     /* filter ui current selection blue marker */                             /* NEW */
  1403.     .j-view-profile .j-second-nav ul > li.active {
  1404.         display: none !important;
  1405.     }
  1406.  
  1407.     /* ------------------
  1408.         Bio
  1409.     */
  1410.     .j-layout-l .j-column-wrap-l { width: 100% !important; }
  1411.    
  1412.     /* ------------------
  1413.         profile specialties and awards
  1414.     */
  1415.     /* profile status container for specialties and awards */       /* REFINED (rule) */
  1416.     .jive-view-profile .profile-status-container { display: none !important; }
  1417.  
  1418.     /* profile modal note status row for specialties and awards */
  1419.     .status-row { display: none !important; }                                      
  1420.     /* ------------------ */
  1421.  
  1422.  
  1423.     /* ------------------
  1424.         Content
  1425.     */                                                                          /* NEW */
  1426.     /* browser control ui */
  1427.     .j-view-profile .j-layout-sl.j-browse-content .j-column-s #js-browse-controls {
  1428.         margin: 25px 0px 0px -166px !important;
  1429.     }
  1430. } /* end */
  1431.  
  1432. /* ==============================================  
  1433.    Revise the display of posts in a Thread.      0.2
  1434.    Each of these cases may have one or more post after:
  1435.      -- Question only
  1436.      -- Question with answer
  1437.      -- Question with helpful
  1438.      -- Question with answer and helpful
  1439.    examples:
  1440.    https://discussions.apple.com/thread/7583029
  1441.    https://communities.apple.com/pt/thread/4531
  1442.    https://communities.apple.com/pt/thread/4705
  1443.  
  1444.   */
  1445. @-moz-document
  1446.    url-prefix(https://discussions.apple.com/thread),
  1447.    url-prefix(https://discussions.apple.com/message),
  1448.    url-prefix(https://discussions.apple.com/update-advanced-comment.jspa),
  1449.    url-prefix(https://discussionsjapan.apple.com/thread),
  1450.    url-prefix(https://discussionsjapan.apple.com/message),
  1451.    url-prefix(https://discussionsjapan.apple.com/update-advanced-comment.jspa),
  1452.    url-prefix(https://discussionskorea.apple.com/thread),
  1453.    url-prefix(https://discussionskorea.apple.com/message),
  1454.    url-prefix(https://discussionskorea.apple.com/update-advanced-comment.jspa),
  1455.    url-prefix(https://communities.apple.com/es/thread),  
  1456.    url-prefix(https://communities.apple.com/es/message),  /* I have not see an es message */
  1457.    url-prefix(https://communities.apple.com/es/update-advanced-comment.jspa),
  1458.    url-prefix(https://communities.apple.com/pt/thread),
  1459.    url-prefix(https://communities.apple.com/pt/message),
  1460.    url-prefix(https://communities.apple.com/pt/update-advanced-comment.jspa) {
  1461.        
  1462.         /* Debug to identify which page we found.  Place our ukiyo-e. */      
  1463.  /*   h1, h2, h3 {    
  1464.           background-color: aqua !important;      
  1465.           border: 2px dashed black !important;    
  1466.          }
  1467.    */
  1468.       /* significant classes and selecters  0.21
  1469.          To select in Question and posible answer and helpful
  1470.          Starts with times stamp.  Example "Jul 5, 2016 11:44 PM in response to Ferd II"
  1471.          Doesn't include original poster info.
  1472.            section.j-original-message
  1473.        
  1474.          to select all replies
  1475.            div.all-replies-container
  1476.            ul-jive-discussion-replies.jive-discussion-flat.jive-discussion-indent-0
  1477.       */
  1478.       /* Place the poster info to the left of the post for medium and large windows.
  1479.          Let poster info above the the post for a small window such as found on a smart
  1480.          phone. 0.30 */
  1481.  
  1482.  /* ================================================= */
  1483. /* for small windows such as a smart phone.   0.30 */      
  1484. @media all and (max-width: 499px) {
  1485.    
  1486.      /* adjust margin for smart phone screen here.  Different margin adjust is done for larger screens
  1487.         just below.  More adjustments to element are made after moving of poster info for larger
  1488.         windows. */
  1489.    
  1490.      /* thread message border.  All message except question it seems. */
  1491.      .jive-discussion-replies li.reply .jive-thread-message {
  1492.          margin-left: 0px  !important;      /* There is some other margin to prevent going all the way
  1493.                                                to the left margin. */
  1494.       }
  1495.    
  1496.      /* thread original messeage (question) */                                        
  1497.      .j-thread-post section.j-original-message {
  1498.          margin: 0px 30px 0px 30px  !important;
  1499.        }
  1500.    
  1501. }
  1502.  
  1503. /* ================================================= */      
  1504. /* For medium and large size windows... */
  1505. @media all and (min-width: 500px) {
  1506.    
  1507.    
  1508.                
  1509.     /* Indent reply so that it stands out.
  1510.        Used for margins around tinymce's playground */
  1511.     .j-thread #body-apple .addReply
  1512.     {
  1513.         max-width: inherit !important;
  1514.         margin: 10px 40px !important;
  1515.     }
  1516.    
  1517.      /* thread message border.  All message except question it seems.   0.30 */
  1518.      .jive-discussion-replies li.reply .jive-thread-message {
  1519.          margin-left: 80px  !important;      
  1520.       }
  1521.      
  1522.      /* thread original messeage (question) */                                          /* 0.30 */
  1523.      .j-thread-post section.j-original-message {
  1524.        margin: 0px 30px 0px 110px  !important;
  1525.        }
  1526.      
  1527.     /* Move who wrote the question back to where it was before!
  1528.          Will appear to the left of the question text box. */
  1529.  
  1530.       /* Avatar #1 of Original Poster 0.31 */
  1531.       header.js-original-header  img.jive-avatar {
  1532.            position: absolute !important;
  1533.            top: -20px !important;
  1534.            left: 15px !important;
  1535.            width: 75px !important;
  1536.            height: 75px !important;  
  1537.            /*background-color: yellow !important; /**/  
  1538.          }
  1539.  
  1540.       /* Let questioner's info escape the box  */
  1541.       div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden
  1542.         { overflow: visible !important; }
  1543.      
  1544.        /* html for user's name
  1545.          <strong itemprop="author"
  1546.               itemscope=""
  1547.               itemtype="http://schema.org/Person">
  1548.            <a rel="nofollow"
  1549.               href="/people/rccharles"
  1550.               data-externalid=""
  1551.               data-username="rccharles"
  1552.               data-avatarid="1095"
  1553.               id="jive-99999999999999999999999"
  1554.               data-userid="999999"
  1555.               data-presence="null"
  1556.               class="jiveTT-hover-user jive-username-link">rccharles</a>
  1557.           </strong>
  1558.        */
  1559.       /* move questioner to left of post 0.21 0.31 */
  1560.       header.js-original-header.apple-overflow-hidden  div.j-post-author a  {
  1561.           position: absolute !important;
  1562.           top: -40px !important;
  1563.           left: 10px !important;
  1564.           text-align: center !important;
  1565.           width: 120px !important;  
  1566.           font-weight: 400 !important;  /* don't bold */  
  1567.           /*background-color: greenyellow !important; /**/
  1568.          }        
  1569.  
  1570.      /* questioner's points icon. fyi: position: absolute didn't work here.   === 0.22 *0.31 0.32 */
  1571.      div.j-thread-post.j-rc4 header.js-original-header.apple-overflow-hidden
  1572.        span.status-image img.svg {
  1573.          margin-top: 40px !important;
  1574.          margin-left: -40px !important;
  1575.          max-width:30px;
  1576.          max-height:30px;
  1577.          width: auto;
  1578.          height: auto;
  1579.          }  
  1580.  
  1581.       /* questioner's points whole area.  Actual coding:
  1582.          <span class="level-points">Level 6
  1583.              <span>(8,266 points)</span>
  1584.          </span>
  1585.          0.22
  1586.       */
  1587.       div.status-container span.j-status-level:not(.community-manager) span.level-points
  1588.         {
  1589.           position: absolute !important;
  1590.           top: 70px !important;
  1591.           left: -94px !important;    /* shove level # off the left of window.  
  1592.                                         Need to save space. */        
  1593.           width: 150px !important;
  1594.           text-align: center !important;
  1595.           text-indent: -114px !important;
  1596.           font-size: 12px !important;
  1597.           line-height: 12px !important;
  1598.           /*background-color: turquoise !important; /* */
  1599.          }  
  1600.       /* actual number of points 0.22 */
  1601.       div.status-container span.j-status-level:not(.community-manager) span.level-points span {
  1602.           margin-left: 20px !important;
  1603.           display: inline !important;                    
  1604.           /*background-color: yellow !important; /* */
  1605.          }  
  1606.        
  1607.       /* Community host.  css is a little different
  1608.            <span class="j-status-level community-manager">
  1609.                <span class="status-image">
  1610.                     <img
  1611.                         class="svg"              
  1612.                         src="/6.0.3.0d25e296/resources/images/status/ph-usermoderator.png?vid=20160707"                                
  1613.                         alt="">
  1614.                </span>
  1615.                <span class="level-points"> Community Hosts
  1616.                </span>
  1617.            </span>
  1618.        
  1619.            0.22 */
  1620.       header.js-original-header.apple-overflow-hidden span.j-status-level.community-manager
  1621.         span.level-points {
  1622.           position: absolute !important;
  1623.           top: 144px !important;
  1624.           left: -95px !important;    
  1625.           font-size: 12px !important;
  1626.           line-height: 12px !important;
  1627.           text-align: center !important;
  1628.           width: 120px !important;
  1629.          }  
  1630.      
  1631.       /* Time of question.  Where to place after moving info to the side.  0.22 */
  1632.       /* move time questioner made question  to after questioner name */
  1633.       /*  div#body-apple section.j-original-message p.meta-posted  {
  1634.            position: absolute !important;
  1635.            top: -12px !important;
  1636.            left: 280px !important;          
  1637.          } */
  1638.    
  1639.       /* Leave some space above the bottons and below the text. */
  1640.       /* div#body-apple section.j-original-message  div.thread-actions
  1641.         { margin-top: 20px !important;} */
  1642.      
  1643.      /* For some reason, maybe overflow: visible, wrecks some tags positioning, fix up. */
  1644.      /* Move folling and tool icon back to where they were */
  1645.      ul.apple-social-actions-toolbar  { margin-top: -45px !important; }
  1646.  
  1647.        
  1648.       /* Move who wrote a post ( just relpies ) back to where it was before!
  1649.          ------------------------------------------------------------------
  1650.          some tags do not move in question in answer or helpful in answer.
  1651.          Avatar 0.21 0.31*/
  1652.          div.all-replies-container ul.jive-discussion-replies a img.jive-avatar
  1653.          {
  1654.            position: absolute !important;
  1655.            top: -0px !important;
  1656.            left: -102px !important;
  1657.            width: 55px !important;
  1658.            height: 55px !important;
  1659.            /*background-color: turquoise !important; /**/
  1660.          }
  1661.        /* username 0.21 */  
  1662.        div.message-profile span.username {
  1663.            position: absolute !important;
  1664.            top: 59px !important;
  1665.            left: -136px !important;
  1666.            font-size: 13px !important;
  1667.            line-height: 13px !important;
  1668.            text-align: center !important;
  1669.            width: 125px !important;
  1670.            padding: 0px !important;
  1671.            /*background-color: turquoise !important;/**/
  1672.          }
  1673.        
  1674.        /* Points icon on the Reply post 0.21 0.32*/
  1675.        div.message-profile span.status-image {
  1676.            position: absolute !important;
  1677.            top: 76px !important;
  1678.            left: -80px !important;
  1679.            /*background-color: turquoise !important;/**/
  1680.          }
  1681.      
  1682.      div.message-profile span.status-image img[alt="Community Manager"],
  1683.      div.message-profile span.status-image img[alt="Level 9"],
  1684.      div.message-profile span.status-image img[alt="Level 10"]{
  1685.            position: absolute !important;
  1686.            top: 0px !important;
  1687.            left: -4px !important;
  1688.            max-width:34px;
  1689.            max-height:34px;
  1690.            width: auto;
  1691.            height: auto;
  1692.            /*background-color: pink !important;/**/
  1693.          }/**/
  1694.        
  1695.        /* time of posting.
  1696.           example: Jun 13, 2016 10:48 AM in response to Eric Root  0.21
  1697.        */
  1698.        div.j-thread-post.j-rc4 > h3 + div.message-profile + span.j-inresponse-to
  1699.            {margin-top: -12px !important;} /* eyeball to be the same as botton spacing */
  1700.        
  1701.        /*  <span class="level-points">Level 7
  1702.                 <span>(27,528 points)</span>
  1703.            </span>
  1704.        
  1705.            level number hid by slidding of window    0.21*/
  1706.       /*div.message-profile span.j-status-level:not(.community-manager) span.level-points ::before{
  1707.          content: " - Remember this";}*/
  1708.       div.message-profile span.j-status-level:not(.community-manager) span.level-points
  1709.         {
  1710.           position: absolute !important;
  1711.           top: 101px !important;
  1712.           left: -130px !important; /* shove level # off the left of window.  
  1713.                                       Need to save space.*/        
  1714.           width: 500px !important;
  1715.           text-align: center !important;
  1716.           text-indent: -465px !important;
  1717.           font-size: 12px !important;
  1718.           line-height: 12px !important;
  1719.          }
  1720.    
  1721.       /* points.  move to a visible spot 0.21 */
  1722.       div#jive-body div.message-profile span.j-status-level:not(.community-manager)
  1723.         span.level-points span {
  1724.           margin-left: 20px !important;
  1725.           display: inline !important;                  
  1726.           /*background-color: yellow !important; /* */
  1727.          }  
  1728.        
  1729.      
  1730.        
  1731.         /* Community host.  css is a little different
  1732.            <span class="j-status-level community-manager">
  1733.                <span class="status-image">
  1734.                     <img
  1735.                         class="svg"              
  1736.                         src="/6.0.3.0d25e296/resources/images/status
  1737.                              /ph-usermoderator.png?vid=20160707"                                
  1738.                         alt="">
  1739.                </span>
  1740.                <span class="level-points"> Community Hosts
  1741.                </span>
  1742.            </span>
  1743.        
  1744.            0.21 */
  1745.         div.message-profile span.j-status-level.community-manager span.level-points {
  1746.           position: absolute !important;
  1747.           top: 114px !important;
  1748.           left: -130px !important;    
  1749.           font-size: 12px !important;
  1750.           line-height: 12px !important;
  1751.           text-align: center !important;
  1752.           width: 120px !important;
  1753.          }      
  1754.        
  1755.    
  1756.        
  1757.      /* Mess with answer in question who made post information */
  1758.        
  1759.      /* Seemed the "Posted on ..." in the Answer inside the question is in the answer box
  1760.         when it should be in the footer section :-(.   Do a force adjust. Bug fix. */
  1761.      div.j-inline-correct-answer section p.meta-posted {margin-left: -20px  !important;}
  1762.    
  1763.      
  1764.      /* Move avatar and username.  */  
  1765.      /* answer inside question. Here is the html we have to work with :-(  
  1766.        <a class="username jiveTT-hover-user"
  1767.           rel="nofollow"
  1768.           href="/people/Hiroto"
  1769.           data-userid="999999"
  1770.           data-externalid=""
  1771.           data-avatarid="999999"
  1772.           data-username="Hiroto">
  1773.           <img class="jive-avatar" src="/people/Hiroto/avatar/40.png" data-height="40"
  1774.               alt="Hiroto" title="Hiroto" style="outline: none;" height="40" width="40">Hiroto
  1775.        </a>
  1776.      */
  1777.     /* avatar #2 adjust avatar after move of the a tag. */
  1778.     div.j-inline-correct-answer  img.jive-avatar {
  1779.            width: 66px !important;
  1780.            height: 66px !important;
  1781.            margin-top: -120px !important;
  1782.            margin-left: -70px !important;
  1783.            /*background-color: turquoise !important; /**/
  1784.          }
  1785.        
  1786.      /* Username
  1787.             overflow: hidden !important;
  1788.             text-overflow: ellipsis !important;
  1789.      */  
  1790.      div.j-inline-correct-answer div.footer-profile a.username.jiveTT-hover-user {
  1791.            position: absolute !important;
  1792.            top: 70px !important;
  1793.            left: -142px !important;
  1794.            font-size: 13px !important;
  1795.            line-height: 13px !important;
  1796.            text-align: center !important;
  1797.            width: 120px !important;
  1798.            padding: 0px !important;
  1799.            display:block !important;
  1800.            overflow: visible !important;
  1801.          }
  1802.          
  1803.      /* points icon within answer inside question */
  1804.      section.j-original-message div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1805.            position: absolute !important;
  1806.            top:  0px !important;
  1807.            left: -15px !important;
  1808.          }  
  1809.        
  1810.      /* points */  
  1811.      div.j-inline-correct-answer div.footer-profile span.level-points > span {
  1812.            position: absolute !important;
  1813.            top: 114px !important;
  1814.            left: -148px !important;
  1815.            font-size: 12px !important;
  1816.            line-height: 12px !important;
  1817.            text-align: center !important;
  1818.            width: 120px !important;
  1819.          }  
  1820.        
  1821.      /* answer points icon in regular reply area */
  1822.      div.all-replies-container div.j-inline-correct-answer div.footer-profile span.status-image img.svg {
  1823.            position: absolute !important;
  1824.            top:  16px !important;
  1825.            left: -10px !important;
  1826.          }  
  1827.    
  1828.        
  1829.      /* Avatar # 3 Move avatar */
  1830.      /* helpful inside question */
  1831.      div.j-inline-promoted-helpful-answer  img.jive-avatar{
  1832.            position: absolute !important;
  1833.            top: 5px !important;
  1834.            left: -96px !important;
  1835.            width: 66px !important;
  1836.            height: 66px !important;
  1837.            /*background-color: pink !important; /**/
  1838.          }
  1839.            
  1840.        
  1841.       /* points icon */
  1842.       div.j-inline-promoted-helpful-answer div.footer-profile span.j-status-levels img {
  1843.            position: absolute !important;
  1844.            top:  76px !important;
  1845.            left: -74px !important;
  1846.          }
  1847.        
  1848.       /* points */
  1849.       div.j-inline-promoted-helpful-answer div.footer-profile span.level-points > span {
  1850.            position: absolute !important;
  1851.            top: 108px !important;
  1852.            left: -100px !important;
  1853.            font-size: 12px !important;
  1854.            line-height: 12px !important;
  1855.          }  
  1856.  
  1857. } /* end of moving posters to the left of the message <------------- */
  1858.        
  1859.        
  1860.      /* Comman for all window sizes in disaplay of posts. */
  1861.        
  1862.      /* thread original messeage (question) */                                          /* 0.30 NEW */
  1863.      /* #FFFFCC  parchment #EDF7E8 light green answered  */
  1864.      .j-thread-post section.j-original-message {
  1865.            /* margin: 0px 30px 0px 110px  !important; */      
  1866.          padding: 15px 10px !important;
  1867.          border-style: dotted !important;
  1868.          border-width: thin !important; /* thin */
  1869.          background: none repeat scroll 0% 0% #FFFFCC !important;  /* parchment */
  1870.        }
  1871.      
  1872.      /* Reply button  */
  1873.      .j-thread-post section .thread-actions {
  1874.          max-width: inherit !important;
  1875.          margin: 0px 25px 0px 0px !important;
  1876.        }
  1877.    
  1878.      /* lower metadata "Posted on ..."  */
  1879.      .meta-posted {
  1880.          max-width: inherit !important;
  1881.          margin: 10px 25px 20px 0px !important;  /* margin-left: 0px   */
  1882.          font-size: 16px !important;    
  1883.        }
  1884.        
  1885.      /* thread message border.  All message except question it seems.   0.30 NEW */
  1886.      .jive-discussion-replies li.reply .jive-thread-message {
  1887.          border-style: dotted !important;
  1888.          border-width: thin !important;
  1889.          /* margin-left: 80px  !important;  */    
  1890.        }    
  1891.        
  1892.      /* promoted helpful answer and prompted recommended answer */                      /* 0.3 NEW */
  1893.      /* Doesn't seem to have any effect :-( */
  1894.      .j-inline-promoted-helpful-answer,
  1895.      .j-inline-recommended-answer {
  1896.          background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  1897.          padding: 15px 10px 5px 10px !important;
  1898.          margin: 0px 10px 15px 80px !important;
  1899.          /* background-color: turquoise !important; */
  1900.          border-style: dotted !important;
  1901.          border-width: thin !important;
  1902.        }
  1903.    
  1904.      /* ditch line between original post and first reply post
  1905.         No need since since setting background-color in orginal post 8-5-2016 */
  1906.      div ul.jive-discussion-replies.jive-discussion-flat.jive-discussion-indent-0 {
  1907.          border-top: 0px !important; }
  1908.      
  1909.      /* Tighten up double paragraphs spacing.  I put in a blank paragraph to
  1910.         separate "real" paragraphs  
  1911.           https://discussions.apple.com/message/30333231#30333231 */
  1912.      .j-thread .jive-content .j-thread-post section p,
  1913.      .j-thread .jive-content .j-thread-post section .jive-rendered-content p,
  1914.      .j-thread .jive-content .j-thread-post section.j-original-message .jive-rendered-content p {
  1915.          min-height: 0px !important;
  1916.      }
  1917.  
  1918.      /* Let's make the paragraph text a little more compact. */
  1919.      p[style="min-height: 8pt; height: 8pt; padding: 0px;"] { height: 0.6em !important; }
  1920.        
  1921.      /* the control that shows all replies, and forces the display of all replies
  1922.         when they might otherwise be hidden. Thanks turingtest2, London, UK  */
  1923.      .helpful-allreply {display: none !important;}                  /* Hide helpful/all reply switch */
  1924.      #helpful-container {display: none !important;}                 /* Hide helpful block */
  1925.      .all-replies-container {display: inherit !important;}          /* Display all replies block */
  1926.  
  1927.      /*You can hide the copies of any solved/recommended answers that appear immediately
  1928.        below the question with:   turingtest2 */
  1929.      .j-answer-rollup {display: none !important;}                         /* Hide solved/recommended block */
  1930.  
  1931.      /* No more link popup on simple edit.  turingtest2  
  1932.        .-.-.-.-.-.-.-.- */
  1933.      /*  .popOverContent {display: none !important;}          /* Suppress pop-up link editor */  
  1934.        
  1935.      /* For buttons without the black background like cancel
  1936.         Color picker
  1937.         http://www.w3schools.com/colors/colors_picker.asp */
  1938.          /* "I have this question too" on question */
  1939.      span.j-social-action.black-button.j-disabled,
  1940.      div.jive-composebuttons button.j-btn-global,
  1941.      span a.black-button.jive-acclaim-likelink,  /* question button */
  1942.      div.j-inline-correct-answer footer a.action-button,  /* answer button */
  1943.      span.js-acclaim-container.acclaim-container a /* response button */
  1944.        {
  1945.          padding: 7px 7px !important;
  1946.          color:  #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1947.          font-size: 14px !important;
  1948.          line-height: 14px !important;
  1949.          background-color: #f2f2f2 !important;
  1950.  
  1951.        }
  1952.        
  1953.      /* "I have this question too" on question.
  1954.         Why was opacity 0.5 on this button but not others? */
  1955.      span.j-social-action.black-button.j-disabled {opacity: 1 !important;}
  1956.        
  1957.      /* button in reponse */
  1958.      div.all-replies-container .jive-thread-helpful-btn {
  1959.          color: #0288CC !important;  /* light blue */
  1960.          background-color: #f2f2f2 !important;    
  1961.        }
  1962.  
  1963.      /* Upper tool icon pulldwon */
  1964.      ul#jive-action-sidebar-tab-list_thread-actions-tab *,
  1965.           /* Lower tool icon pulldwon */
  1966.      ul.apple-thread-options.js-toggle-thread-actions li *,
  1967.           /* change lower button text from grey to light blue. */
  1968.      a.discussionPermaLink
  1969.      /* span.jive-icon-sml.jive-icon-warn */{  color: #0288CC !important;  /* light blue */}
  1970.        
  1971.      /* Make all lower buttons the same. Who ever heard of different size buttons? */  
  1972.        
  1973.          /* save reply, button you get to save an edit of a post */
  1974.      div.jive-composebuttons button#submitButton.j-btn-callout,  /* post button on edit of orginal post */
  1975.          /* Correct answer.  Isn't as bad as the reply button, but might as well use the
  1976.             same set of rule, even if we do not need all. may not be correct button :-( */
  1977.      div.jive-thread-reply-btn-correct a,
  1978.          /* Following; upper right 0.31 */
  1979.      a#jive-link-thread-following.following-button,  /* no box */
  1980.          /* alternative state of following button, follow */
  1981.      a#jive-link-thread-startFollowing.button.follow-button,
  1982.          /* action button with the V */
  1983.      a.apple-actions-link,  /* not working */
  1984.          /* Tone down Reply Button */
  1985.          /* footer div.footer-toplevel-actions a .discussionAdd, */
  1986.      .discussionAdd,
  1987.          /* clicking on Reply to get the inputput, this is the save */
  1988.      div input.jive-form-button-save.j-btn-callout,
  1989.           /* clicking on Reply to get the inputput, this is the cancel */
  1990.      div input.jive-form-button-cancel{
  1991.          background-image: none !important; ;   /* bye, bye gradiant */
  1992.          background-color: #f2f2f2 !important;
  1993.          color: #0288CC !important;  /* light blue, was rgb(150,150,150) grey */
  1994.          padding: 7px !important;
  1995.          font-size: 14px !important;
  1996.          line-height: 14px !important;
  1997.          margin-bottom: 8px !important;
  1998.        }
  1999.      
  2000.      /*  save reply, button you get to save an edit of a post. touch up
  2001.        https://discussions.apple.com/update-advanced-comment.jspa?id=30347987 */
  2002.      div#body-apple button#submitButton.j-btn-callout { margin-left: 20px !important; }
  2003.    
  2004.        
  2005.      /* Following button, upper right. Might as well box it for consistancy 0.31 */
  2006.      a#jive-link-thread-following.following-button  {
  2007.          border-style: solid !important;
  2008.          border-width: thin !important;
  2009.          border-color: #9b9b9b !important; /* grey, Apple's color */
  2010.          padding: 6px 6px 8px 28px !important;
  2011.        }
  2012.        
  2013.      
  2014.      
  2015.      /* Check icon with Following.  Move to the left of following. */
  2016.      span.following-check.icon.icon-check {
  2017.          margin-left: -10px !important;
  2018.          margin-top: -7px !important;
  2019.        }
  2020.        
  2021.      /* Tool icon button upper left, right of Following button */
  2022.      a#apple-actions-link { padding: 4px 6px 4px !important; }
  2023.      
  2024.      /* Tool icon button lower left. same row as reply button */
  2025.      a.js-toggle-thread-options.thread-options  { padding: 4px 4px 4px !important; }
  2026.            
  2027.      /* Tool box upper right */
  2028.      ul.apple-social-actions-toolbar li.apple-actions {height: 28px !important;}
  2029.        
  2030.      /* User machine and operating system info from profile
  2031.         Make metadata font size the same. */
  2032.      section.j-original-message p.jive-model-info-display {
  2033.          font-size: 16px !important;
  2034.          margin-left: 0px !important;
  2035.        }
  2036.        
  2037.      /* hover */
  2038.           /* "I have this question too" on question */
  2039.      span.j-social-action.black-button.j-disabled:hover,
  2040.           /* Following; upper right */
  2041.      a#jive-link-thread-following.button.following-button:hover,      
  2042.        /* post button on edit of orginal post */
  2043.      div.jive-composebuttons button#submitButton.j-btn-callout:hover,
  2044.           /* cancel button on edit of orginal post */
  2045.      div.jive-composebuttons button.j-btn-global:hover,
  2046.           /* clicking on Reply to get the input, this is the save */    
  2047.      div input.jive-form-button-save.j-btn-callout:hover,
  2048.           /* clicking on Reply to get the inputput, this is the cancel */
  2049.      div input.jive-form-button-cancel:hover,
  2050.        /* Reply button hover state */
  2051.        .discussionAdd:hover{ border-color: #0288CC !important; }
  2052.        
  2053.          
  2054. /* ================================================= */
  2055. /* Only for narrow width windows. */
  2056. @media all and ( min-width: 500px ) and ( max-width: 1265px ) {
  2057.     /* let a little space to the left of the navigation bar. */      
  2058.     div .j-column.j-column-s nav  {  
  2059.         margin-left: 0px !important;      
  2060.         margin-top: 20px !important;  /* max of margin-bottom of
  2061.                                          proceeding line and margin-top */    
  2062.         }  
  2063.    
  2064.     .j-thread #body-apple .thread-container-wrapper
  2065.     {
  2066.         max-width: inherit !important;
  2067.         margin: 10px 40px !important;
  2068.     }
  2069.            
  2070.   } /* end of media */
  2071.  
  2072.  
  2073. /* ================================================= */
  2074. /* Only for small windows cell phones and cell phones in lanscape mode. */
  2075.    @media all and (max-width: 499px) {
  2076.       /* the once upon a time sidebar */
  2077.       li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link {
  2078.           height: 16px !important;
  2079.           /*background-color: antiquewhite !important;/**/}
  2080.    
  2081.       /* let a little space to the left of the navigation bar. */      
  2082.       div .j-column.j-column-s nav  {  
  2083.           margin-left: 0px !important;      
  2084.           margin-top: 50px !important;  /* max of margin-bottom of proceeding line
  2085.                                          and margin-top */  
  2086.           /*background-color: azure !important;/**/
  2087.         }  
  2088.    
  2089.     /* was sidebar now moved to horizontal */
  2090.     div.j-column.j-column-s nav.j-second-nav {    
  2091.         margin-bottom: 10px !important;
  2092.         /*background-color: red !important;/**/}
  2093.    
  2094.     /* Seems to be a blank line below [Following] */
  2095.     .j-thread #body-apple div.thread-container-wrapper
  2096.       {
  2097.         max-width: inherit !important;
  2098.         margin: 0px 5px !important;
  2099.         /*background-color: green !important;/**/
  2100.       }
  2101.      
  2102.       /*  Question Q: */
  2103.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2104.        h1 span.q-marker
  2105.       {
  2106.         margin-top: -12px !important;
  2107.         /*background-color: bisque !important;/**/
  2108.       }
  2109.    
  2110.      /*  Question Title */
  2111.      .j-thread #body-apple div.j-thread-post section.j-original-message h1
  2112.       {
  2113.         display: inline !important;
  2114.         font-size: 20px !important;
  2115.         /*background-color: bisque !important;/**/
  2116.       }
  2117.    
  2118.      /* Text in orginal post */
  2119.      .j-thread #body-apple div.j-thread-post section.j-original-message span div.jive-rendered-content
  2120.       {
  2121.         margin-top:10px !important;
  2122.         display: inline !important;
  2123.         /*background-color: bisque !important;/**/
  2124.       }
  2125.   } /* end of media */
  2126.        
  2127.        
  2128. /* ================================================= */
  2129. /* Only for narrow width windows. */
  2130. @media all and ( min-width: 321px ) and ( max-width: 499px ) {
  2131.        
  2132.     /* let a little space to the left of the navigation bar. */      
  2133.         div .j-column.j-column-s nav  {  
  2134.         margin-left: 0px !important;      
  2135.         margin-top: 20px !important;  /* max of margin-bottom of proceeding line and margin-top */    
  2136.     }  
  2137.            
  2138.     .j-thread #body-apple .thread-container-wrapper
  2139.     {
  2140.         max-width: inherit !important;
  2141.     }
  2142.      
  2143.      .j-thread #body-apple .thread-container-wrapper,
  2144.      .j-thread #body-apple div.jive-content.j-op,    
  2145.      /* Original post info */
  2146.      .j-thread #body-apple div.j-thread-post header.js-original-header,
  2147.      /* Replies */
  2148.      .j-thread #body-apple div.all-replies-container,
  2149.      /*  Question */
  2150.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2151.       {
  2152.         margin: 10px 10px !important;
  2153.         /*background-color: bisque !important;/**/
  2154.       }
  2155.        
  2156.    
  2157.   } /* end of media */
  2158.        
  2159.        
  2160. /* ================================================= */
  2161. /* adjustment for display of posts in a discussion for small screen
  2162.    found on smart phones */
  2163. @media all and (max-width: 320px) {
  2164.            
  2165.      .j-thread #body-apple div.jive-content.j-op,    
  2166.      /* Original post info */
  2167.      .j-thread #body-apple div.j-thread-post header.js-original-header,
  2168.      /* Replies */
  2169.      .j-thread #body-apple div.all-replies-container,
  2170.      /*  Question */
  2171.      .j-thread #body-apple div.j-thread-post section.j-original-message
  2172.       {
  2173.         margin: 5px 5px !important;
  2174.         /*background-color: bisque !important;/* light brownish red */
  2175.       }
  2176.    
  2177.      /* reply button */
  2178.      .j-thread #body-apple div.thread-actions  
  2179.      {
  2180.         width: 95% !important;
  2181.         /*background-color: lemonchiffon !important;/**/
  2182.      }
  2183.    
  2184. } /* end of media */
  2185.  
  2186.        
  2187. } /* @-moz-document for responses */
  2188.  
  2189.  
  2190.  
  2191. /* =======================================================================================
  2192.    For ASC web pages with a sidebar shown on narrow window, make the side bar
  2193.    horizontal. Adjusts the column sizes in lists.
  2194.    adding more @-moz-document callouts prevents collateral damage
  2195.    to other web pages when css class and id conflicts.
  2196.    example pages:
  2197.      https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread]
  2198.      https://discussions.apple.com/community/ipad/ipad_in_business_and_education/content
  2199.         ?filterID=contentstatus[published]~objecttype~objecttype[thread]
  2200.      https://communities.apple.com/es/community/ipad/using_ipad/content?filterID=
  2201.         contentstatus[published]~objecttype~objecttype[thread]
  2202.      https://communities.apple.com/pt/people/espa%C3%B1ol.rccharles/content?manage=true
  2203.    avoid:
  2204.      https://communities.apple.com/pt/search.jspa
  2205.  https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread]
  2206.    */
  2207.      
  2208. @-moz-document
  2209.    url-prefix(https://discussions.apple.com/content),
  2210.    url-prefix(https://discussions.apple.com/community),
  2211.    url-prefix(https://discussions.apple.com/people),
  2212.    url-prefix(https://discussionsjapan.apple.com/content),
  2213.    url-prefix(https://discussionsjapan.apple.com/community),
  2214.    url-prefix(https://discussionsjapan.apple.com/people),
  2215.    url-prefix(https://discussionskorea.apple.com/content),
  2216.    url-prefix(https://discussionskorea.apple.com/community),
  2217.    url-prefix(https://discussionskorea.apple.com/people),
  2218.    url-prefix(https://communities.apple.com/es/content),    
  2219.    url-prefix(https://communities.apple.com/es/community/),
  2220.    url-prefix(https://communities.apple.com/es/people),  
  2221.    url-prefix(https://communities.apple.com/pt/content),
  2222.    url-prefix(https://communities.apple.com/pt/community/),
  2223.    url-prefix(https://communities.apple.com/pt/people) {  
  2224.     /* ================================================= */
  2225.    @media all and (max-width: 499px) {
  2226.        li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link
  2227.          {height: 16px !important;}
  2228.        }
  2229.        
  2230.      /* ================================================= */
  2231.     @media all and (max-width: 1265px)  {
  2232.      /* Debug to identify which page we found.  Place our ukiyo-e. */      
  2233.    /*  h1, h2, h3, #apple-site-title > a:nth-child(1), #j-globalNav-bg {    
  2234.           background-color:yellow !important;
  2235.           border: 2px dashed black !important;    
  2236.          }  */
  2237.        
  2238.     /* ------------------      
  2239.        Treatment for narrow window      
  2240.        Method 1 (minimum optimisation)      
  2241.      
  2242.        Places
  2243.        
  2244.        https://discussions.apple.com/places
  2245.        
  2246.        Adjust community list table's shift and margin to maximize its width.      
  2247.     */                                                                            
  2248.     /* ------------------ (currently commented out)      
  2249.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: -166px !important; }      
  2250.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 166px !important; }      
  2251.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }      
  2252.     ------------------ */      
  2253.     /* ------------------      
  2254.         Treatment for narrow window      
  2255.         Method 2 (more beneficial to narrow window but has disadvantage for wide window)      
  2256.          
  2257.         Let community list table have full width but not exceed 1019px to make room for      
  2258.         sidebar ui (filters & actions).  If window is wide enough (>=1265px), sidebar ui      
  2259.         is displayed next to community list table, otherwise it is displayed below or
  2260.         above it (depending upon its document tree order).      
  2261.          
  2262.         * sidebar width (constant)    = 166px      
  2263.         * community table max width   = 1019px      
  2264.         * canvas margin-left          = 40px      
  2265.         * canvas margin-right         = 40px      
  2266.         ---------------------------------------      
  2267.         * total                       = 1265px      
  2268.     */                                                                              
  2269.     /* ------------------ (currently active) */      
  2270.     .j-layout-sl.j-browse-places .j-column-wrap-l { max-width: 1019px !important; }      
  2271.     .j-layout-sl.j-browse-places .j-column-wrap-l { margin-left: 0px !important; }      
  2272.     .j-layout-sl.j-browse-places .j-column-l      { margin-left: 0px !important; }      
  2273.     .j-layout-sl.j-browse-places .j-column-l      { padding-left: 0px !important; }      
  2274.     .j-layout-sl.j-browse-places .j-column-s      { width: 166px !important; }          
  2275.     /* ------------------ */      
  2276.        
  2277.     /* See if we can position "start ad discussion, Write a user tip" bottom  
  2278.        bar a little better */    
  2279.     .j-box {    
  2280.         margin-top: 40px !important;    
  2281.         float: right !important;}    
  2282.        
  2283.    
  2284.     /* Turn verical nav list into a horizontal nav list to save vertical space.    
  2285.         This nav bar appear above the list of dicussions in the Your Content page.    
  2286.         It appears below in the list of discussions page.    
  2287.         A larger screen has room for vertical navigation, so let along. */    
  2288.  
  2289.     /* We need to make room for the horizontal nav bar.  A floating right, the area to the left    
  2290.        is blank anyway. */    
  2291.     .j-layout-sl.j-browse-content .j-column-s        
  2292.         { width: 95% !important; }  /* let more room for horizontal navigation 0.64 */    
  2293.      
  2294.      
  2295.     /* make nav bar horizontal amoung other things. */    
  2296.     div .j-column.j-column-s nav ul li {  
  2297.       float: left !important;    /* makes the list items horizontal */    
  2298.       width: 120px !important;  /* width of each link */          
  2299.       text-align: center !important;    
  2300.       margin-left: 0 !important;    
  2301.       padding-left: 0 !important;    
  2302.     }
  2303.        
  2304.     /* Piddle around so as to center the text. Straight trial and error. */
  2305.     li.j-browse-filter-group-item.js-browse-filter-group-item a.js-select-link {
  2306.         padding-top:5px !important;
  2307.         padding-bottom: 5px !important;
  2308.         /* background-color: bisque !important;/* light brownish red */}
  2309.        
  2310.      /* Piddle around so as to center the text for the user's content. Straight trial and error.
  2311.         For some reason this text is two lines height which makes for a disjoint box. */
  2312.      nav.j-second-nav ul li[data-filter-id="draft"] a.js-select-link,
  2313.      nav.j-second-nav ul li[data-filter-id="contentstatus\[published\]" ] a.js-select-link,
  2314.      nav.j-second-nav ul li[data-filter-id="participated"] a.js-select-link,
  2315.      nav.j-second-nav ul li[data-filter-id="following"] a.js-select-link,
  2316.      nav.j-second-nav ul li[data-filter-id="historyarchetype\[content\]"] a.js-select-link,
  2317.      nav.j-second-nav ul li[data-filter-id="all"] a.js-select-link {
  2318.         height: 28px !important;
  2319.         /*background-color: yellow !important; /**/
  2320.         }
  2321.            
  2322.    /* after making the navigating link horizontal, the blue overlay box doesn't immediately  
  2323.       jump to the draft box.  After clicking on any of the other links, the blue box    
  2324.       parks on the draft box and will not move.  The function must be implemented in javascript which  
  2325.       cannot be changed from css. In the May 2016 ASC, the blue box moves correct when the sidebar
  2326.       is moved to the right.  Still broken for horizontal. Purge it.    
  2327.       Upper nav bar on your content */    
  2328.       /* https://discussions.apple.com/people/<apple-id>/content */    
  2329.     body.jive-view-profile.j-view-profile.j-view-profile-nonself.other .j-second-nav > ul:nth-child(1) > li:last-child,    
  2330.        body.j-body-yourwork.other li.active:last-child {display: none !important;}    
  2331.        
  2332.    /* Found another blue overlay box.    
  2333.       https://discussions.apple.com/people/<ASC_id>/content?manage=true */    
  2334.     body.jive-view-profile.j-view-profile.j-view-profile-self.other li.active:last-child {display: none !important;}    
  2335.      
  2336.     /* style the link (a tag) inside the li    
  2337.        Put a box around the links.  Complete box makes for a dark middle Line. So, leave  
  2338.        off left line but for righ most link. Do the best we can    
  2339.        ASC box grey-line color #d7d7d7 also seems like grey #eaeaea */    
  2340.     div .j-column.j-column-s nav li a {  
  2341.        border: 1px solid #d7d7d7 !important;    
  2342.        border-left: none !important;  /* avoid double border lines for middle items */    
  2343.        padding-left: 0 !important;    
  2344.     }
  2345.    
  2346.     /* Fill in the first box with a line on the left */    
  2347.     /* Upper nav bar on your content  
  2348.        The fill in on the left of the first-child doesn't seem to be working.  Tried several
  2349.        different ways of addressing the left border.  No workie.
  2350.        https://discussions.apple.com/content?filterID=following~objecttype~objecttype[thread] */    
  2351.     /* https://discussions.apple.com/people/<apple-id>/content?manage=true */    
  2352.     div .j-column.j-column-s nav li:first-child a,
  2353.     /* https://discussions.apple.com/people/<apple-id>/content */    
  2354.     /* lower nav bar, see here:    
  2355.        https://discussions.apple.com/community/ipad/ipad_in_business_and_education  
  2356.             /content?filterID=contentstatus[published]~objecttype~objecttype[thread] */    
  2357.     body.j-body-place.other li.j-browse-filter-group-item:first-child {    
  2358.        border-left: 1px solid #d7d7d7 !important;  /* avoid double border lines for middle items */    
  2359.     }  
  2360.        
  2361.     /* Hover. horizontal nav bar */
  2362.     div .j-column.j-column-s nav li a:hover {  
  2363.         border-color: #42aaff !important;  /* light blue */    
  2364.       }  
  2365.          
  2366.   } /* media */
  2367.  
  2368.      
  2369. } /* @-moz-document url-prefix for sidebar */
  2370.  
  2371. /* ==============================================
  2372.    Leave the login window footer alone. So, turn these fields back on.    
  2373.     */      
  2374. @-moz-document    
  2375.     url-prefix(https://discussions.apple.com/people/),      
  2376.     url-prefix(https://discussions.apple.com/welcome),      
  2377.     url-prefix(https://discussionsjapan.apple.com/people/),        
  2378.     url-prefix(https://discussionsjapan.apple.com/welcome/),      
  2379.     url-prefix(https://discussionskorea.apple.com/people/),      
  2380.     url-prefix(https://discussionskorea.apple.com/welcome/),
  2381.     url-prefix(https://communities.apple.com/es/people),  
  2382.     url-prefix(https://communities.apple.com/es/welcome),      
  2383.     url-prefix(https://communities.apple.com/pt/people),
  2384.     url-prefix(https://communities.apple.com/pt/welcome)  {        
  2385.    
  2386.         /* legalistic bomblast on login window*/      
  2387.         #globaldisclaimer.sosumi {display: inherit !important; }            
  2388.         /* path to here */      
  2389.         #j-footer #breadcrumbs {display: inherit !important; }      
  2390.         /* apple product info */      
  2391.         p.gf-buy {display: inherit !important; }          
  2392. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement