the browser-facing portion of osu!
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.beatmapset-activities {
5 color: white;
6
7 h2,
8 h3 {
9 color: white;
10 }
11
12 &__post-grow {
13 flex-grow: 1;
14 }
15
16 &__discussion-post {
17 display: flex;
18 margin-bottom: 10px;
19 }
20
21 &__spinner {
22 display: flex;
23 flex: 1;
24 justify-content: center;
25 padding: 20px;
26 }
27
28 &__timeline-icon-margin {
29 margin: 10px !important;
30 }
31
32 &__user-upvote-list {
33 display: flex;
34 flex-wrap: wrap;
35 }
36
37 &__user-upvote-panel {
38 display: flex;
39 margin: 10px;
40 width: 200px;
41 }
42
43 &__vote-icon-spacer {
44 margin: 10px 5px 10px 0px;
45 }
46
47 &__vote-link {
48 pointer-events: auto;
49 }
50
51 &__vote-user-panel {
52 width: 50px;
53 flex-shrink: 0;
54 }
55
56 .js-usercard {
57 pointer-events: auto;
58 }
59}