the browser-facing portion of osu!
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 102 lines 1.5 kB view raw
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the GNU Affero General Public License v3.0. 2// See the LICENCE file in the repository root for full licence text. 3 4.no-print, 5.no-print * { 6 @media print { 7 display: none !important; 8 } 9} 10 11.u-blackout-visible { 12 z-index: @z-index--blackout-visible !important; 13} 14 15.u-chat { 16 @media @mobile { 17 position: fixed; 18 width: 100%; 19 } 20} 21 22.u-contents { 23 display: contents !important; 24} 25 26.u-ellipsis-overflow { 27 .ellipsis-overflow() !important; 28} 29 30.u-ellipsis-overflow-desktop { 31 @media @desktop { 32 .ellipsis-overflow() !important; 33 } 34} 35 36.u-ellipsis-pre-overflow { 37 white-space: pre !important; 38 text-overflow: ellipsis !important; 39 overflow: hidden !important; 40} 41 42.u-embed-wide { 43 display: block; 44 aspect-ratio: 16 / 9; 45 width: 100%; 46 47 &--bbcode { 48 max-width: 425px; 49 } 50} 51 52.u-fancy-scrollbar { 53 .fancy-scrollbar(); 54} 55 56.u-focus-hides-placeholder { 57 &:focus::placeholder { 58 opacity: 0; 59 } 60} 61 62.u-full-size { 63 .full-size(); 64} 65 66.u-hidden { 67 display: none !important; 68} 69 70.u-hidden-desktop { 71 @media @desktop { 72 display: none !important; 73 } 74} 75 76.u-hidden-narrow { 77 @media @narrow { 78 display: none !important; 79 } 80} 81 82.u-hover { 83 pointer-events: auto !important; 84} 85 86.u-invisible { 87 opacity: 0; 88 position: absolute; 89 pointer-events: none; 90} 91 92.u-nav-float { 93 z-index: @z-index--nav-float !important; 94} 95 96.u-relative { 97 position: relative; 98} 99 100.u-uppercase { 101 text-transform: uppercase; 102}