Skip to content

Commit 824ad6f

Browse files
committed
Latest jQuery UI theme build
* Reworked tabs styling for better consistency between horizontal and vertical tabsets. * SVG inlined into CSS file and coloured solely using `filter`.
1 parent 1fe49f1 commit 824ad6f

15 files changed

+710
-1520
lines changed

Gruntfile.js

+3-27
Original file line numberDiff line numberDiff line change
@@ -11,40 +11,16 @@ module.exports = function (grunt)
1111
// Set up paths.
1212
paths: {
1313
src: {
14-
sass: 'src/sass/',
15-
img: 'src/img/'
14+
sass: 'src/sass/'
1615
},
1716
dest: {
18-
css: 'dist/textpattern/',
19-
img: 'dist/textpattern/img/'
17+
css: 'dist/textpattern/'
2018
}
2119
},
2220

2321
// Clean distribution directory to start afresh.
2422
clean: ['dist/'],
2523

26-
// Run some tasks in parallel to speed up the build process.
27-
concurrent: {
28-
dist: [
29-
'css',
30-
'copy'
31-
]
32-
},
33-
34-
// Copy theme images.
35-
copy: {
36-
dist: {
37-
files: [
38-
{
39-
expand: true,
40-
cwd: '<%= paths.src.img %>',
41-
src: '**',
42-
dest: '<%= paths.dest.img %>'
43-
}
44-
]
45-
}
46-
},
47-
4824
// Minified version of CSS file.
4925
cssmin: {
5026
dist: {
@@ -131,7 +107,7 @@ module.exports = function (grunt)
131107
});
132108

133109
// Register tasks.
134-
grunt.registerTask('build', ['clean', 'concurrent']);
110+
grunt.registerTask('build', ['clean', 'css']);
135111
grunt.registerTask('css', ['sasslint', 'sass', 'postcss', 'cssmin']);
136112
grunt.registerTask('default', ['watch']);
137113
grunt.registerTask('travis', ['jshint', 'build']);

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Greenkeeper badge](https://badges.greenkeeper.io/textpattern/textpattern-jquery-ui-theme.svg)](https://greenkeeper.io/)
44
[![Build Status](https://img.shields.io/travis/textpattern/textpattern-jquery-ui-theme.svg)](https://travis-ci.org/textpattern/textpattern-jquery-ui-theme)
55

6-
The jQuery UI theme used within the [Textpattern CMS](https://textpattern.io/) admin-side.
6+
The jQuery UI theme used within the [Textpattern CMS](https://textpattern.com/) admin-side.
77

88
## Supported web browsers
99

dist/textpattern/img/ui-icon-sprite-333333.svg

-188
This file was deleted.

dist/textpattern/img/ui-icon-sprite-ffffff.svg

-188
This file was deleted.

0 commit comments

Comments
 (0)