diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-18 15:33:11 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-18 15:33:11 -0400 |
commit | 0f2686eff7f23a996a2a35f712079ea3ac971cd9 (patch) | |
tree | 7b5508ebb8c05fb162b10e3c379239aa9e127d8f /.themes/classic/sass/custom | |
parent | 4dfc5c1d67ab50752a38a69949f546475d1b3e7e (diff) | |
download | my_new_personal_website-0f2686eff7f23a996a2a35f712079ea3ac971cd9.tar.xz my_new_personal_website-0f2686eff7f23a996a2a35f712079ea3ac971cd9.zip |
Refactored layout styles:
1. Now iPad vertical gets a collapsed sidebar with columns
2. Moved sidebar toggler styles from layout to sidebar/base
3. Added body class .sidebar-footer to support an always collapsed sidebar
4. Added $indented-lists (bool) for easily setting list indent preferences
5. Removed no-sidebar checking from sidebar-toggler, handled it through css.
Diffstat (limited to '.themes/classic/sass/custom')
-rw-r--r-- | .themes/classic/sass/custom/_layout.scss | 1 | ||||
-rw-r--r-- | .themes/classic/sass/custom/_styles.scss | 5 |
2 files changed, 1 insertions, 5 deletions
diff --git a/.themes/classic/sass/custom/_layout.scss b/.themes/classic/sass/custom/_layout.scss index 162f5ad6..53173115 100644 --- a/.themes/classic/sass/custom/_layout.scss +++ b/.themes/classic/sass/custom/_layout.scss @@ -2,6 +2,7 @@ // To give it a try, uncomment some of the lines below, make changes, rebuild your blog, and see how it works. //$max-width: 1350px; +//$indented-lists: true; // Padding used for layout margins //$pad-min: 18px; diff --git a/.themes/classic/sass/custom/_styles.scss b/.themes/classic/sass/custom/_styles.scss index e0e19753..91ffcccf 100644 --- a/.themes/classic/sass/custom/_styles.scss +++ b/.themes/classic/sass/custom/_styles.scss @@ -1,7 +1,2 @@ // This File is imported last, and will override other styles in the cascade // Add styles here to make changes without digging in too much - -// For example if you want indented lists on all screen sizes uncomment the following lines -// #content article { -// ul, ol { margin-left: 1.4em; } -// } |