Advertisement
rccharles

Hiroto's June 2016 0.11 new asc

Jun 11th, 2016
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 41.16 KB | None | 0 0
  1. /*
  2.     custom styles for Apple Support Communities board system introduced in 2016-06 (v0.11)
  3.    
  4.     v0.11
  5.         - introduced @media rules in THREAD LIST BROWSER and PLACES sections:
  6.             @media all and ( max-width: X ) rule
  7.             @media all and ( min-width: Y ) rule
  8.        
  9.         - added, refined and fixed rules in various sections, which include but not limited to
  10.             BODY
  11.                 - changed #body-apple {width: 100%} to {width: auto}, which is essential to
  12.                   prevent horizontal scroller from appearing in narrow window environment.
  13.             TEXT > font
  14.                 - added rules to use fine local font in lieu of illegible remote font
  15.             ASC TOP PAGE
  16.                 - added rules on 'search or ask a question', 'featured topics' etc
  17.             COMMUNITIES CATEGORIES OVERVIEW
  18.                 - new section
  19.             THREAD LIST BROWSER > community overview
  20.                 - added and refined rules (treating filter ui layout)
  21.             PROFILE > content
  22.                 - new subsection (treating browser control ui layout)
  23.             BLOG
  24.                 - new section
  25.             UNAUTHORIZED
  26.                 - new section
  27.  
  28.     v0.10d
  29.         - draft
  30.  
  31.     written by Hiroto, 2016-06
  32. */
  33. @-moz-document
  34.     domain(communities.apple.com),
  35.     domain(discussions.apple.com),
  36.     domain(discussionsjapan.apple.com),
  37.     domain(discussionskorea.apple.com),
  38.     domain(discussionschinese.apple.com)
  39. {
  40.     /* ------------------------------------------------------------------------------------------------
  41.         BODY
  42.     */
  43.     body.j-body-welome,             /* Welcome */
  44.     body.j-body-place,              /* Community */
  45.     body.j-body-yourwork,           /* Content */
  46.     body.j-body-home,               /* Activity */
  47.     body.j-body-yourconnections,    /* People */
  48.     body.j-body-preferences,        /* Preferences */
  49.     body.jive-body-content,         /* Thread */
  50.     body.jive-body-search,          /* Search */
  51.     body.jive-view-profile          /* Profile */
  52.     {                                                                              
  53.         background: white !important;
  54.     }
  55.     body {
  56.         background: white;
  57.         min-width: 0px !important;
  58.     }
  59.     #body-apple {
  60.         width: auto !important;
  61.         min-width: 0px !important;
  62.     }
  63.     #globalheader { display: none !important; }                                    
  64.     #global-nav-wrapper {display: none !important; }                                
  65.     #globalfooter,
  66.     #globaldisclaimer { width: 80% !important; }                                    
  67.  
  68.  
  69.     /* ------------------------------------------------------------------------------------------------
  70.         TEXT
  71.     */                                                                                      /* NEW */
  72.     body {
  73.         font-size: 16px !important;
  74.         font-weight: 400 !important;
  75.         line-height: 1.25 !important;
  76.     }
  77.     body * {
  78.         /* font-size: inherit !important; */
  79.         font-weight: inherit !important;
  80.         line-height: inherit !important;
  81.     }
  82.  
  83.     /* font
  84.         - let it use well-established fine local fonts
  85.           in lieu of slow, small, condensed and illegible remote fonts
  86.           by removing the following from the font-family per language:
  87.          
  88.           lang | remote font name
  89.           -----|-----------------
  90.             ja | "Apple TP"
  91.             ko | "Yoon Gothic"
  92.             zh | "PingHei"
  93.             en | "Myriad Set Pro"
  94.             es | "Myriad Set Pro"
  95.             pt | "Myriad Set Pro"
  96.     */                                                                                      /* NEW (experimental) */
  97. /*
  98.     * { font-family: "Lucida Grande", "Lucida Sans Unicode", Helvetica, Arial, Verdana, sans-serif !important; }
  99. */
  100.     [lang|="ja"] * {
  101.         font-family: "Hiragino Kaku Gothic Pro", "Meiryo",
  102.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  103.     }
  104.     [lang|="ko"] * {
  105.         font-family: "Apple Gothic", "HY Gulim", "MalgumGothic", "HY Dotum", "Lexi Gulim",
  106.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  107.     }
  108.     [lang|="zh"] * {
  109.         font-family: "STHeitiSC-Light",
  110.                      "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  111.     }
  112.     [lang|="en"] *,
  113.     [lang|="es"] *,
  114.     [lang|="pt"] * {
  115.         font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
  116.     }
  117.    
  118.     /* preseve monospace for pre.jive-pre */
  119.     pre.jive-pre { font-family: monospace !important; }
  120.  
  121.    
  122.     /* ------------------------------------------------------------------------------------------------
  123.         ASC HEADER, FOOTER AREA
  124.     */
  125.     #j-header,
  126.     #j-compact-header,
  127.     #j-footer { width: 100% !important; }
  128.    
  129.     /* navigation header (Apple Support Communities ...) */
  130.     #j-header-wrap {
  131.         padding: 0px 40px !important;
  132.         margin: 0px 0px 15px !important;
  133.     }
  134.     #j-globalNav-bg {
  135.         padding: 0pX !important;
  136.         margin: 0px !important;
  137.         width: auto !important;                                                             /* NEW */
  138.     }
  139.     #j-satNav { overflow: visible !important; }
  140.  
  141.     #j-header-wrap { margin-bottom: 50px !important; }                                      /* NEW */
  142.     #apple-full-header { margin: 10px 0px 0px !important; }                                 /* NEW */
  143.     #second-row {                                                                           /* NEW */
  144.         padding-top: 25px !important;
  145.         height: 30px !important;
  146.     }
  147.  
  148.     /* announcement */                                                                      /* NEW */
  149.     #jive-alert {
  150.         width: auto !important;
  151.         max-width: inherit !important;
  152.         margin: -20px 40px 10px !important;
  153.     }
  154.     .j-thread #jive-alert {
  155.         margin: -50px 40px 10px !important;
  156.     }
  157.     .jive-body-formpage.j-thread #jive-alert {
  158.         margin: -30px 40px 10px !important;
  159.     }
  160.    
  161.     /* breadcrumb */                                                                        /* NEW */
  162.     #jive-breadcrumb {
  163.         width: auto !important;
  164.         margin-right: 40px !important;
  165.         position: relative !important;
  166.     }
  167.    
  168.     /* footter */                                                                           /* NEW */
  169.     .j-js-footer-wrap {
  170.         width: auto !important;
  171.         min-width: 0px !important;
  172.     }
  173.     footer#j-footer {
  174.         width: auto !important;
  175.         min-width: 0px !important;
  176.     }
  177.  
  178.  
  179.     /* ------------------------------------------------------------------------------------------------
  180.         ASC TOP PAGE
  181.     */
  182.     .j-body-welcome #jive-alert { margin: 0px 40px !important; }
  183.     .j-body-welcome .hero-container img { width: auto !important; }
  184.     .j-body-welcome.j-body-home [id|=jive-widgetframe] > .content-large {
  185.         text-align: center !important;
  186.         overflow-x: auto !important;
  187.         overflow-y: hidden !important;
  188.     }
  189.     .apple-communities {
  190.         display: inline-block !important;
  191.         width: auto !important;
  192.         text-align: left !important;
  193.     }
  194.  
  195.     /* search or ask a question */
  196.     .ask-a-question-container .j-form input[type="text"] { width: 90% !important; }
  197.  
  198.     /* featured topics */
  199.     .jive-widget-featuredcontentwidget h2 {
  200.         font-size: 28px !important;
  201.     }
  202.     .jive-widget-featuredcontentwidget .content-large .featured-content-header {
  203.         padding-bottom: 30px !important;
  204.     }
  205.     .jive-widget-featuredcontentwidget .content-large .featured-content-header p.sub-title {
  206.         margin: 10px 0px 20px !important;
  207.     }
  208.     .jive-widget-featuredcontentwidget .featured-list-container {
  209.         max-width: 1000px !important;
  210.     }
  211.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-row {
  212.         margin-bottom: 20px !important;
  213.         border-style: dotted !important;
  214.         border-width: thin !important;
  215.     }
  216.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-user {
  217.         margin: 0px 10px !important;
  218.     }
  219.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc {
  220.         margin: 0px 10px !important;
  221.     }
  222.     .jive-widget-featuredcontentwidget h4.title {
  223.         font-size: 18px !important;
  224.         margin: 10px 0px !important;
  225.         text-decoration: underline !important;
  226.     }
  227.     .jive-widget-featuredcontentwidget .rating-row,
  228.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc blockquote,
  229.     .jive-widget-featuredcontentwidget .featured-list-container .featured-list-desc .user-metadata {
  230.         margin-bottom: 10px !important;
  231.     }
  232.    
  233.     /* new to communities? */
  234.     .on-boarding .on-boarding-header h2 {
  235.         font-size: 28px !important;
  236.         margin: 0px 0px 25px !important;
  237.     }
  238.     .on-boarding .img-container { margin: 0px auto 30px !important; }
  239.    
  240.     /* how-to grid */
  241.     .on-boarding > .grid-display {
  242.         margin-top: 40px !important;
  243.         padding: 20px 0px !important;
  244.         max-width: 1000px !important;
  245.         display: inline-block !important;
  246.     }
  247.     .on-boarding .row .column h3 {
  248.         margin: 0px 30px 20px !important;
  249.         max-height: 50% !important;
  250.     }  
  251.  
  252.  
  253.     /* ------------------------------------------------------------------------------------------------
  254.         COMMUNITIES CATEGORIES OVERVIEW
  255.     */                                                                                      /* NEW */
  256.     /* communities description */
  257.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image {
  258.         width: 200px !important;
  259.         position: absolute !important;
  260.         z-index: -1 !important;
  261.     }
  262.     .apple-space-overview .jive-widget-subcommunitieswidget .community-image img {
  263.         width: 200px !important;
  264.         height: 200px !important;
  265.     }
  266.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description {
  267.         margin-bottom: 45px !important;
  268.     }
  269.     .apple-space-overview .jive-widget-subcommunitieswidget .community-description h1 {
  270.         font-size: 28px !important;
  271.         margin: 30px 0px !important;
  272.     }  
  273.    
  274.     /* top communities */
  275.     .apple-space-overview  h2.community-title {
  276.         font-size: 24px !important;
  277.         margin: 0px 0px 20px !important;
  278.     }
  279.     .apple-space-overview .category-latest-header h3 {
  280.         font-size: 22px !important;
  281.         margin: 0px 0px 20px !important;
  282.     }
  283.     .apple-space-overview .category-latest h3,
  284.     .apple-space-overview .category-latest h4 { font-size: 20px !important; }
  285.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large       { padding: 10px !important; }
  286.     .apple-space-overview .jive-widget-subcommunitieswidget .content-large > nav { padding-top: 0px !important; }
  287.     .apple-space-overview .jive-widget-recentcontentfilterwidget {
  288.         padding-bottom: 10px !important;
  289.         margin-bottom: 0px !important;
  290.     }
  291.    
  292.     /* search for more topics */
  293.     .apple-space-overview .category-page .ask-a-question-header {
  294.         margin-top: 20px !important;
  295.         width: auto !important;
  296.     }
  297.     .apple-space-overview .category-page .ask-a-question-header h2 { font-size: 24px !important; }
  298.     .apple-space-overview .category-page .ask-a-question-container {
  299.         width: 80% !important;
  300.         max-width: 1000px !important;
  301.         margin: 30px auto !important;
  302.     }
  303.     .apple-space-overview .category-page .ask-a-question-container .j-form input[type="text"] {
  304.         padding: 10px 10px 10px 50px !important;
  305.         width: 94% !important;
  306.     }
  307.     .apple-space-overview .category-page .ask-a-question-footer { margin: 40px 0px !important; }
  308.    
  309.     /* contact apple support */
  310.     .apple-space-overview .section-eyebrow { font-size: 24px !important; }
  311.     .apple-space-overview .section-header {
  312.         font-size: 22px !important;
  313.         margin: 0px 0px 30px !important;
  314.     }
  315.        
  316.    
  317.     /* ------------------------------------------------------------------------------------------------
  318.         THREAD LIST BROWSER
  319.     */
  320.  
  321.     /* ------------------
  322.         community overview
  323.     */                                                                                      /* NEW */
  324.     .category-latest .category-latest-container .category-latest-row {
  325.         margin: 0px !important;
  326.         padding: 5px 0px !important;
  327.     }
  328.     .category-latest .category-latest-container .category-latest-row .discussion-metadata {
  329.         margin: 5px 0px !important;
  330.     }
  331.     .category-latest .category-latest-container .category-latest-row .discussion-title a {
  332.         font-size: 100% !important;
  333.         font-weight: 500 !important;
  334.         color: rgb(0, 136, 204) !important;
  335.     }
  336.     .category-latest .category-latest-container .category-latest-row:nth-child(odd) {
  337.         background: rgb(247, 247, 247) !important;
  338.     }
  339.     .category-latest .category-latest-container .category-latest-row .read-full {
  340.         display: none !important;
  341.     }
  342.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell {
  343.         margin-right: 15px !important;
  344.     }
  345.     .category-latest .category-latest-container .category-latest-row .discussion-metadata .cell a {
  346.         color: rgb(0, 136, 204) !important;
  347.         text-decoration: none !important;
  348.     }
  349.    
  350.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar {
  351.         margin: 0px 70px 10px 0px !important;
  352.     }
  353.     .apple-space-overview #body-apple .list-page .ask-a-question-sidebar .ask-a-question-space-icon {
  354.         width: 128px !important;
  355.         height: 128px !important;
  356.     }
  357.     .apple-space-overview #body-apple .list-page .ask-a-question-wrapper .community-siblings {
  358.         padding: 5px 0px !important;
  359.         font-size: 20px !important;
  360.     }
  361.  
  362.     /* content filter (by type (solved|recommended|unanswered) & category) */
  363.     .jive-content-filter {
  364.         width: 20% !important;
  365.         max-width: 250px !important;
  366.         min-width: 100px !important;
  367.         padding: 0px 10px 0px 0px !important;
  368.     }
  369.     .jive-content-filter h2 {
  370.         margin-bottom: 15px !important;
  371.         font-weight: 500 !important;
  372.     }
  373.     .jive-content-filter ul li { margin: 3px 0px !important; }
  374.     .jive-content-filter ul li:nth-child(odd) { background: rgb(247, 247, 247) !important; }
  375.     .jive-content-filter ul li a.jive-content-filter-highlight { background: rgb(230, 240, 230) !important; }
  376.     /* ------------------ */
  377.    
  378.  
  379.     /* show author name in 'Latest activity' column in detailed list view of threads */
  380.     td.j-td-date > span { display : inherit !important; }
  381.  
  382.     /* main section */
  383.     #j-main { padding: 0px !important; }
  384.  
  385.     /* table cell title */
  386.     .jive-table td.jive-table-cell-title { padding: 5px !important; }
  387.        
  388.     /* thread list view column widths */                                            
  389.     .j-browse-details .j-td-title { max-width: none !important; }
  390.     .j-browse-details .j-td-date {
  391.         width: auto !important;
  392.         max-width: 20% !important;
  393.     }
  394.    
  395.     /* thread list view: read thread font weight */                                         /* NEW (feature restored) */
  396.     .j-browse-details .j-td-title strong { font-weight: 600 !important; }
  397.    
  398.  
  399.     @media all and ( max-width: 1099px )
  400.     {
  401.         /* ------------------
  402.             Treatment for narrow window
  403.             Hide Like and Bookmark columns in thread list view if viewport width <= 1098 (= 1265 - 166)
  404.         */                                                                              
  405.         .j-browse-details .j-td-likes,
  406.         .j-browse-details .j-td-bookmarks { display: none !important; }
  407.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th,
  408.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th { display: none !important; }
  409.         .j-browse-details > table.j-browse-list > thead.j-rc4 > tr > th + th + th + th { display: table-cell !important; }
  410.     }
  411.  
  412.    
  413.     /* user name link */
  414.     .jive-username-link { text-transform: none !important; }                        
  415.  
  416.     /* threads list view table tr td  */                                                    /* CHANGED */
  417.     .j-browse-details-tbody tr td { padding: 2px !important; }
  418.  
  419.     /* threads list view left most icon */                                                  /* NEW */
  420.     .j-browse-details-tbody .j-td-icon { padding: 0px 6px 0px !important; }
  421.    
  422.     /* communities list view table tr td */
  423.     .jive-communities-listing table tr td { padding: 5px !important; }
  424.    
  425.     /* thumbnails view width */
  426.     .j-browse-content .j-thumb-view,
  427.     .j-browse-places .j-browse-thumbnails,
  428.     .j-browse-people .j-browse-thumbnails { width: 100% !important; }
  429.    
  430.     /* thumbnail view list item margin */                                          
  431.     .j-browse-content .j-thumb-view > li,
  432.     .j-browse-places .j-browse-thumbnails > li { margin-right: 20px !important; }
  433.    
  434.     /* thumbnail view article font size */                                                  /* NEW */
  435.     .j-thumb article { font-size: inherit !important; }
  436.    
  437.     /* thunbnail view article header height */                                              /* NEW */
  438.     .j-content-thumb header { height: 22px !important; }
  439.  
  440.     /* thumbnail view article header font size */                                           /* NEW */
  441.     .j-thumb header h4.shrunk { font-size: 80% !important; }
  442.     .j-browse-content .j-content-thumb header .icon {
  443.         font-size: 16px !important;
  444.         margin: 0px 8px 0px 0px !important;
  445.     }
  446.    
  447.     /* thumbnail view article height */                                                     /* NEW */
  448.     .j-browse-content .j-content-thumb article { height: 120px !important; }
  449.    
  450.     /* thumbnail view footer */                                                             /* NEW */
  451.     .j-browse-content .j-content-thumb.j-thumb footer { padding: 4px 0px 0px !important; }  
  452.  
  453.    
  454.     /* social actions row */
  455.     .apple-social-actions-wrapper { margin-right: 0px !important; }
  456.     .j-thread .j-social-actions { margin-right: 40px !important; }
  457.  
  458.     /* apple header, subheader row ("Find helpful contents..." etc )*/              
  459.     #apple-full-subheader,
  460.     #apple-activity-subheader {
  461.         padding: 0px 40px 15px !important;
  462.         margin-bottom: 15px !important;
  463.     }
  464.     #apple-full-header h2,
  465.     #apple-activity-header h2 { padding: 0px 40px !important; }
  466.  
  467.     /* page header */
  468.     .j-body-place #jive-body > header.j-page-header {
  469.         margin-left: 40px !important;
  470.         margin-right: 40px !important;
  471.         width: auto !important;
  472.     }
  473.    
  474.     /* pagenation */                                                                        /* NEW */
  475.     .j-pagination-prevnext > .j-pagination-prev,
  476.     .j-pagination-prevnext > .j-pagination-next { font-size: 0px !important; }  
  477.    
  478.    
  479.     /* browser filter row */
  480.     #j-browse-filters { margin-bottom: 5px !important; }
  481.  
  482.     /* browser controls row */
  483.     .j-type-row { margin-bottom: 0px !important; }
  484.  
  485.     /* browser controls content types (All Contents|User Tips|Discussions) width */
  486.     #js-browse-controls .j-type-row .j-content-types { width: 90% !important; }
  487.    
  488.     /* browser controls view toggle (Thumbnails|Details) width */
  489.     #js-browse-controls #j-item-view-toggle {
  490.         width: 10% !important;
  491.         display: table !important;
  492.     }
  493.  
  494.     /* content filter row (All|Open|Answered|Threads) */
  495.     .j-content-filter {
  496.         background: white !important;
  497.         margin-bottom: 10px !important;
  498.     }  
  499.    
  500.     /* container canvas */
  501.     .j-contained {
  502.         margin-left: 40px !important;
  503.         margin-right: 40px !important;
  504.     }
  505.  
  506.     /* more search results available */
  507.     #j-more-search-results-available { padding: 10px !important; }
  508.    
  509.     /* misc */
  510.     .jive-widget { margin-bottom: 10px !important; }
  511.     .j-column { margin-bottom: 10px !important; }
  512.  
  513.  
  514.     @media all and ( min-width: 1265px )
  515.     {
  516.         /* ------------------
  517.             Treatment for narrow window
  518.             Method 1 (minimum optimisation)
  519.    
  520.             Adjust thread list table's shift and margin to maximize its width.
  521.         */                                                                              
  522.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: -166px !important; }
  523.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 166px !important; }
  524.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  525.     }
  526.     @media all and ( max-width: 1265px )
  527.     {
  528.         /* ------------------
  529.             Treatment for narrow window
  530.             Method 2 (more beneficial to narrow window but has disadvantage for wide window)
  531.            
  532.             Let thread list table have full width but not exceed 1019px to make room for sidebar ui (filters & actions).
  533.             If window is wide enough (>=1265px), sidebar ui is displayed next to thread list table,
  534.             otherwise it is displayed below or above it (depending upon its document tree order).
  535.            
  536.             * sidebar width (constant)    = 166px
  537.             * thread table max width      = 1019px
  538.             * canvas margin-left          = 40px
  539.             * canvas margin-right         = 40px
  540.             ---------------------------------------
  541.             * total                       = 1265px
  542.         */                                                                              
  543.         .j-layout-sl.j-browse-content .j-column-wrap-l { max-width: 1019px !important; }
  544.         .j-layout-sl.j-browse-content .j-column-wrap-l { margin-left: 0px !important; }
  545.         .j-layout-sl.j-browse-content .j-column-l      { margin-left: 0px !important; }
  546.         .j-layout-sl.j-browse-content .j-column-s      { width: 166px !important; }
  547.     }
  548.  
  549.  
  550.     /* ------------------
  551.         Swap left-right positions of thread list table and sidebar ui (filters & actions)
  552.     */                                                                              
  553.     /* let thread list table float left */
  554.     .j-layout-sl.j-browse-content .j-column-wrap-l,
  555.     .j-layout-sl.j-browse-places .j-column-wrap-l { float: left !important; }
  556.  
  557.     /* let sidebar ui float right */
  558.     .j-layout-sl.j-browse-content .j-column-s,
  559.     .j-layout-sl.j-browse-places .j-column-s { float: right !important; }
  560.     /* ------------------ */
  561.  
  562.  
  563.     /* ------------------
  564.         leader board
  565.     */
  566.     /* .jive-widget.jive-box.j-rc5.jive-widget-leaderboardwidget */
  567.    
  568. /*
  569.     .jive-widget-leaderboardwidget {display: none !important; }                    
  570. */
  571.  
  572.     .jive-widget-leaderboardwidget { max-width: 1000px !important; }                        
  573.     .jive-widget-leaderboardwidget .j-bigtab-nav .j-tabbar { padding-top: 10px !important; }
  574.     .jive-widget-leaderboardwidget .jive-widget-topmembers.split-columns ul li { min-height: 0px !important; }
  575.     .jive-widget-leaderboardwidget .top-member-username,
  576.     .jive-widget-leaderboardwidget .top-member-username * { font-size: inherit !important; }
  577.     .jive-widget-leaderboardwidget .top-member-username { margin-left: 15px !important; }
  578.     .jive-widget-leaderboardwidget .user-level-points {
  579.         font-size: 18px !important;
  580.         margin: 14px 0px !important;
  581.         width: 60px !important;
  582.         height: 30px !important;
  583.         padding: 8px 0px 0px !important;
  584.     }
  585.     .jive-widget-leaderboardwidget .top-member-profile-info { width: 80% !important; }
  586.     .jive-widget-leaderboardwidget .top-member-profile-info > a {
  587.         border-radius: 0% !important;
  588.         width: 60px !important;
  589.         height: 60px !important;
  590.     }
  591.     .jive-widget-leaderboardwidget .top-member-username a.jiveTT-hover-user { width: auto !important; }
  592.     .jive-widget-leaderboardwidget .pagination-class { margin-top: 30px !important; }
  593.     /* ------------------ */
  594.  
  595.  
  596.     /* article list
  597.         .j-rc5 is used to identify this list
  598.         e.g., https://discussions.apple.com/article/HT1939 */                      
  599.     .j-layout-sl.j-browse-content.j-rc5 #jive-body-maincol { margin: 0px 0px 0px 166px !important; }
  600.  
  601.  
  602.     /* ------------------------------------------------------------------------------------------------
  603.         THREAD CONTENT BROWSER
  604.     */
  605.     /* thread header */
  606.     .apple-thread-header {
  607.         width: auto !important;
  608.         margin-bottom: 10px !important;
  609.         margin-left: 40px !important;
  610.     }
  611.  
  612.     /* thread message */                                                                    /* NEW */
  613.     .j-thread .jive-content .j-thread-post .jive-rendered-content {
  614.         font-size:   inherit !important;
  615.     }
  616.     .j-thread #body-apple .jive-thread-messages h2.helpful-allreply,
  617.     .j-thread #body-apple #helpful-container,
  618.     .j-thread #body-apple .j-thread-post > header .j-post-author,
  619.     .j-thread #body-apple .thread-container-wrapper,
  620.     .j-thread #body-apple .all-replies-container,
  621.     .j-thread #body-apple #j-main #jive-breadcrumb,
  622.     .j-thread #body-apple .addReply,
  623.     .j-thread #body-apple #jive-body-intro-content {
  624.         max-width: inherit !important;
  625.         margin: 10px 40px !important;
  626.     }
  627.     .j-inresponse-to {
  628.         font-size: inherit !important;
  629.     }
  630.     .j-thread .jive-content .j-thread-post > header,
  631.     .j-thread .jive-content .j-thread-post > h3.header {
  632.         margin: 15px 0px 10px 0px !important;
  633.     }
  634.  
  635.  
  636.     /* thread original messeage (question) */                                               /* NEW */
  637.     .j-thread-post section.j-original-message {
  638.         margin: 0px 30px !important;
  639.         padding: 15px 10px !important;
  640.         border-style: dotted !important;
  641.         border-width: thin !important;
  642.         background: none repeat scroll 0% 0% rgb(247, 247, 237) !important;
  643.     }
  644.     .j-thread-post section.j-original-message h1 {
  645.         max-width: inherit !important;
  646.         margin: 0px 60px 20px 60px !important;
  647.     }
  648.     .j-thread-post section.j-original-message .jive-rendered-content {
  649.         max-width: inherit !important;
  650.         margin: 0px 25px !important;
  651.     }
  652.    
  653.     /* original poster profile header */
  654.     .j-thread .jive-content .j-thread-post > header.js-original-header {
  655.         max-width: inherit !important;
  656.         margin: 0px 40px !important;
  657.         padding: 5px !important;
  658.     }
  659.  
  660.     .j-thread-post section .thread-actions {
  661.         max-width: inherit !important;
  662.         margin: 0px 25px !important;
  663.     }
  664.     .j-original-message .jive-rendered-content p {
  665.         font-size:   inherit !important;
  666.     }
  667.     .meta-posted {
  668.         max-width: inherit !important;
  669.         margin: 10px 25px 20px !important;
  670.     }
  671.     /* Q mark */
  672.     .j-original-message h1 .q-marker {
  673.         left: -60px !important;
  674.         font-size: 32px !important;
  675.     }
  676.    
  677.  
  678.     /* answer rollup */                                                                     /* NEW */
  679.     .j-answer-rollup.span-full-width {
  680.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  681.         padding-bottom: 10px !important;
  682.         margin: 20px 0px 0px 0px !important;
  683.         border: 1px solid rgb(45, 184, 71) !important;
  684.     }
  685.     .j-inline-correct-answer {
  686.         padding: 0px !important;
  687.         max-width: inherit !important;
  688.         margin: 0px 10px !important;
  689.     }
  690.     .j-inline-correct-answer section {
  691.         margin: 10px 0px !important;
  692.     }
  693.     /* A mark */
  694.     .j-inline-correct-answer .answer-marker {
  695.         left: 0px !important;
  696.         font-size: 32px !important;
  697.     }
  698.    
  699.  
  700.     /* persistent question shown at top */                                                  /* NEW */
  701.     .persist-question.persist { display: none !important; }
  702.  
  703.    
  704.     /* Solved and Helpful marker text */                                                    /* NEW */
  705.     .j-thread-post header .j-correct-text,
  706.     .j-thread-post h3.header .j-correct-text,
  707.     .j-thread-post header .j-helpful-text,
  708.     .j-thread-post h3.header .j-helpful-text {
  709.         font-size: 22px !important;
  710.         background: none repeat scroll 0% 0% transparent !important;
  711.         border-style: none !important;
  712.         margin: 0px !important;
  713.         padding: 10px !important;
  714.     }
  715.  
  716.    
  717.     /* thread content */                                                                    /* CHANGED */
  718.     .j-thread .jive-content { margin: 0px 10px 0px 10px !important; }
  719.  
  720.    
  721.     /* thread replies ul */
  722.     ul.jive-discussion-replies.jive-discussion-indent-0 { margin: 0px !important; }
  723.    
  724.     /* thread reply li */
  725.     .jive-discussion-replies li.reply { margin-top: 15px !important; }
  726.  
  727.  
  728.     /* thread message border */                                                             /* NEW */
  729.     .jive-discussion-replies li.reply .jive-thread-message {
  730.         border-style: dotted !important;
  731.         border-width: thin !important;
  732.     }
  733.  
  734.  
  735.     /* orgininal poster comment background */                                               /* NEW */
  736.     .original-poster-comment {
  737.         background: none repeat scroll 0% 0% rgb(247, 247, 237) !important;
  738.         top:    0px !important;
  739.         right:  0px !important;
  740.         bottom: 0px !important;
  741.         left:   0px !important;
  742.     }
  743.  
  744.  
  745.     /* pagenation */                                                                        /* NEW */
  746.     .j-thread .jive-thread-messages .j-pagination {
  747.         margin: 30px 0px !important;
  748.     }
  749.  
  750.  
  751.     /* promoted helpful answer and prompted recommended answer */                           /* NEW */
  752.     .j-inline-promoted-helpful-answer,
  753.     .j-inline-recommended-answer {
  754.         background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  755.         padding: 15px 10px 5px 10px !important;
  756.         margin: 0px 10px 15px 10px !important;
  757.         border-style: dotted !important;
  758.         border-width: thin !important;
  759.     }
  760.     .j-inline-promoted-helpful-answer p {
  761.         margin: 0px !important;
  762.     }
  763.     .j-inline-promoted-helpful-answer header .reply-date,
  764.     .j-inline-promoted-helpful-answer h3.header .reply-date,
  765.     .j-inline-recommended-answer header .reply-date,
  766.     .j-inline-recommended-answer h3.header .reply-date {
  767.         font-size: inherit !important;
  768.         margin: 10px 0px !important;
  769.     }
  770.     .j-inline-promoted-helpful-answer header .j-helpful-text,
  771.     .j-inline-promoted-helpful-answer h3.header .j-helpful-text,
  772.     .j-inline-recommended-answer header .j-helpful-text,
  773.     .j-inline-recommended-answer h3.header .j-helpful-text {
  774.         font-size: 22px !important;
  775.         background: none repeat scroll 0% 0% transparent !important;
  776.         border-style: none !important;
  777.         margin: 0px !important;
  778.     }
  779.     .j-inline-promoted-helpful-answer section .reply-body,
  780.     .j-inline-recommended-answer section .reply-body {
  781.         font-size: inherit !important;
  782.         margin-bottom: 20px !important;
  783.     }
  784.     .j-inline-promoted-helpful-answer section,
  785.     .j-inline-recommended-answer section {
  786.         padding: 0px 20px !important;
  787.     }
  788.     #helpful-container { padding-top: 0px !important; }
  789.     #helpful-container hr { margin: 10px !important; }
  790.     #helpful-container .more-answers { margin: 0px !important; }
  791.     #helpful-container .more-answers * { font-size: 24px !important; }
  792.  
  793.  
  794.     /* inline correct answer, helpful answer background */                                  /* NEW */
  795.     div[itemprop="acceptedAnswer"] {
  796.         background: none repeat scroll 0% 0% rgb(237, 247, 232) !important;
  797.     }
  798.     .j-thread .jive-content.j-helpful,
  799.     .j-thread .jive-content.j-helpful.j-op {
  800.         background: none repeat scroll 0% 0% rgb(250, 240, 220) !important;
  801.     }
  802.  
  803.  
  804.     /* switch between 'hellpful replies only' and 'all replies' */                          /* NEW */
  805.     .jive-thread-messages .helpful-all-switch * {  
  806.         font-size: 24px !important;
  807.     }
  808.     .jive-thread-messages .helpful-all-switch li.inactive {
  809.         padding: 0px !important;
  810.         top: 32px !important;
  811.     }
  812.     .jive-thread-messages .helpful-all-switch li.inactive span.menu {
  813.         width: auto  !important;
  814.         min-width: 160px !important;
  815.         padding: 5px  !important;
  816.         text-align: center !important;
  817.     }
  818.    
  819.  
  820.     /* thread content footer profile */                                                     /* NEW */
  821.     .j-thread-post section.j-original-message footer .footer-profile {
  822.         margin-right: 10px !important;
  823.     }
  824.     .j-thread-post footer .footer-profile {
  825.         margin-right: -10px !important;
  826.     }
  827.     .j-thread-post footer .footer-profile .j-status-level {
  828.         padding: 0px 10px 0px 0px !important;
  829.     }
  830.     .j-thread-post footer .footer-profile .username,
  831.     .j-thread-post footer .footer-profile .jive-username-link {
  832.         padding: 0px 10px 0px 10px !important;
  833.         max-width: 250px !important;
  834.     }
  835.     .j-inline-correct-answer footer .footer-profile .j-status-levels,
  836.     .j-inline-promoted-helpful-answer footer .footer-profile .j-status-levels,
  837.     .j-inline-recommended-answer footer .footer-profile .j-status-levels {
  838.         padding: 0px 10px 0px 0px !important;
  839.     }
  840.     .j-inline-correct-answer footer .footer-profile .username,
  841.     .j-inline-promoted-helpful-answer footer .footer-profile .username,
  842.     .j-inline-recommended-answer footer .footer-profile .username {
  843.         padding: 0px 10px 0px 10px !important;
  844.         max-width: 250px !important;
  845.     }
  846.  
  847.  
  848.     /* text wrap in header */
  849.     .j-thread-post > header .j-post-author { white-space: normal !important; }      
  850.    
  851.     /* thread post section (message body) */
  852.     .j-thread-post section {
  853.         padding: 0px 20px !important;
  854.         margin-bottom: 15px !important;                                                     /* CHANGED */
  855.     }
  856.    
  857.  
  858.     /* thread rendered content */
  859.     .jive-rendered-content { padding-bottom: 4px !important; }
  860.    
  861.     /* thread rendered content quote & pre */
  862.     .jive-rendered-content .jive-quote,
  863.     .jive-rendered-content .jive-pre {
  864.         margin: 5px 15px !important;
  865.     }
  866.  
  867.     /* thread reply footer (Return to Community | Go to original post) */
  868.     #jive-thread-reply-footer { margin-top: 10px !important; }
  869.    
  870.     /* more like this links, incomming links */
  871.     #apple-related-threads { margin: 0px 40px !important; }
  872.     #apple-related-threads .j-box { margin-bottom: 0px !important; }
  873.     .j-icon-list li { padding: 3px 0px 3px 22px !important; }
  874.  
  875.     /* related articles */                                                          
  876.     .apple-sidebar-property {
  877.         width: auto !important;
  878.         padding-left: 0px !important;
  879.     }
  880.     .jive-box-body.jive-sidebar-body.jive-sidebar-body-related-articles { padding: 15px 0px !important; }
  881.    
  882.  
  883.     /* ------------------
  884.         staus level, expertise, level points
  885.     */
  886.     /* status level expertise tile */
  887.     .j-status-level.expertise-tile,
  888.     .status-tile.expertise-tile { display: none !important; }                  
  889.    
  890.     /* status level level points */
  891.     .j-status-level .level-points span { display: inherit !important; }            
  892.     .j-status-level .level-points { white-space: inherit !important; }              
  893.     /* ------------------ */
  894.  
  895.  
  896.     /* ------------------------------------------------------------------------------------------------
  897.         INLINE EDITOR
  898.     */
  899.     /* editor */
  900.     .jive-discussion-replies li.addReply { margin: 50px 40px 0px !important; }
  901.  
  902.  
  903.     /* ------------------------------------------------------------------------------------------------
  904.         ADVANCED EDITOR
  905.     */
  906.  
  907.     /* content area */
  908.     .j-thread.jive-body-formpage #body-apple .j-form {
  909.         max-width: inherit !important;
  910.         margin: 0px auto 20px !important;
  911.         width: inherit !important;
  912.     }
  913.     .j-thread .jive-content.jive-create-thread,
  914.     .jive-body-formpage-document .jive-content.doc-page {
  915.         margin: 0px 40px !important;
  916.         padding: 0px !important;
  917.     }
  918.  
  919.  
  920.     /* editor panel */
  921.     .j-thread .jive-content.jive-create-thread #jive-compose-title,
  922.     .j-thread .jive-content.jive-create-thread .jive-editor-panel.jive-large-editor-panel,
  923.     .jive-body-formpage-document .jive-content.doc-page #jive-compose-title,
  924.     .jive-body-formpage-document .jive-content.doc-page .jive-editor-panel.jive-large-editor-panel { margin: 0px !important; }
  925.  
  926.     /* line height in editor */
  927.     body.tiny_mce_content { line-height: inherit !important; }
  928.  
  929.     /* replying to */
  930.     p.jive-replying-to { padding: 20px 0px !important; }
  931.     .jive-body-formpage-comment .jive-thread-message { margin: 0px 40px 0px 80px !important; }
  932.  
  933.     /* reply to avatar */
  934.     .j-thread-post header .j-post-avatar {
  935.         position: absolute !important;
  936.         top: 0px !important;
  937.         left: -50px !important;
  938.         width: auto !important;
  939.     }
  940.    
  941.     /* buttons (Reply|Cancel) */
  942.     .j-publishbar,
  943.     .jive-body-formpage .jive-composebuttons { margin: 20px 40px 0px !important; }
  944.  
  945.  
  946.     /* ------------------------------------------------------------------------------------------------
  947.         ACTIVITY STREAM
  948.     */
  949.     /* activity entry */
  950.     .j-act-entry { padding: 5px 0px 10px 100px !important; }
  951.  
  952.     /* activity title */
  953.     .j-body-home .j-act-title { padding: 5px 0px 5px 24px !important; }
  954.  
  955.     /* activity body & comment */                                                  
  956.     .j-body-home .j-act-init { padding: 5px 0px 10px 100px !important; }
  957.     .apple-activity-comments-wrapper { margin-left: 0px !important; }
  958.  
  959.     /* Like list */
  960.     .j-act-grouped .j-act-g-item { padding: 3px !important; }
  961.    
  962.    
  963.     /* ------------------------------------------------------------------------------------------------
  964.         SEARCH RESULTS
  965.     */
  966.     /* search result entry */
  967.     .j-search-results-main-container .j-search-result { padding: 10px !important; }
  968.  
  969.  
  970.     /* ------------------------------------------------------------------------------------------------
  971.         DOC (USER TIP)
  972.     */                                                                              
  973.     /* user tip canvas */
  974.     .jive-body-content.j-doc .j-column-wrap-l { margin: 0px 40px !important; }
  975.  
  976.     /* user tip border etc */                                                               /* NEW */
  977.     .j-doc .jive-content {
  978.         margin: 0px !important;
  979.         padding: 10px !important;
  980.         border: thin dotted !important;
  981.     }
  982.  
  983.  
  984.     /* ------------------------------------------------------------------------------------------------
  985.         BLOG (MODERATOR TIP)
  986.     */                                                                                      /* NEW */                                                                      
  987.     /* blog canvas */
  988.     .jive-body-content.j-blog .j-column-wrap-l { margin: 0px 40px !important; }
  989.    
  990.     /* blog border etc */
  991.     .jive-content-blog {
  992.         margin: 0px !important;
  993.         padding: 10px !important;
  994.         border: thin dotted !important;
  995.         border-radius: 0px !important;
  996.     }
  997.  
  998.  
  999.     /* ------------------------------------------------------------------------------------------------
  1000.         UNAUTHORIZED (WARNING)
  1001.     */                                                                                      /* NEW */                                                                      
  1002.     /* unauthorized error message */
  1003.     .jive-body-warn.jive-body-unathorized #j-main { margin: 0px 40px !important; }
  1004.  
  1005.    
  1006.     /* ------------------------------------------------------------------------------------------------
  1007.         PROFILE
  1008.     */                                                                              
  1009.     /* header & navigation bar (Bio|Activity|People|Content|Communities|Bookmarks) */
  1010.     .j-view-profile .j-page-header { padding: 10px 40px !important; }
  1011.     .j-bigtab-nav { margin: 10px 40px !important; }
  1012.    
  1013.     /* filter ui current selection blue marker */                                           /* NEW */
  1014.     .j-view-profile .j-second-nav ul > li.active {
  1015.         display: none !important;
  1016.     }
  1017.  
  1018.     /* ------------------
  1019.         Bio
  1020.     */
  1021.     .j-layout-l .j-column-wrap-l { width: 100% !important; }
  1022.    
  1023.     /* ------------------
  1024.         profile specialties and awards
  1025.     */
  1026.     /* profile status container for specialties and awards */                               /* REFINED (rule) */
  1027.     .jive-view-profile .profile-status-container { display: none !important; }
  1028.  
  1029.     /* profile modal note status row for specialties and awards */
  1030.     .status-row { display: none !important; }                                      
  1031.     /* ------------------ */
  1032.  
  1033.  
  1034.     /* ------------------
  1035.         Content
  1036.     */                                                                                      /* NEW */
  1037.     /* browser control ui */
  1038.     .j-view-profile .j-layout-sl.j-browse-content .j-column-s #js-browse-controls {
  1039.         margin: 25px 0px 0px -166px !important;
  1040.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement