diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-05-21 21:21:00 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-05-21 21:21:00 +0200 |
commit | 8ad26def303c7dc0db1049b8c72f21c17133ab33 (patch) | |
tree | 7c2d16eee832d21a60874f936b893783ae01f226 /ratatoeskr/cms_style | |
parent | d667c2d46d77f06081a9336cd92341865106bf0a (diff) | |
download | ratatoeskr-cms-8ad26def303c7dc0db1049b8c72f21c17133ab33.tar.gz ratatoeskr-cms-8ad26def303c7dc0db1049b8c72f21c17133ab33.tar.bz2 ratatoeskr-cms-8ad26def303c7dc0db1049b8c72f21c17133ab33.zip |
Sidebar blocks of Article editor can be expanded/collapsed.
Diffstat (limited to 'ratatoeskr/cms_style')
-rw-r--r-- | ratatoeskr/cms_style/images/expandarrow_collapsed.png | bin | 0 -> 142 bytes | |||
-rw-r--r-- | ratatoeskr/cms_style/images/expandarrow_expanded.png | bin | 0 -> 154 bytes | |||
-rw-r--r-- | ratatoeskr/cms_style/layout.css | 12 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ratatoeskr/cms_style/images/expandarrow_collapsed.png b/ratatoeskr/cms_style/images/expandarrow_collapsed.png Binary files differnew file mode 100644 index 0000000..62f662b --- /dev/null +++ b/ratatoeskr/cms_style/images/expandarrow_collapsed.png diff --git a/ratatoeskr/cms_style/images/expandarrow_expanded.png b/ratatoeskr/cms_style/images/expandarrow_expanded.png Binary files differnew file mode 100644 index 0000000..a5e4c41 --- /dev/null +++ b/ratatoeskr/cms_style/images/expandarrow_expanded.png diff --git a/ratatoeskr/cms_style/layout.css b/ratatoeskr/cms_style/layout.css index 1163887..a88537d 100644 --- a/ratatoeskr/cms_style/layout.css +++ b/ratatoeskr/cms_style/layout.css @@ -257,3 +257,15 @@ ul.bulletfree { list-style: none; padding-left: 0mm; } + +.metabar_element_expanded { + min-height: 12px; + background: url(images/expandarrow_expanded.png) 0px 4px no-repeat; + padding-left: 12px; +} + +.metabar_element_collapsed { + min-height: 12px; + background: url(images/expandarrow_collapsed.png) 0px 4px no-repeat; + padding-left: 12px; +}
\ No newline at end of file |