WebStudio/src/light-theme.scss
Brooke Hatton 9b81540cc2
Styling tweaking (#77)
* Suggested css tweaks

* correct selector

* disable user text selection on tracks

so that they dont accidentally do it while dragging

* Add css varaibles, remove prefixes, use scss for more stuff

- remove `sp` prefix from mixer buttons
- Add css varaibles. Note: Currently doesnt work for the player due to bootstrap shiz that I will probably end up stripping out
- Bring more css into the scss files

* remove unused css

* pull styling into the scss file rather than inline

* use css var for channel shadow and sidebar background

* Align Icons with text..

* Make the sidebar search fields fixed to the top

I can't tell you why this works but it does

* add editor config

* partial refactor of mixer animation into the scss world

* one option for dealing with a core set of reusable css animations

* Prettier fixes

* rename active to hidden - use margin, so that the element doesn't resize when hidden

* rename track to item

* remove grid areas that are a little pointless
2020-04-19 23:17:05 +02:00

15 lines
356 B
SCSS

:root {
--background: #e2e1e0;
--channel-background: #ffffff;
--channel-color: #212529;
--channel-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
--player-background: #ffffff;
--player-color: #212529;
--mixer-backdrop: #78acf1;
--mixer-backdrop-disabled: #999;
--sidebar-background: var(--channel-background);
}