12 Commits

Author SHA1 Message Date
DESKTOP-Q2JDODV\Admin
68f9dbcc12 chore: apply latest changes for header and footer 2021-06-29 18:50:57 +03:00
DESKTOP-Q2JDODV\Admin
764866cf11 chore: change the nodejs 2021-06-29 18:34:07 +03:00
DESKTOP-Q2JDODV\Admin
8dc6a103ac chore: rollback the dto:true config 2021-06-29 18:30:56 +03:00
DESKTOP-Q2JDODV\Admin
ff30bbcf3e chore: add include scss files 2021-06-29 18:27:33 +03:00
DESKTOP-Q2JDODV\Admin
4033d631f9 chore: add npm commands for deploy 2021-06-29 17:09:05 +03:00
DESKTOP-Q2JDODV\Admin
ba6865ebc8 chore: add command to install bower 2021-06-29 17:05:29 +03:00
DESKTOP-Q2JDODV\Admin
d30b3b666b chore: rollback latest changes for deploy 2021-06-29 17:02:01 +03:00
DESKTOP-Q2JDODV\Admin
5ab1c38273 chore: enable the blur styles 2021-06-28 16:30:42 +03:00
DESKTOP-Q2JDODV\Admin
9837325c8a chore: change the base url for test 2021-06-28 16:25:49 +03:00
DESKTOP-Q2JDODV\Admin
b95e189796 chore: rename the github action 2021-06-28 15:59:52 +03:00
DESKTOP-Q2JDODV\Admin
48bbf338e1 chore: change the theme to blur 2021-06-28 15:58:23 +03:00
DESKTOP-Q2JDODV\Admin
90b53bc22c chore: add github action for deploy demo-blur 2021-06-28 15:58:10 +03:00
5 changed files with 20 additions and 20 deletions

View File

@@ -1,23 +1,23 @@
name: Deploy to demo-mint (azure storage)
name: Deploy to demo-blur (azure storage)
on:
push:
branches:
- demo
- demo-blur
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 10.x
- name: Use Node.js 4.x
uses: actions/setup-node@v1
with:
node-version: '10.x'
- uses: actions/checkout@v2
with:
ref: demo
- name: npm install, build
ref: demo-blur
- name: npm install, gulp, build
run: |
npm install
gulp build
@@ -31,7 +31,7 @@ jobs:
with:
azcliversion: 2.0.72
inlineScript: |
az storage blob upload-batch -d '$web' -s release --account-name bluradminmint --debug
az storage blob upload-batch -d '$web' -s release --account-name bluradmin --debug
# Azure logout
- name: logout

View File

@@ -1,5 +1,5 @@
{
"baseUrl": "/blur-admin-mint/",
"baseUrl": "/blur-admin/",
"locals": {
"url": "http://localhost:8080",
"name": "The Wintersmith's blog",

View File

@@ -33,9 +33,9 @@ gulp.task('html', ['inject', 'partials'], function () {
addRootSlash: false
};
var htmlFilter = $.filter('*.html', { restore: true, dot:true});
var jsFilter = $.filter('**/*.js', { restore: true, dot:true});
var cssFilter = $.filter('**/*.css', { restore: true, dot:true});
var htmlFilter = $.filter('*.html', { restore: true, dot:true });
var jsFilter = $.filter('**/*.js', { restore: true, dot:true });
var cssFilter = $.filter('**/*.css', { restore: true, dot:true });
var assets;
return gulp.src(path.join(conf.paths.tmp, '/serve/*.html'))

View File

@@ -11,15 +11,15 @@
/** @ngInject */
function config(baConfigProvider, colorHelper, $provide) {
$provide.decorator('$uiViewScroll', uiViewScrollDecorator);
//baConfigProvider.changeTheme({blur: true});
//
//baConfigProvider.changeColors({
// default: 'rgba(#000000, 0.2)',
// defaultText: '#ffffff',
// dashboard: {
// white: '#ffffff',
// },
//});
baConfigProvider.changeTheme({blur: true});
baConfigProvider.changeColors({
default: 'rgba(#000000, 0.2)',
defaultText: '#ffffff',
dashboard: {
white: '#ffffff',
},
});
}
/** @ngInject */

View File

@@ -1,3 +1,3 @@
@import 'theme/conf/mixins';
@import 'theme/conf/colorScheme/mint';
@import 'theme/conf/colorScheme/blur';
@import 'theme/conf/variables';