Makes each trade offer more compact, showing items side-by-side if possible. Useful if you have many small trades (such as 1:1).
Steam Community - Compact trade offers by denilsonsa
Imported from https://raw.githubusercontent.com/uso-archive/data/flomaster/data/usercss/137429.user.css

Details
Authordenilsonsa
LicensePublic Domain
Categorysteamcommunity
Created
Updated
Code size1.1 kB
Code checksum80a805c4
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Steam Community - Compact trade offers
@namespace USO Archive
@author denilsonsa
@description `Makes each trade offer more compact, showing items side-by-side if possible. Useful if you have many small trades (such as 1:1).`
@version 20170108.14.44
@license Public Domain
@preprocessor uso
==/UserStyle== */
@-moz-document regexp("https?://steamcommunity\\.com/(id|profiles)/[^/]+/tradeoffers($|[/?].*)") {
html .tradeoffer_items_ctn {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
html .tradeoffer_items_rule {
/*
background: #797979;
min-width: 2px;
min-height: 2px;
width: auto;
height: auto;
margin: 0 8px;
flex: 0 0 auto;
*/
display: none;
}
html .tradeoffer_items {
flex: 1 0 auto;
}
html .tradeoffer_items_banner {
order: -1;
width: 100%;
margin: 0;
margin-bottom: 8px;
}
html .tradeoffer_header {
/* Redundant header. */
display: none;
}
html .tradeoffer_message .quote_arrow {
top: auto;
bottom: 0;
transform: scaleY(-1);
}
}