Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.11 KB | None | 0 0
  1. /* Nowy styl ChatBox'u */
  2. {{if settings.wk_chatbox_stats_other_style_onoff == 1}}
  3. #chat_button {
  4.     margin-top: -10px;
  5. }
  6. .cbItems img {
  7.     margin-top: -11px;
  8. }
  9. {{endif}}
  10.  
  11. .DivwkAdvancedChatboxStats {
  12.     padding: 10px 0px;
  13. }
  14.  
  15. .wkAdvancedChatboxStatsBottom {
  16.     margin-bottom: 0px;
  17.     display: block;
  18.     margin-block-start: 0em;
  19.     margin-block-end: 0em;
  20.     margin-inline-start: 0px;
  21.     margin-inline-end: 0px;
  22. }
  23.  
  24. /* Trofea #1 */
  25. .AdvancedChatboxStatsInfo ol.ipsList_reset.ipsPad.ipsGrid.ipsGrid_collapsePhone.ipsClear li.ipsPhotoPanel.ipsPhotoPanel_small.ipsClearfix.cOnlineUser.ipsGrid_span4:nth-child(1) .ipsContained i.fa.fa-trophy {
  26.     color: #F9BF3B;
  27.     font-size: 16px;
  28. }
  29.  
  30. /* Trofea #2 */
  31. .AdvancedChatboxStatsInfo ol.ipsList_reset.ipsPad.ipsGrid.ipsGrid_collapsePhone.ipsClear li.ipsPhotoPanel.ipsPhotoPanel_small.ipsClearfix.cOnlineUser.ipsGrid_span4:nth-child(2) .ipsContained i.fa.fa-trophy {
  32.     color: #BDC3C7;
  33.     font-size: 16px;
  34. }
  35.  
  36. /* Trofea #3 */
  37. .AdvancedChatboxStatsInfo ol.ipsList_reset.ipsPad.ipsGrid.ipsGrid_collapsePhone.ipsClear li.ipsPhotoPanel.ipsPhotoPanel_small.ipsClearfix.cOnlineUser.ipsGrid_span4:nth-child(3) .ipsContained i.fa.fa-trophy {
  38.     color: #965A38;
  39.     font-size: 16px;
  40. }
  41.  
  42. /* Trofea #1 */
  43. .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(1) i.fa.fa-trophy {
  44.     color: #F9BF3B;
  45.     font-size: 16px;
  46. }
  47.  
  48. /* Trofea #2 */
  49. .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(2) i.fa.fa-trophy {
  50.     color: #BDC3C7;
  51.     font-size: 16px;
  52. }
  53.  
  54. /* Trofea #3 */
  55. .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(3) i.fa.fa-trophy {
  56.     color: #965A38;
  57.     font-size: 16px;
  58. }
  59.  
  60. /* ChatBox od X postów */
  61. .ipsMessage_chatbox {
  62.     background: {setting="wk_chatbox_stats_x_postsColor"} none repeat scroll 0 0;
  63.     color: #fff;
  64.     margin-bottom: 0;
  65.     border-style: solid;
  66.     border-color: {setting="wk_chatbox_stats_x_postsColor"};
  67.     border-radius: 3px;
  68.     padding: 7px;
  69.     text-shadow: 1px 1px 0px rgba(0,0,0,0.1);
  70. }
  71.  
  72. .ipsMessage_chatbox::before {
  73.     content: "\f040";
  74.     font-size: 12px;
  75.     position: sticky;
  76.     margin-right: 5px;
  77. }
  78.  
  79. html[dir="ltr"] .ipsMessageChatbox:before {
  80.     left: 15px;
  81. }
  82.  
  83. .ipsMessageChatbox:before {
  84.     font-family: 'FontAwesome';
  85.     top: 15px;
  86.     font-size: 14px;
  87. }
  88.  
  89. .ipsMessageChatboxText {
  90.     font-size: 14px;
  91. }
  92.  
  93. .weakChatLicense.ipsMessage {
  94.     padding: 5px !important;
  95.     margin-block-start: 0em;
  96.     margin-block-end: 0em;
  97. }
  98.  
  99. .weakChatLicense.ipsMessage:before {
  100.     left: 5px;
  101.     top: 5px !important;
  102. }
  103.  
  104. /* ChatBox mobile */
  105. @media screen and (max-width: 979px) {
  106.     .DivwkAdvancedChatboxStats .ipsUserPhoto_tinier img, img.ipsUserPhoto_tinier, .ipsUserPhoto_tinier:after,
  107.     .DivwkAdvancedChatboxStats .ipsUserPhoto_tiny img, img.ipsUserPhoto_tiny, .ipsUserPhoto_tiny:after,
  108.     .DivwkAdvancedChatboxStats .ipsUserPhoto_mini img, img.ipsUserPhoto_mini, .ipsUserPhoto_mini:after,
  109.     .DivwkAdvancedChatboxStats .ipsUserPhoto_small img, img.ipsUserPhoto_small, .ipsUserPhoto_small:after,
  110.     .DivwkAdvancedChatboxStats .ipsUserPhoto_medium img, img.ipsUserPhoto_medium, .ipsUserPhoto_medium:after,
  111.     .DivwkAdvancedChatboxStats .ipsUserPhoto_large img, img.ipsUserPhoto_large, .ipsUserPhoto_large:after,
  112.     .DivwkAdvancedChatboxStats .ipsUserPhoto_xlarge img, img.ipsUserPhoto_xlarge, .ipsUserPhoto_xlarge:after {
  113.         display: none;
  114.     }
  115.  
  116.     .DivwkAdvancedChatboxStats a {
  117.         font-size: 10px;
  118.     }
  119.  
  120.     .DivwkAdvancedChatboxStats .ipsType_large,
  121.     .DivwkAdvancedChatboxStats .ipsType_small {
  122.         font-size: 10px;
  123.     }
  124.  
  125.     html[dir="ltr"] .DivwkAdvancedChatboxStats.ipsPhotoPanel.ipsPhotoPanel_tiny > div {
  126.         margin-left: 4px;
  127.     }
  128.  
  129.     html[dir="ltr"] .weakChat .ipsList_inline > li {
  130.         margin-right: 5px;
  131.     }
  132.  
  133.     .AdvancedChatboxStatsInfo ol.ipsList_reset.ipsPad.ipsGrid.ipsGrid_collapsePhone.ipsClear li.ipsPhotoPanel.ipsPhotoPanel_small.ipsClearfix.cOnlineUser.ipsGrid_span4 .ipsContained i.fa.fa-trophy {
  134.         font-size: 8px;
  135.     }
  136.  
  137.     .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(1) i.fa.fa-trophy,
  138.     .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(2) i.fa.fa-trophy,
  139.     .ipsAreaBackground_light.ipsPad_half ol.ipsDataList.ipsList_inline li:nth-child(3) i.fa.fa-trophy {
  140.         font-size: 10px;
  141.         display: none;
  142.     }
  143.  
  144.     .chatboxstatsTop {
  145.         margin-top: 5px;
  146.     }
  147.  
  148.     .DivwkAdvancedChatboxStats i.ipsOnlineStatus_online,
  149.     .DivwkAdvancedChatboxStats i.ipsOnlineStatus_offline,
  150.     .DivwkAdvancedChatboxStats i.ipsOnlineStatus_anonymous {
  151.         display: none;
  152.     }
  153.  
  154.     .DivwkAdvancedChatboxStats.i.fa fa-star {
  155.         display: none;
  156.     }
  157.    
  158.     .weakChat.ipsAreaBackground_light.ipsPad_half.ipsType_center {
  159.     {{if settings.wk_chatbox_hide_mobile == 0}}    
  160.         display: block !important;
  161.     {{else}}
  162.         display: none !important;
  163.     {{endif}}
  164.     }
  165.  
  166.     .wkAdvancedChatboxStatsBottom {
  167.         margin-bottom: 0px;
  168.         display: block;
  169.         margin-block-start: -0.5em;
  170.         margin-block-end: 0em;
  171.         margin-inline-start: 0px;
  172.         margin-inline-end: 0px;
  173.     }
  174.  
  175.     .AdvancedChatboxStatsA {
  176.         font-size: 10px;
  177.     }
  178. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement