From 9dafde2c9f14f445399226de15b694d4e45deb79 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 8 Sep 2008 16:17:51 -0400 Subject: [PATCH] styling on the favor/disfavor forms to show inline darcs-hash:20080908201751-84dde-a498395d26b957b72350d8075d056b661a1f77c7.gz --- lib/util.php | 2 ++ theme/stoica/display.css | 10 +++++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/lib/util.php b/lib/util.php index 7e49dd8bdf..8a1f9e008e 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1550,6 +1550,7 @@ function common_session_token() { function common_disfavor_form($notice) { common_element_start('form', array('id' => 'disfavor-' . $notice->id, 'method' => 'post', + 'class' => 'disfavor', 'action' => common_local_url('disfavor'))); common_hidden('token', common_session_token()); common_hidden('notice', $notice->id); @@ -1560,6 +1561,7 @@ function common_disfavor_form($notice) { function common_favor_form($notice) { common_element_start('form', array('id' => 'favor-' . $notice->id, 'method' => 'post', + 'class' => 'favor', 'action' => common_local_url('favor'))); common_hidden('token', common_session_token()); common_hidden('notice', $notice->id); diff --git a/theme/stoica/display.css b/theme/stoica/display.css index 49f86aef92..a0f37fc4d8 100644 --- a/theme/stoica/display.css +++ b/theme/stoica/display.css @@ -647,6 +647,10 @@ input#openid_url { /* ----- favor/disfavor -----*/ +form#disfavor, form.disfavor { + display: inline; +} + input#disfavor, input.disfavor { display: inline; color: #C15D42; @@ -655,7 +659,11 @@ input#disfavor, input.disfavor { border: 0; width: auto; } - + +form#favor, form.favor { + display: inline; +} + input#favor, input.favor { display: inline; color: #C15D42;