Please read the new rule regarding the restriction on the use of AI tools. ×

Bucketsmith's blog

By Bucketsmith, history, 11 months ago, In English

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

  • Vote: I like it
  • +145
  • Vote: I do not like it

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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

»
11 months ago, # |
  Vote: I like it 0 Vote: I do not like it

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.

»
11 months ago, # |
Rev. 2   Vote: I like it +32 Vote: I do not like it
// ==UserScript==
// @name         Fix CF ICPC Challenge Bar
// @version      0.1
// @author       hocky
// @match        https://codeforces.net/*
// @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');
})();