https://github.com/aurbano/ui-grid-css
Improved CSS for UI-Grid (Available as Sass or CSS)
https://github.com/aurbano/ui-grid-css
angular angular2 css sass ui-grid
Last synced: 5 months ago
JSON representation
Improved CSS for UI-Grid (Available as Sass or CSS)
- Host: GitHub
- URL: https://github.com/aurbano/ui-grid-css
- Owner: aurbano
- License: mit
- Created: 2017-03-03T09:25:13.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-12-18T20:59:25.000Z (almost 6 years ago)
- Last Synced: 2025-04-30T03:04:07.255Z (5 months ago)
- Topics: angular, angular2, css, sass, ui-grid
- Language: CSS
- Homepage: https://aurbano.github.io/ui-grid-css/
- Size: 43 KB
- Stars: 3
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UI Grid - Custom CSS
Some improvements over UI Grid. Just load the CSS after theirs to override the styles.
```html
```
## [Demo](https://aurbano.github.io/ui-grid-css/)
*Note: The demo reports being insecure because ui-grid.info has a broken certificate (last time I checked)*
> A normal UI Grid with the custom CSS applied
> UI Grid with clickable rows enabled## NPM
You can install this via NPM:
```bash
$ npm install --save ui-grid-css
```Then import the CSS file directly:
```html```
Or the minified version:
```html```
## BuildingThe source is provided in Sass, so it can be easily changed (to match your color scheme for example)
There are two files in the src directory:
```
/src
_variables.scss
ui-grid-custom.scss
```In the variables file you can change the main colors used as you can imagine.
Once done, build with gulp: (If you don't have it installed, run `npm install -g gulp` first)
```bash
$ gulp build
```And this will update both `css` files in the `dist` folder.