mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00
move _vars to outer ts folder
First step in sharing styling with graphs + future .html files
This commit is contained in:
parent
73cffc7cee
commit
ab32623dde
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ import json
|
||||||
|
|
||||||
colors = {}
|
colors = {}
|
||||||
|
|
||||||
for line in open("ts/scss/_vars.scss"):
|
for line in open("../ts/src/scss/_vars.scss"):
|
||||||
line = line.strip()
|
line = line.strip()
|
||||||
if not line:
|
if not line:
|
||||||
continue
|
continue
|
||||||
|
|
|
@ -23,7 +23,7 @@ all: check
|
||||||
PHONY: build
|
PHONY: build
|
||||||
build:
|
build:
|
||||||
$(BIN)/tsc --build
|
$(BIN)/tsc --build
|
||||||
$(BIN)/sass --no-source-map scss:css
|
$(BIN)/sass --no-source-map -I ../../ts/src/scss scss:css
|
||||||
rsync -a css/ ../aqt_data/web/
|
rsync -a css/ ../aqt_data/web/
|
||||||
|
|
||||||
.PHONY: check
|
.PHONY: check
|
||||||
|
|
|
@ -46,4 +46,4 @@ $fusion-button-gradient-end: #656565;
|
||||||
$fusion-button-outline: #222222;
|
$fusion-button-outline: #222222;
|
||||||
$fusion-button-hover-bg: #656565;
|
$fusion-button-hover-bg: #656565;
|
||||||
$fusion-button-border: #646464;
|
$fusion-button-border: #646464;
|
||||||
$fusion-button-base-bg: #454545;
|
$fusion-button-base-bg: #454545;
|
Loading…
Reference in a new issue