├── .editorconfig ├── .gitignore ├── CONTRIBUTING.md ├── Gruntfile.js ├── README.md ├── bower.json ├── dist ├── labelholder.css ├── labelholder.js ├── labelholder.min.css └── labelholder.min.js ├── package.json └── src ├── labelholder.coffee └── less ├── bootstrap-variables.less ├── labelholder-standalone.less ├── labelholder.less └── variables.less /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/bower.json -------------------------------------------------------------------------------- /dist/labelholder.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/dist/labelholder.css -------------------------------------------------------------------------------- /dist/labelholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/dist/labelholder.js -------------------------------------------------------------------------------- /dist/labelholder.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/dist/labelholder.min.css -------------------------------------------------------------------------------- /dist/labelholder.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/dist/labelholder.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/package.json -------------------------------------------------------------------------------- /src/labelholder.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/src/labelholder.coffee -------------------------------------------------------------------------------- /src/less/bootstrap-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/src/less/bootstrap-variables.less -------------------------------------------------------------------------------- /src/less/labelholder-standalone.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/src/less/labelholder-standalone.less -------------------------------------------------------------------------------- /src/less/labelholder.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/src/less/labelholder.less -------------------------------------------------------------------------------- /src/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Borzik/labelholder/HEAD/src/less/variables.less --------------------------------------------------------------------------------