stuff
This commit is contained in:
parent
fae525eeef
commit
897acbf04a
|
@ -4266,7 +4266,6 @@
|
|||
};
|
||||
DiscordClassModules.SpotifyControls = {
|
||||
bar: "bar-g2ZMIm",
|
||||
barContainer: "barContainer-UWmgAx",
|
||||
barFill: "barFill-Dhkah7",
|
||||
barText: "barText-lmqc5O",
|
||||
container: "container-6sXIoE",
|
||||
|
@ -4276,6 +4275,7 @@
|
|||
details: "details-ntX2k5",
|
||||
interpret: "interpret-F93iqP",
|
||||
song: "song-tIdBpF",
|
||||
timeline: "timeline-UWmgAx"
|
||||
};
|
||||
DiscordClassModules.TimedLightDarkMode = {
|
||||
dateGrabber: "dateGrabber-QrRkIX",
|
||||
|
@ -4629,7 +4629,7 @@
|
|||
_spellcheckerror: ["SpellCheck", "error"],
|
||||
_spellcheckoverlay: ["SpellCheck", "overlay"],
|
||||
_spotifycontrolsbar: ["SpotifyControls", "bar"],
|
||||
_spotifycontrolsbarcontainer: ["SpotifyControls", "barContainer"],
|
||||
_spotifycontrolsbarcontainer: ["SpotifyControls", "timeline"],
|
||||
_spotifycontrolsbarfill: ["SpotifyControls", "barFill"],
|
||||
_spotifycontrolsbartext: ["SpotifyControls", "barText"],
|
||||
_spotifycontrolscontainer: ["SpotifyControls", "container"],
|
||||
|
@ -4639,6 +4639,7 @@
|
|||
_spotifycontrolsdetails: ["SpotifyControls", "details"],
|
||||
_spotifycontrolsinterpret: ["SpotifyControls", "interpret"],
|
||||
_spotifycontrolssong: ["SpotifyControls", "song"],
|
||||
_spotifycontrolstimeline: ["SpotifyControls", "timeline"],
|
||||
_timedlightdarkmodedategrabber: ["TimedLightDarkMode", "dateGrabber"],
|
||||
_timedlightdarkmodetimergrabber: ["TimedLightDarkMode", "timerGrabber"],
|
||||
_timedlightdarkmodetimersettings: ["TimedLightDarkMode", "timerSettings"],
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -141,7 +141,7 @@ var SpotifyControls = (_ => {
|
|||
let currentTime = (!this.props.running && stopTime ? stopTime : new Date()) - this.props.song.timestamps.start;
|
||||
currentTime = currentTime > maxTime ? maxTime : currentTime;
|
||||
return BDFDB.ReactUtils.createElement("div", {
|
||||
className: BDFDB.disCN._spotifycontrolsbarcontainer,
|
||||
className: BDFDB.disCN._spotifycontrolstimeline,
|
||||
children: [
|
||||
BDFDB.ReactUtils.createElement("div", {
|
||||
className: BDFDB.disCN._spotifycontrolsbar,
|
||||
|
@ -223,7 +223,7 @@ var SpotifyControls = (_ => {
|
|||
align-items: center;
|
||||
font-size: 14px;
|
||||
}
|
||||
${BDFDB.dotCN._spotifycontrolsbarcontainer} {
|
||||
${BDFDB.dotCN._spotifycontrolstimeline} {
|
||||
margin: 4px 0;
|
||||
}
|
||||
${BDFDB.dotCN._spotifycontrolsbar} {
|
||||
|
|
Loading…
Reference in New Issue