Блог пользователя Bucketsmith

Автор Bucketsmith, история, 7 месяцев назад, По-английски

pls someone fix this thx. i can't sleep and solve problems well now.

  • Проголосовать: нравится
  • +145
  • Проголосовать: не нравится

»
7 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

Auto comment: topic has been updated by Bucketsmith (previous revision, new revision, compare).

»
7 месяцев назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

I think it's because of the image of trophy, since the system is trying to keep that in Accord with the other text on the whole bar, resulting in the text with trophy to also get adjusted.

»
7 месяцев назад, # |
Rev. 2   Проголосовать: нравится +32 Проголосовать: не нравится
// ==UserScript==
// @name         Fix CF ICPC Challenge Bar
// @version      0.1
// @author       hocky
// @match        https://mirror.codeforces.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=codeforces.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $("a[href='/icpc2023'] img").css('height', '15px');
})();