-
Notifications
You must be signed in to change notification settings - Fork 522
Using project settings
Select a project, right-click on it and choose "Project Settings" --> "new settings" --> choose the language you use.
Then koala will create a "koala-config.json" file under you project directory, you can edit it and set custom settings.
When the "koala-config.json" file modify, koala will auto reload the project with the configuration in "koala-config.json".
(Array)
The mappings of source directory and output directory.
e.g.
"mappings": [
{
"src": "path/to/source",
"dest": "path/to/output"
},
{
"src": "path/to/source2",
"dest": "path/to/output2"
}
]
(Array)
Add the ignore rules that Koala will not search them.
e.g. "ignores": ["*.json", "*.txt", "test", "path/libs"]
(Object)
The default compile option of all the files in project.
If you want to change the compile options for individual files, select the file, you can change the settings on the right column.
(Array)
If some of the options you need is not inside "options", you can add it here.
Please use the full name of options. e.g. ["--scss", ... ,"--no-cache"].
Run the command "sass -h", "lessc -h", "coffee -h" to see all options.
(Array)
An array of filesystem paths or importers which should be searched for Less/Sass templates imported with the @import directive.
It be equivalent to "--include-path" for Less and "--load-path PATH" for Sass.
(Array)
An array of ruby libraries, require them before running Sass.
It be equivalent to "--require LIB" for Sass.
/* START Navbar style+layout changed 260422*/ .navbar-collapse ul.nav.navbar-nav > li { width: 150px; border-bottom: 2px solid #b2b2b2; height: 70px; } .navbar-collapse ul.nav.navbar-nav > li.active { height: 70px; border-bottom: 3px solid #257FA6 !important; } .navbar-collapse ul.nav li a { font-size: 16px !important; font-family: 'Open Sans' !important; color: #2c2c2c !important; height: 54px; border-right: 2px solid #b2b2b2; text-align: center; padding: 10px 18px !impo