-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add path module * add build cmd * add new line * fix style loader * config files and manual for customizing semantic ui * keep only changes in site.variables * removed unused import * removed unused import from tests * add semantic folder to gitignore * add deleted test * exclude assets folders from coverage report * added assets * clean assets * Remove package-lock * Readme modification
- Loading branch information
1 parent
4d04b04
commit 5dddcb7
Showing
9 changed files
with
89 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules/ | ||
/coverage | ||
/dist | ||
/semantic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
[![Coverage Status](https://coveralls.io/repos/github/AgileVentures/WebsiteOne-FE/badge.svg?branch=develop)](https://coveralls.io/github/AgileVentures/WebsiteOne-FE?branch=develop) | ||
[![Coverage Status](https://coveralls.io/repos/github/AgileVentures/WebsiteOne-FE/badge.svg?branch=develop)](https://coveralls.io/github/AgileVentures/WebsiteOne-FE?branch=develop) | ||
|
||
# Rebuild the semantic UI asserts | ||
## This command needs to be run with npm - yarn does not support interactive prompt installs | ||
`# npm install --save-dev semantic-ui` | ||
Then remove the dependency from package.json and delete the package-lock.json file - we do not want it as a dependency for every user | ||
|
||
This will create a new semantic folder | ||
and copy our defaut file: | ||
|
||
`cp site.variables semantic/src/site/globals/` | ||
|
||
Then you can build semantic-ui | ||
`gulp build` or `./../node_modules/gulp/bin/gulp.js build` | ||
use the default values | ||
|
||
and copy the folder to our src folder | ||
|
||
`cp -R dist/* ../src/assets/` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"base": "semantic/", | ||
"paths": { | ||
"source": { | ||
"config": "src/theme.config", | ||
"definitions": "src/definitions/", | ||
"site": "src/site/", | ||
"themes": "src/themes/" | ||
}, | ||
"output": { | ||
"packaged": "dist/", | ||
"uncompressed": "dist/components/", | ||
"compressed": "dist/components/", | ||
"themes": "dist/themes/" | ||
}, | ||
"clean": "dist/" | ||
}, | ||
"permission": false, | ||
"autoInstall": false, | ||
"rtl": false, | ||
"version": "2.4.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/******************************* | ||
User Global Variables | ||
*******************************/ | ||
|
||
@fontName : 'Ubuntu'; | ||
@googleFontSizes : '400,500,400i,500i'; | ||
@bold : 500; | ||
@emSize : 16px; | ||
@fontSize : 16px; | ||
@primaryColor : @orange; | ||
@secondaryColor : @teal; | ||
@lightPrimaryColor : @lightOrange; | ||
@lightSecondaryColor : @lightTeal; | ||
@headerLineHeight : unit((20 / 14), em); | ||
@h1 : unit((35 / 14), rem); | ||
@h2 : unit((30 / 14), rem); | ||
@h3 : unit((26 / 14), rem); | ||
@h4 : unit((21 / 14), rem); | ||
@h5 : unit((18 / 14), rem); | ||
@lineHeight : 1.4127em; | ||
@textColor : rgba(0, 0, 1, 0.72); | ||
@linkColor : @orange; | ||
@blue : #337AB7; | ||
@green : #5Cb85C; | ||
@olive : #9CA780; | ||
@orange : #EE7335; | ||
@pink : #D9499A; | ||
@purple : #A24096; | ||
@red : #E7603B; | ||
@teal : #6BABA1; | ||
@yellow : #E0A32E; | ||
@darkBlue : #34495E; | ||
@brown : #A5673F; | ||
@white : #FFFFFF; | ||
@lightBlue : lighten( @blue, 5); | ||
@lightGreen : lighten( @green, 5); | ||
@lightOrange : lighten( @orange, 5); | ||
@lightPink : #FF8EDF; | ||
@lightPurple : #CDC6FF; | ||
@lightRed : lighten( @red, 5); | ||
@lightTeal : lighten( @teal, 5); | ||
@lightYellow : lighten( @yellow, 5); | ||
@lightOlive : lighten( @olive, 5); | ||
@primaryColor : @orange; | ||
@secondaryColor : @darkBlue; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.