8 Commits

Author SHA1 Message Date
DESKTOP-Q2JDODV\Admin
a3ab4306b7 chore: apply latest changes for header and footer 2021-06-29 18:51:16 +03:00
DESKTOP-Q2JDODV\Admin
c5536da7c8 chore: rollaback the base url 2021-06-29 18:32:25 +03:00
DESKTOP-Q2JDODV\Admin
f849bffc5e chore: add include scss files 2021-06-29 18:26:59 +03:00
DESKTOP-Q2JDODV\Admin
56084b58c4 chore: change the baseUrl for test 2021-06-28 16:17:07 +03:00
DESKTOP-Q2JDODV\Admin
34af98638e chore: remove unused files, rename the github action 2021-06-28 16:02:32 +03:00
DESKTOP-Q2JDODV\Admin
4bdde48a8f chore: change the account name 2021-06-28 15:40:32 +03:00
DESKTOP-Q2JDODV\Admin
522f2f0c38 chore: update the gulp command 2021-06-28 15:24:32 +03:00
DESKTOP-Q2JDODV\Admin
a746a313ee chore: add azureCliDeploy 2021-06-28 14:20:39 +03:00
5 changed files with 20 additions and 20 deletions

View File

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

View File

@@ -1,5 +1,5 @@
{
"baseUrl": "/blur-admin/",
"baseUrl": "/blur-admin-mint/",
"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/blur';
@import 'theme/conf/colorScheme/mint';
@import 'theme/conf/variables';