Advertisement
rccharles

asc sept 14,2016 for small screen

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