Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge changes from ProPuke #160

Open
wants to merge 28 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
39095a9
Fix .btn-group when there is only one .btn present
kevinmartin Oct 19, 2015
d59e99e
Fix height nav-group-item
Nov 6, 2015
0136ef5
Change tab font and icon color on inactive tab to better mirror the O…
andrewnaumann Apr 5, 2016
32bac4f
disabled button
raffel May 18, 2017
da6b433
fixed: example context menu appeared on left click, not right
ProPuke Jun 2, 2017
7a56466
fixed: sass files did not correctly encode unicode characters on some…
ProPuke Jun 2, 2017
ef6410c
added: npm5 package-lock.json
ProPuke Jun 2, 2017
54af8d1
built latest css (copyright year changed)
ProPuke Jun 2, 2017
4e78dc2
added: js lib and support for table/nav/list selections
ProPuke Jun 2, 2017
d1de6db
added: js lib and support for table/nav/list selections
ProPuke Jun 2, 2017
bbeb52b
Merge branch 'master' of https://github.com/ProPuke/photon
ProPuke Jun 2, 2017
dd14c85
Merge branch 'tab-color-patch' of https://github.com/andrewnaumann/ph…
ProPuke Jun 2, 2017
b788cc8
Merge branch 'fix-nav-group-item' of https://github.com/EdgarVaguenci…
ProPuke Jun 2, 2017
5281fb0
Merge branch 'patch-1' of https://github.com/KevinMartin/photon
ProPuke Jun 2, 2017
82579a8
built latest dist
ProPuke Jun 2, 2017
22ea648
added: support for holding `shift` when selecting multiple table entries
ProPuke Jun 8, 2017
e7cbe52
fixed: button icons were the wrong colour on non-default buttons
ProPuke Jun 20, 2017
6dcfe54
fixed: button icons were the wrong colour on non-default buttons
ProPuke Jun 20, 2017
d1b4d2d
added: vertical pane groups
ProPuke Jun 24, 2017
1b7fe73
fixed: nested panes appeared incorrectly when verticals were involved
ProPuke Jun 24, 2017
b9d2a26
added: pane resizing
ProPuke Jun 28, 2017
5f17c5e
fixed: stray console.log on pane resize
ProPuke Jun 30, 2017
ff23ec3
Merge https://github.com/raffel/photon
ProPuke Jun 30, 2017
16f257b
tidied: build (dist) files now untracked
ProPuke Jul 7, 2017
9703179
fixed: form control text not legible if parent has white text
ProPuke Jul 7, 2017
b94bec8
fixed: select form controls were not as tall as text input
ProPuke Jul 7, 2017
bb7baed
added: context menus (copy, paste etc) to textfields
ProPuke Jul 21, 2017
a4c46f4
Merge commit 'bb7baeda3b8cc7205cb6'
ProPuke Jul 22, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Build files
dist/css
dist/js
docs/assets/css
docs/dist/css
docs/dist/fonts
docs/dist/js
docs/dist/template-app

# Ignore docs files
_gh_pages
_site
Expand Down
28 changes: 24 additions & 4 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ module.exports = function(grunt) {
docsAssetsPath: 'docs/assets/',
docsDistPath: 'docs/dist/',
docsPath: 'docs/',
srcPath: 'sass/',
sassPath: 'sass/',
jsPath: 'js/',
},

banner: '/*!\n' +
Expand All @@ -34,7 +35,12 @@ module.exports = function(grunt) {
' */\n',

clean: {
dist: ['<%= meta.distPath %>/css', '<%= meta.docsDistPath %>/css']
dist: [
'<%= meta.distPath %>/css',
'<%= meta.distPath %>/js',
'<%= meta.docsDistPath %>/css',
'<%= meta.docsDistPath %>/js'
]
},

sass: {
Expand Down Expand Up @@ -83,6 +89,16 @@ module.exports = function(grunt) {
}
},

concat: {
js: {
src: [
'<%= meta.jsPath %>/photon.js',
'<%= meta.jsPath %>/*.js'
],
dest: '<%= meta.distPath %>/js/photon.js'
},
},

cssmin: {
options: {
keepSpecialComments: '*' // keep all important comments
Expand All @@ -104,9 +120,13 @@ module.exports = function(grunt) {
port: 8000
},
css: {
files: '<%= meta.srcPath %>**/*.scss',
files: '<%= meta.sassPath %>**/*.scss',
tasks: ['dist-css', 'copy']
},
js: {
files: '<%= meta.jsPath %>/*.js',
tasks: ['concat']
},
html: {
files: '<%= meta.docsPath %>**',
tasks: ['jekyll']
Expand Down Expand Up @@ -146,7 +166,7 @@ module.exports = function(grunt) {

// Tasks
grunt.registerTask('dist-css', ['sass', 'usebanner', 'cssmin']);
grunt.registerTask('dist', ['clean', 'dist-css', 'copy']);
grunt.registerTask('dist', ['clean', 'dist-css', 'copy', 'concat']);
grunt.registerTask('server', ['dist', 'jekyll:docs', 'connect', 'watch']);

grunt.registerTask('default', ['dist']);
Expand Down
Loading