Skip to content
This repository has been archived by the owner on Jul 31, 2019. It is now read-only.

Extending light theme to UI above Editor and Files panes. #2568

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions public/editor/scripts/ui/menus.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,7 @@ function setupOptionsMenu(bramble) {
function lightThemeUI() {
var transitionSpeed = 200;

$(".bramble-toolbar").removeClass("dark");
$("#sun-green").fadeIn(transitionSpeed);
$("#moon-white").fadeIn(transitionSpeed);
$("#sun-white").fadeOut(transitionSpeed);
Expand All @@ -347,6 +348,7 @@ function setupOptionsMenu(bramble) {
function darkThemeUI() {
var transitionSpeed = 200;

$(".bramble-toolbar").addClass("dark");
$("#moon-green").fadeIn(transitionSpeed);
$("#sun-white").fadeIn(transitionSpeed);
$("#moon-white").fadeOut(transitionSpeed);
Expand Down
Loading