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