drparse / ISimpForSunken

// ==UserScript==
// @name         ISimpForSunken
// @description  Compactify the results on geoguessr. Supports tampermonkey. Does NOT support greasemonkey. Violentmonkey not tested.
// @namespace    https://www.geoguessr.com/
// @version      0.1.3
// @author       drparse
// @match        https://www.geoguessr.com/game/*
// @match        https://www.geoguessr.com/challenge/*
// @match        https://www.geoguessr.com/maps/*
// @match        https://www.geoguessr.com/results/*
// @run-at       document-start
// @updateURL    https://openuserjs.org/meta/drparse/ISimpForSunken.meta.js
// @copyright 2020, drparse
// @license GPL-3.0-or-later; http://www.gnu.org/licenses/gpl-3.0.txt
// @grant GM_addStyle
// @noframes
// ==/UserScript==

(function() {
    'use strict';

GM_addStyle(`
.results-highscore__player-cell {
    padding: 0 !important;
}


.results-highscore__player-pin {
width: 2rem;
height: 2rem;
}
.results-highscore__guess-cell {
    display: block;
}
.results-highscore__guess-cell div {
    display: inline;
}
.results-highscore__guess-cell div:first-child {
    display: inline;
    padding-right: 4px;
    font-weight: normal;
}
.results-highscore__guess-cell--total div {
    font-weight: 600 !important;
}
.results-highscore__guess-cell--total .results-highscore__guess-cell-score, .results-highscore__player-nick, .results-highscore__cell.results-highscore__player-cell {
    user-select: text;
}
.results-highscore__player-pin {
    user-select: none;
}
.results-highscore__cell {
align-items: center;
}

.results-highscore__player-nick {
    font-weight: 600 !important;
}
` );

})();