diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-10 12:52:48 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-12-10 12:52:48 -0500 |
commit | e445935f646afababe75b84598ec7783321e57cb (patch) | |
tree | 13eed923faa6fe26812e60398b3eeecf2a9c09c0 | |
parent | 764666055f85820fb2a86638c077b997334179a3 (diff) |
Move statusnetwidget styling into separate file.
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | plugins.d/statusnetwidget.scss | 7 | ||||
-rw-r--r-- | style.scss | 10 | ||||
-rw-r--r-- | theme.mk | 3 |
4 files changed, 13 insertions, 10 deletions
@@ -4,6 +4,9 @@ * # but these: !style.scss +!plugins.d +plugins.d/* +!plugins.d/statusnetwidget.scss !functions.php !screenshot.png !index.php.patch diff --git a/plugins.d/statusnetwidget.scss b/plugins.d/statusnetwidget.scss new file mode 100644 index 0000000..ddc5e2a --- /dev/null +++ b/plugins.d/statusnetwidget.scss @@ -0,0 +1,7 @@ +.widget_statusnetwidget { + background: #CCCCBB; + h3 { + background: url('https://si0.twimg.com/images/dev/cms/intents/bird/bird_blue/bird_16_blue.png') no-repeat left center; + padding-left: 24px; + } +} @@ -144,12 +144,4 @@ dd { margin-left: 4em; } -/* Specific things */ - -.widget_statusnetwidget { - background: #CCCCBB; - h3 { - background: url('https://si0.twimg.com/images/dev/cms/intents/bird/bird_blue/bird_16_blue.png') no-repeat left center; - padding-left: 24px; - } -} +@import "plugins.d/statusnetwidget.scss"; @@ -1,5 +1,6 @@ srcfiles = \ style.scss \ + plugins.d/statusnetwidget.scss \ functions.php \ screenshot.png \ index.php.patch \ @@ -10,4 +11,4 @@ srcfiles = \ targets = style.css header.php index.php single.php -style.css: twentyeleven-fix.scss +style.css: twentyeleven-fix.scss plugins.d/statusnetwidget.scss |