-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
771 additions
and
1 deletion.
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 +1,16 @@ | ||
# iob | ||
# IBO - Icon Builder for Odoo | ||
|
||
The provided [Configurator](https://spilymp.github.io/iob/) can be used to quickly and easily create new appicons in the style of the | ||
appicons of the ERP system [Odoo](https://www.odoo.com/). | ||
|
||
But it is also possible to use the included js class elsewhere and create your own configurator based on it, for example. | ||
|
||
For this purpose, the class offers a few more parameters for individualization in addition to the options shown in the documentation section. | ||
|
||
## Documentation | ||
|
||
The basis of the configurator is a JavaScript class "IBO_ICON", which creates a canvas and "paints" the icon on it (see file [`/js/ibo_icon.js`](https://github.com/spilymp/iob/blob/main/js/ibo_icon.js)). | ||
If the existing class is used directly by means of a script, additional parameters can be passed. | ||
If this class is instantiated, various parameters can be passed to it. | ||
If not, default values are used in each case. | ||
For more information please visit the [Project Website](https://spilymp.github.io/iob/). |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
body { | ||
font-size: 18px; | ||
} | ||
|
||
h1 { | ||
margin: 1.5em 0 1.5em 0; | ||
} | ||
|
||
h2 { | ||
margin: 2em 0 1em 0; | ||
} | ||
|
||
h3 { | ||
margin: 1em 0 0.5em 0; | ||
} | ||
|
||
.button { | ||
padding: 0 2.5rem !important; | ||
} | ||
|
||
.align-center { | ||
text-align: center; | ||
} | ||
|
||
label { | ||
text-align: right; | ||
} | ||
|
||
hr { | ||
border: solid 1px #d2d2d2; | ||
width : 100%; | ||
} | ||
|
||
footer { | ||
font-size: 0.8em; | ||
} |
Oops, something went wrong.