summaryrefslogtreecommitdiff
path: root/doc/en_US/custom-css.markdown
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2018-02-27 15:57:30 -0800
committerFrédéric Guillot <fred@kanboard.net>2018-02-27 15:57:30 -0800
commitf1996001486d98f7160b1db380e02b664d9c030b (patch)
tree7c8e5484a8361b5f79beab979444e85ea3110480 /doc/en_US/custom-css.markdown
parentdd424e5a99c920434a8ea4402d764b46e69cd932 (diff)
Improve documentation about custom CSS
Diffstat (limited to 'doc/en_US/custom-css.markdown')
-rw-r--r--doc/en_US/custom-css.markdown29
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/en_US/custom-css.markdown b/doc/en_US/custom-css.markdown
new file mode 100644
index 00000000..32f64105
--- /dev/null
+++ b/doc/en_US/custom-css.markdown
@@ -0,0 +1,29 @@
+Custom CSS
+==========
+
+Go to Settings > Application settings > Custom Stylesheet
+
+Example to change color of category labels
+------------------------------------------
+
+For the category container:
+
+```css
+.task-board-category-container-color span {
+ border: solid 0.5px grey;
+ color: black;
+}
+```
+Custom css values for one category - this is an example for displaying the text:
+
+```css
+[class*="category-Patchkanditat"] {
+ background-color: rgba(255, 0, 0, 0.50);
+ border: none!important;
+ font-weight: bold;
+ font-style: italic;
+ box-shadow: 0 1px 1px rgba(186, 186, 186, 0.55);
+ color: white!important;
+ font-size:11px;
+}
+```