Skip to content

Commit

Permalink
Reorganise themes
Browse files Browse the repository at this point in the history
  • Loading branch information
StephanWagner committed Nov 2, 2018
1 parent f99b462 commit 0ffd585
Show file tree
Hide file tree
Showing 23 changed files with 299 additions and 2 deletions.
49 changes: 49 additions & 0 deletions dist/themes/jBox.NoticeFancy.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.NoticeFancy.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions dist/themes/jBox.TooltipBorder.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipBorder.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions dist/themes/jBox.TooltipBorderThick.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipBorderThick.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 28 additions & 0 deletions dist/themes/jBox.TooltipDark.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipDark.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 47 additions & 0 deletions dist/themes/jBox.TooltipError.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipError.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

42 changes: 42 additions & 0 deletions dist/themes/jBox.TooltipSmall.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipSmall.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

46 changes: 46 additions & 0 deletions dist/themes/jBox.TooltipSmallGray.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions dist/themes/jBox.TooltipSmallGray.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 25 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,23 @@ var sourcemaps = require('gulp-sourcemaps');

// Plugins

var plugins = ['Confirm', 'Image', 'Notice'];
var plugins = [
'Confirm',
'Image',
'Notice'
];

// Themes

var themes = [
'NoticeFancy',
'TooltipBorder',
'TooltipBorderThick',
'TooltipDark',
'TooltipError',
'TooltipSmall',
'TooltipSmallGray'
];

// CSS

Expand All @@ -35,6 +51,14 @@ for (let plugin of plugins) {
});
}

for (let theme of themes) {
styles.push({
name: 'jBox.' + theme,
src: ['./src/scss/themes/jBox.' + theme + '.scss'],
dest: './dist/themes/'
});
}

// JavaScript

var scripts = [
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jbox",
"version": "0.5.0",
"version": "0.5.1",
"description": "jBox is a jQuery plugin that makes it easy to create customizable tooltips, modal windows, image galleries and more.",
"keywords": [
"jquery-plugin",
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0ffd585

Please sign in to comment.