diff --git a/articles/011-changing-color-scheme/index.html b/articles/011-changing-color-scheme/index.html index ad9aad0..d3c6132 100644 --- a/articles/011-changing-color-scheme/index.html +++ b/articles/011-changing-color-scheme/index.html @@ -80,8 +80,8 @@ $label-text: #ffffff; // Text for labels in forms (Basically it should be equal
After this is done, you need to setup javascript to use same colors while building charts and other javascript components.
To do this, add following code to some configuration block, for example to src/app/theme/theme.config.js
:
baConfigProvider.changeColors({
- default: '#4e4e55',
- defaultText: '#e2e2e2',
+ default: '#4e4e55',
+ defaultText: '#e2e2e2',
});
That’s basically it! Right now your admin application should look like this:
diff --git a/articles/013-create-new-page/index.html b/articles/013-create-new-page/index.html index 6eb4e9f..6b16f8f 100644 --- a/articles/013-create-new-page/index.html +++ b/articles/013-create-new-page/index.html @@ -89,11 +89,11 @@ This will allow you to easily switch off some pages in the future if needed function routeConfig($stateProvider) { $stateProvider .state('myNewPage', { - url: '/myNewPage', - templateUrl: 'app/pages/myNewPage/my-new-page.html', - title: 'My New Page', - sidebarMeta: { - order: 800, + url: '/myNewPage', + templateUrl: 'app/pages/myNewPage/my-new-page.html', + title: 'My New Page', + sidebarMeta: { + order: 800, }, }); } diff --git a/articles/014-switch-to-blur-theme/index.html b/articles/014-switch-to-blur-theme/index.html index 21a70b7..5140a9e 100644 --- a/articles/014-switch-to-blur-theme/index.html +++ b/articles/014-switch-to-blur-theme/index.html @@ -59,16 +59,16 @@ That’s why first thing you need to do is enable that code. This should be done in Angular configuration block. For example you can add following lines tosrc/app/theme/theme.config.js
:
- baConfigProvider.changeTheme({blur: true});
+ baConfigProvider.changeTheme({blur: true});
2) As well you need to change some colors.
For example Mint‘s default gray text color doesn’t look good on blurred panels.
For our blur theme we use following configuration:
baConfigProvider.changeColors({
- default: 'rgba(#000000, 0.2)',
- defaultText: '#ffffff',
- dashboard: {
- white: '#ffffff',
+ default: 'rgba(#000000, 0.2)',
+ defaultText: '#ffffff',
+ dashboard: {
+ white: '#ffffff',
},
});
diff --git a/articles/051-sidebar/index.html b/articles/051-sidebar/index.html
index 16937d0..ea6fe2a 100644
--- a/articles/051-sidebar/index.html
+++ b/articles/051-sidebar/index.html
@@ -117,8 +117,8 @@ The provider has addStaticItem
method, which receives menuItem obje
Sample manual configuration:
baSidebarServiceProvider.addStaticItem({
- title: 'Menu Level 1',
- icon: 'ion-ios-more'
+ title: 'Menu Level 1',
+ icon: 'ion-ios-more'
});
Route configuration
@@ -129,12 +129,12 @@ That means if there’s a parent abstract state for some state and they both hav
Name of the item is taken from state
‘s title
property. Sample state configuration, which will add an item to sidebar:
$stateProvider
.state('dashboard', {
- url: '/dashboard',
- templateUrl: 'app/pages/dashboard/dashboard.html',
- title: 'Dashboard',
- sidebarMeta: {
- icon: 'ion-android-home',
- order: 0,
+ url: '/dashboard',
+ templateUrl: 'app/pages/dashboard/dashboard.html',
+ title: 'Dashboard',
+ sidebarMeta: {
+ icon: 'ion-android-home',
+ order: 0,
},
});
diff --git a/articles/091-downloads/index.html b/articles/091-downloads/index.html
index afb2b55..c22b4f9 100644
--- a/articles/091-downloads/index.html
+++ b/articles/091-downloads/index.html
@@ -68,7 +68,8 @@ Then you can just open index.html
to view your local version.<
start chrome --user-data-dir="C:/Chrome dev session" --disable-web-security
Links for downloads
-
+BlurAdmin 1.3.1
+BlurAdmin 1.2.0
diff --git a/articles/091/index.html b/articles/091/index.html
deleted file mode 100644
index 5fe34ee..0000000
--- a/articles/091/index.html
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
- BlurAdmin documentation - Downloads
-
-
-
-
-
-
-
-
-
- Downloads
- If you have problems installing node.js and/or other tools to build and run BlurAdmin on your machine and you just want to download html/js/css files, you can find links for download on this page.
-Development (non-compressed) files can be found in {ARCHIVE_ROOT}/blur-admin-{VERSION}/dev-release
directory. Compressed files are in {ARCHIVE_ROOT}/blur-admin-{VERSION}/release
directory.
-Then you can just open index.html
to view your local version.
-Please note: As chrome doesn’t support AJAX requests, when you open HTML file via file protocol, you might need to disable web security to have your template running.
-Sample command on OS X:
-open -a Google\ Chrome --args --disable-web-security --user-data-dir=~/ChromeDevSession/
-
-Sample command on Linux:
-google-chrome --user-data-dir="~/chrome-dev-session" --disable-web-security
-
-Sample command on Windows:
-start chrome --user-data-dir="C:/Chrome dev session" --disable-web-security
-
-Links for downloads
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/downloads/blur-admin-1.3.1.zip b/downloads/blur-admin-1.3.1.zip
new file mode 100644
index 0000000..c7fe327
Binary files /dev/null and b/downloads/blur-admin-1.3.1.zip differ
diff --git a/images/blur-preview1.jpg b/images/blur-preview1.jpg
deleted file mode 100644
index 44f027b..0000000
Binary files a/images/blur-preview1.jpg and /dev/null differ
-