There have been some talk about creating a style guide, but to my knowledge there isn't one yet.
So my advice would also be to use the inspect tool, and then perhaps also have a look at the source code of Umbraco (see below) as well as existing packages.
Umbraco comes with a number of Angular directives that you can utilize in your packages. I'm not sure where to find documentation for these, but you can find them by browsing through the ~/umbraco/Views/directives/ folder in your Umbraco installation.
You can also find property editors in ~/umbraco/Views/propertyeditors/ and prevalue editors in ~/umbraco/Views/prevalueeditors/.
Style guides?
Hi guys,
I'm developing a package for Umbraco 7 and I want to style it so it matches the rest of the look in the Umbraco backoffice.
Do you know if anyone have made a guide for that, or do I have to resort to my mad Google Webdev Inspector skills? :D
(btw. I really love the look of the new Our!)
All the best,
Simon
Hi Simon,
There have been some talk about creating a style guide, but to my knowledge there isn't one yet.
So my advice would also be to use the inspect tool, and then perhaps also have a look at the source code of Umbraco (see below) as well as existing packages.
Umbraco comes with a number of Angular directives that you can utilize in your packages. I'm not sure where to find documentation for these, but you can find them by browsing through the
~/umbraco/Views/directives/
folder in your Umbraco installation.You can also find property editors in
~/umbraco/Views/propertyeditors/
and prevalue editors in~/umbraco/Views/prevalueeditors/
.Hi Anders,
Great advice to start with. I'll look into it.. Thanks :)
is working on a reply...