Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
Merge pull request #36 from skateman/patch-2.1.3
Browse files Browse the repository at this point in the history
Add unminified source files to the dist and bump 2.1.3
  • Loading branch information
skateman authored Apr 26, 2017
2 parents cc8290e + 7a14901 commit 134786b
Show file tree
Hide file tree
Showing 5 changed files with 1,999 additions and 4 deletions.
5 changes: 4 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,10 @@ module.exports = function(grunt) {
{ expand: true, cwd: 'src/css', src: '*', dest: 'public/css/' },
{ expand: true, cwd: 'src/js', src: '*', dest: 'public/js/' },
{ expand: true, cwd: 'node_modules/bootstrap/dist/', src: '**/*', dest: 'public/libs/bootstrap/' },
{ expand: true, cwd: 'node_modules/jquery/dist/', src: '*', dest: 'public/libs/jquery' }
{ expand: true, cwd: 'node_modules/jquery/dist/', src: '*', dest: 'public/libs/jquery' },
// setup unminified
{ expand: true, cwd: 'src/css', src: '*', dest: 'dist/' },
{ expand: true, cwd: 'src/js', src: '*', dest: 'dist/' }
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "patternfly-bootstrap-treeview",
"description": "Tree View for Twitter Bootstrap",
"version": "2.1.2",
"version": "2.1.3",
"homepage": "https://github.com/patternfly/patternfly-bootstrap-treeview",
"main": "dist/bootstrap-treeview.js",
"keywords": [
Expand Down
52 changes: 52 additions & 0 deletions dist/bootstrap-treeview.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
/* =========================================================
* patternfly-bootstrap-treeview.css v2.1.0
* =========================================================
* Copyright 2013 Jonathan Miles
* Project URL : http://www.jondmiles.com/bootstrap-treeview
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ========================================================= */

.treeview .list-group-item {
cursor: pointer;
}

.treeview span.indent {
margin-left: 10px;
margin-right: 10px;
}

.treeview span.icon {
width: 12px;
margin-right: 5px;
}

.treeview .node-disabled {
color: silver;
cursor: not-allowed;
}

.treeview .node-hidden {
display: none;
}

.treeview span.image {
display: inline-block;
width: 12px;
height: 1.19em;
vertical-align: middle;
background-size: contain;
background-repeat: no-repeat;
margin-right: 5px;
line-height: 1em;
}
Loading

0 comments on commit 134786b

Please sign in to comment.