update build
all.scss > themes/light.css
This commit is contained in:
parent
da92061ee9
commit
8d1c3531b7
4 changed files with 7 additions and 7 deletions
|
@ -63,7 +63,7 @@ yarn install
|
|||
yarn install
|
||||
npm rebuild node-sass
|
||||
node extractLocals.js
|
||||
node_modules/.bin/node-sass --output dist/css --sourcemap=none scss/
|
||||
node_modules/.bin/node-sass --sourcemap=none scss/all.scss dist/themes/light.css
|
||||
node_modules/.bin/webpack
|
||||
cp -r dist/* "$ROOT/app/dist/"
|
||||
)
|
||||
|
|
2
ui/dist/index.html
vendored
2
ui/dist/index.html
vendored
|
@ -6,7 +6,7 @@
|
|||
|
||||
<link href='https://fonts.googleapis.com/css?family=Raleway:600,300' rel='stylesheet' type='text/css'>
|
||||
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,600italic,600' rel='stylesheet' type='text/css'>
|
||||
<link id="theme" href="./css/all.css" rel="stylesheet" type="text/css" media="screen,print" />
|
||||
<link id="theme" href="./themes/light.css" rel="stylesheet" type="text/css" media="screen,print" />
|
||||
<link rel="icon" type="image/png" href="./img/fav/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="./img/fav/favicon-194x194.png" sizes="194x194">
|
||||
<link rel="icon" type="image/png" href="./img/fav/favicon-96x96.png" sizes="96x96">
|
||||
|
|
4
ui/dist/themes/light.css
vendored
4
ui/dist/themes/light.css
vendored
|
@ -2050,13 +2050,13 @@ table.table-stretch {
|
|||
position: relative;
|
||||
z-index: 1;
|
||||
box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.14), 2px 5px 3px -2px rgba(0, 0, 0, 0.2), 2px 3px 7px 0 rgba(0, 0, 0, 0.12);
|
||||
transform: scale(1.1) translate3d(10px, 0, 0);
|
||||
transform: scale(1.1) translateX(10px);
|
||||
transform-origin: 50% 50%;
|
||||
overflow-x: visible;
|
||||
overflow-y: visible; }
|
||||
|
||||
.card--link:hover ~ .card--link {
|
||||
transform: translate3d(20px, 0, 0); }
|
||||
transform: translateX(20px); }
|
||||
|
||||
.card__media {
|
||||
background-size: cover;
|
||||
|
|
|
@ -18,8 +18,8 @@ DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|||
fi
|
||||
|
||||
# run sass once without --watch to force update. then run with --watch to keep watching
|
||||
node_modules/.bin/node-sass --output $DIR/../app/dist/css --sourcemap=none $DIR/scss/
|
||||
node_modules/.bin/node-sass --output $DIR/../app/dist/css --sourcemap=none --watch $DIR/scss/ &
|
||||
node_modules/.bin/node-sass --sourcemap=none $DIR/scss/all.scss $DIR/../app/dist/themes/light.css
|
||||
node_modules/.bin/node-sass --sourcemap=none --watch $DIR/scss/all.scss $DIR/../app/dist/themes/light.css &
|
||||
|
||||
node_modules/.bin/webpack --config webpack.dev.config.js --progress --colors --watch
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue