]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
de-IDifying labels in notice form to fix issue with geo pin activating the wrong...
authorBrion Vibber <brion@pobox.com>
Tue, 8 Mar 2011 20:01:12 +0000 (12:01 -0800)
committerBrion Vibber <brion@pobox.com>
Tue, 8 Mar 2011 20:14:44 +0000 (12:14 -0800)
Note that changes to the attachment from <label for/><input id/> to <label><input></label> affect some of the existing styles which attempt to place them both in the same place based on having a common parent. Only 'neo' has been fully tested and fixed for this case, as the others all fail due to the new layout anyway. :)

34 files changed:
lib/noticeform.php
plugins/MobileProfile/mp-screen.css
plugins/Realtime/realtimeupdate.css
theme/base/css/display.css
theme/biz/css/base.css
theme/biz/css/display.css
theme/clean/css/display.css
theme/clean/css/ie.css
theme/clean/css/mp-screen.css
theme/cleaner/css/display.css
theme/cleaner/css/ie.css
theme/cleaner/css/mp-screen.css
theme/cloudy/css/display.css
theme/cloudy/css/ie.css
theme/default/css/display.css
theme/default/css/ie.css
theme/identica/css/display.css
theme/identica/css/ie.css
theme/mnml/css/display.css
theme/mnml/css/ie.css
theme/mnml/css/mp-screen.css
theme/neo/css/display.css
theme/neo/css/ie.css
theme/neo/css/mp-screen.css
theme/pigeonthoughts/css/base.css
theme/pigeonthoughts/css/display.css
theme/rebase/css/display.css
theme/rebase/css/ie.css
theme/shiny/css/display.css
theme/shiny/css/ie.css
theme/shiny/css/mp-screen.css
theme/victorian/css/display.css
theme/victorian/css/ie.css
theme/victorian/css/mp-screen.css

index ace8e5582b43095f50f2af9b469362b7e96c8d04..271a37449c318dfac55c95650dfb5e6febbe2e43 100644 (file)
@@ -187,12 +187,14 @@ class NoticeForm extends Form
             if (common_config('attachments', 'uploads')) {
                 $this->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
                 // TRANS: Input label in notice form for adding an attachment.
-                $this->out->element('label', array('for' => 'notice_data-attach'),_('Attach'));
-                $this->out->element('input', array('id' => 'notice_data-attach',
+                $this->out->elementStart('label', array('class' => 'notice_data-attach'));
+                $this->out->text(_('Attach'));
+                $this->out->element('input', array('class' => 'notice_data-attach',
                                                    'type' => 'file',
                                                    'name' => 'attach',
                                                    // TRANS: Title for input field to attach a file to a notice.
                                                    'title' => _('Attach a file.')));
+                $this->out->elementEnd('label');
             }
             if ($this->action) {
                 $this->out->hidden('notice_return-to', $this->action, 'returnto');
@@ -210,6 +212,7 @@ class NoticeForm extends Form
 
                 // @fixme checkbox method allows no way to change the id without changing the name
                 //$this->out->checkbox('notice_data-geo', _('Share my location'), true);
+                $this->out->elementStart('label', 'notice_data-geo');
                 $this->out->element('input', array(
                     'name' => 'notice_data-geo',
                     'type' => 'checkbox',
@@ -218,11 +221,10 @@ class NoticeForm extends Form
                     'checked' => true, // ?
                 ));
                 $this->out->text(' ');
-                $this->out->element('label', array('class' => 'notice_data-geo',
-                                              'for' => $this->id() . '-notice_data-geo'),
-                               // TRANS: Field label to add location to a notice.
-                               _('Share my location'));
-
+                // TRANS: Field label to add location to a notice.
+                $this->out->text(_('Share my location'));
+                $this->out->elementEnd('label');
+                               
                 $this->out->elementEnd('div');
                 // TRANS: Text to not share location for a notice in notice form.
                 $share_disable_text = _('Do not share my location');
index fcd88277e5a26d9f56598294b2f8adeba616e2d9..d82486182a42ed2122a68203fd0916d4ecfea16b 100644 (file)
@@ -108,7 +108,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 #form_notice label[for="notice_data-attach"] {
 display:none;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index 7fd7fd5ed35c6dbc4097b43ceb0df1ab0ac76ced..3295fe4a312a7791366a16499ee01f6b0e48423f 100644 (file)
@@ -17,13 +17,13 @@ max-width:451px;
 display:none;
 }
 
-.realtime-popup #form_notice label[for=notice_data-attach],
-.realtime-popup #form_notice #notice_data-attach,
+.realtime-popup #form_notice label.notice_data-attach,
+.realtime-popup #form_notice input.notice_data-attach,
 .realtime-popup #form_notice label.notice_data-geo {
 top:0;
 }
 
-.realtime-popup #form_notice #notice_data-attach {
+.realtime-popup #form_notice input.notice_data-attach {
 left:auto;
 right:0;
 }
index 16c2b6dce67efbac400b373c5790caf867acb5b1..85ec1286b9c294d0a760926988ab82e18deb4458 100644 (file)
@@ -597,19 +597,19 @@ float:left;
 font-size:1.3em;
 margin-bottom:7px;
 }
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
 position:absolute;
 top:25px;
 right:10.5%;
 cursor:pointer;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 text-indent:-9999px;
 width:16px;
 height:16px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 padding:0;
 height:16px;
 }
index 53aca59009ee6e0f997a305e0ff70351b5f84a28..3a20871de9420694115f959d914e5181397a491f 100644 (file)
@@ -462,11 +462,11 @@ float:left;
 font-size:1.3em;
 margin-bottom:7px;
 }
-#form_notice label[for=notice_data-attach] {
+#form_notice label.notice_data-attach {
 text-indent:-9999px;
 }
-#form_notice label[for=notice_data-attach],
-#form_notice #notice_data-attach {
+#form_notice label.notice_data-attach,
+#form_notice input.notice_data-attach {
 position:absolute;
 top:25px;
 right:49px;
@@ -474,7 +474,7 @@ width:16px;
 height:16px;
 cursor:pointer;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 text-indent:-279px;
 }
 #form_notice #notice_submit label {
index 0bb53f74a84d5744268fc2b97f52d0153b0e2633..2e96d99d1a9ab86c9b90564695ba6ea2f1f5c69e 100644 (file)
@@ -172,14 +172,14 @@ color:#333333;
 #form_notice.warning .count {
 color:#000000;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 background-position:0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 opacity:0;
 }
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
index 96a5c02a563754a80708e298892746384d7e5978..ea2d62020e0fd5c65c765731d0e7b5665b51dac8 100644 (file)
@@ -114,8 +114,8 @@ address {
     height: 54px;
 }
 
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
     top: 27px;
 }
 
index 994c1297d393118d30f557411ebe7214d7bdd1cf..272a5bbcaec64091368bb5d256bcc5a7a81d3b0b 100644 (file)
@@ -61,7 +61,7 @@ line-height:auto;
     color:#FFFFFF;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 
index 35d8326a41779fb8b5153b6b0f4f38289e136e63..8d9489b0b13c7db74c07340b3936106b3f498d71 100644 (file)
@@ -94,7 +94,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 .form_notice label[for="notice_data-attach"] {
 display:none;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index 214c821e59ae7565e5ecabba7ede5ff72525ec73..98d4560d2ad2905872e4670a5ec8f88940d98c4d 100644 (file)
@@ -161,8 +161,8 @@ address {
     border-radius: 6px;
 }
 
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
     top: 27px;
     right: 86px;
 }
@@ -594,7 +594,7 @@ padding-right:0;
     right: 6px !important;
 }
 
-.realtime-popup .form_notice label[for=notice_data-attach], .realtime-popup .form_notice #notice_data-attach {
+.realtime-popup .form_notice label.notice_data-attach, .realtime-popup .form_notice input.notice_data-attach {
     right: 74px;
     top: 3px !important;
 }
index dbc72b1c22df66a623d51423c4970ff267696c9a..7bd48790bf07d46b62c484dcfba27c7e9e318fd1 100644 (file)
@@ -65,7 +65,7 @@ line-height:auto;
     color:#FFFFFF;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 
index 8b55e596feef240430d2e60c41ec0ca94f23edfa..cb3c6d06b648a3c435a81ede905600c70c15cd22 100644 (file)
@@ -99,7 +99,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 .form_notice label[for="notice_data-attach"] {
 display:none;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index a5eabac4adafc5c56310bc8ada3a204c2817a866..5bc8ab0c1ee8595d5efb018add13dd2fbbd0c139 100644 (file)
@@ -493,19 +493,19 @@ float:left;
 font-size:1.3em;
 margin-bottom:7px;
 }
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
 position:absolute;
 top:25px;
 right:10.5%;
 cursor:pointer;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 text-indent:-9999px;
 width:16px;
 height:16px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 padding:0;
 height:16px;
 }
@@ -1602,7 +1602,7 @@ background:none;
 }
 
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
@@ -1787,10 +1787,10 @@ color:#000000;
 #form_notice.warning .count {
 color:#000000;
 }
-#form_notice label[for=notice_data-attach] {
+#form_notice label.notice_data-attach {
 background:transparent url(../../base/images/icons/twotone/green/clip-01.gif) no-repeat 0 45%;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 opacity:0;
 }
 
index edddc16d88b11ff430e718247d1d60414dcbf356..013bdf9d16f1f18f5b228a0d74db1002aad9a4df 100644 (file)
@@ -34,7 +34,7 @@ height:16px;
 width:16px;
 display:block;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 filter: alpha(opacity = 0);
 left:33.5%;
 }
index fbd3afb12c4b3e46745b181d9933e93952412faa..3e3bfdfa86a0c60cc4456cd2e08fa51407df8126 100644 (file)
@@ -152,14 +152,14 @@ color:#333333;
 .entity_actions .dialogbox input {
 color:#000000;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 background-position:0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 opacity:0;
 }
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
index 2bbeb7ffa4bf8a6fb3d4ab8cb38ad8813e35e948..31008216881c9e88fb749a64147fa7b45b4ee79d 100644 (file)
@@ -16,7 +16,7 @@ background-color:#C8D1D5;
 .form_notice .count + label {
 background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 filter: alpha(opacity=0);
 }
 .notice-options form.form_favor input.submit {
index fba72a09d695cac1ed433db5f6aafd4c6c9d01f8..fe7ffa9f7d734029af0493a311cf9d690cf5f7a7 100644 (file)
@@ -153,14 +153,14 @@ color:#333333;
 .entity_actions .dialogbox input {
 color:#000000;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 background-position:0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 opacity:0;
 }
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
index 888c486f40f67a48028567b8ede240a187a9d23d..858cf3e1814c80f96952928b3283f5b3e40cefc4 100644 (file)
@@ -16,7 +16,7 @@ background-color:#D9DADB;
 .form_notice .count + label {
 background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 filter: alpha(opacity=0);
 }
 .notice-options form.form_favor input.submit {
index 57ad426c5592f2fef038b029b3fd4f1184da38e2..e7bce8443986d1a18a0096ac526b9ae448ee43b8 100644 (file)
@@ -234,7 +234,7 @@ p.instructions {
 
 /*-- FORMS --*/
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
@@ -292,7 +292,7 @@ button.minimize,
 .form_notice label.notice_data-geo.checked {
     background-position:0 -1846px;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
     background-position:0 -328px;
 }
 button.close {
@@ -937,19 +937,19 @@ z-index:2;
 .form_notice label {
 float:left;
 }
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
 position:absolute;
 top:2em;
 right: 3em;
 cursor:pointer;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
 text-indent:-9999px;
 width:16px;
 height:16px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 opacity: 0;
 padding:0;
 height:1.6em;
index fed65f8b9ac86d9d6378d6c76ee1d526fdc16760..839855aa6faeb2aec17e0cef8b5ebe73b72da0af 100644 (file)
@@ -45,7 +45,7 @@ padding:0 4px;
     background:transparent url(../images/icons/icons-01.png) no-repeat 0 -328px;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 .form_notice .notice_data-geo_wrap label {
index fdee4cdef325f41da077a56426d53c6f0d038115..47fdbf5e3b78ad65fa93949f456146f1a6fb6555 100644 (file)
@@ -114,7 +114,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 #form_notice label[for="notice_data-attach"] {
 display:none;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index a542ed7609f96280fd3ac3ed6bbb11b7cf7cba5b..3d98b09f02356d9814d5129e32b93efcd9e59104 100644 (file)
@@ -160,8 +160,7 @@ address {
     border-radius: 6px;
 }
 
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach {
     top: 27px;
     right: 86px;
 }
@@ -434,8 +433,8 @@ td.entity_profile { /* cf directory table */
 
 #entity_remote_subscribe .dialogbox {
     border: 1px solid #7B4E82;
-    border-radius: 8px;\r
-       -moz-border-radius: 8px;\r
+    border-radius: 8px;
+       -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
 }
 
@@ -612,7 +611,7 @@ padding-right:0;
     right: 6px !important;
 }
 
-.realtime-popup .form_notice label[for=notice_data-attach], .realtime-popup .form_notice #notice_data-attach {
+.realtime-popup .form_notice label.notice_data-attach, .realtime-popup .form_notice input.notice_data-attach {
     right: 74px;
     top: 3px !important;
 }
@@ -637,8 +636,8 @@ padding-right:0;
 }
 
 .bookmark-notice-count {
-    border-radius: 4px;\r
-       -moz-border-radius: 4px;\r
+    border-radius: 4px;
+       -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
     padding: 1px 6px;
     font-size: 1.2em;
@@ -676,8 +675,8 @@ padding-right:0;
 }
 
 ul.bookmark-tags a {
-    border-radius: 4px;\r
-       -moz-border-radius: 4px;\r
+    border-radius: 4px;
+       -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
     padding: 1px 6px;
     background: #f2f2f2;
@@ -761,8 +760,8 @@ ul.bookmark-tags a:hover {
 /* Onboard specific styles */
 
 .onboard-flash {
-    border-radius: 6px;\r
-       -moz-border-radius: 6px;\r
+    border-radius: 6px;
+       -moz-border-radius: 6px;
        -webkit-border-radius: 6px;
     font-size: 1.1em;
     box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.5);
index 41f7dc9f88bd6b23452793a70691baa6a769a89f..81d13f443e8445df55554296feb8e6687c664fc4 100644 (file)
@@ -22,11 +22,11 @@ display:block;
     width: 106px;
     max-width: 106px;
 }
-.form_notice #notice_data-attach_selected,
+.form_notice input.notice_data-attach_selected,
 .form_notice #notice_data-geo_selected {
 width:78.75%;
 }
-.form_notice #notice_data-attach_selected button,
+.form_notice input.notice_data-attach_selected button,
 .form_notice #notice_data-geo_selected button {
 padding:0 4px;
 }
@@ -65,7 +65,7 @@ line-height:auto;
     color:#FFFFFF;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 
index d3f95db9b6442deab59f59568cf950b4db895c8e..1b7480ecaf84253e2cbd71bdf65bb8349f35be24 100644 (file)
@@ -99,7 +99,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 .form_notice label[for="notice_data-attach"] {
 display:none;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index 59cba446ac39f216766759e46a337082c9977db7..2eade7a451970c45deb31e6f74425ff0ab4fb10f 100644 (file)
@@ -450,19 +450,24 @@ float:left;
 font-size:1.3em;
 margin-bottom:7px;
 }
-#form_notice label[for=notice_data-attach],
-#form_notice #notice_data-attach {
+#form_notice label.notice_data-attach,
+#form_notice input.notice_data-attach {
 position:absolute;
-top:25px;
 cursor:pointer;
 }
-#form_notice label[for=notice_data-attach] {
+#form_notice label.notice_data-attach {
+top:25px;
+}
+#form_notice input.notice_data-attach {
+top:0;
+}
+#form_notice label.notice_data-attach {
 text-indent:-9999px;
 left:394px;
 width:16px;
 height:16px;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 left:183px;
 padding:0;
 height:16px;
index b4f2f297b0dc0f821d1314cba9cc607321563c8d..3ac0f0bce742efb716a19ea6f716d1ac8440a4d6 100644 (file)
@@ -192,14 +192,14 @@ color:#333333;
 #form_notice.warning .count {
 color:#000000;
 }
-#form_notice label[for=notice_data-attach] {
+#form_notice label.notice_data-attach {
 background-position:0 -328px;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 opacity:0;
 }
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
index f5691312135932c203c38dd5b62ae8197bfb04e6..810dd70bc1e4e9e6f8d69fb751fb65f8f64a2b93 100644 (file)
@@ -226,21 +226,28 @@ address .poweredby {
     color: #333 !important;
 }
 
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
     position:absolute;
+    cursor:pointer;
+}
+.form_notice label.notice_data-attach {
     top: 31px;
     right: 88px;
-    cursor:pointer;
+}
+.form_notice input.notice_data-attach {
+    /* Positioned inside the label */
+    top: 0;
+    right: 0;
 }
 
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
     text-indent:-9999px;
     width:16px;
     height:16px;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     padding:0;
     height:16px;
 }
@@ -348,7 +355,7 @@ address .poweredby {
     opacity: 1;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     opacity:0;
 }
 
@@ -1724,7 +1731,7 @@ body.realtime-popup {
     width: 86px;
 }
 
-.realtime-popup .form_notice label[for=notice_data-attach], .form_notice #notice_data-attach {
+.realtime-popup .form_notice label.notice_data-attach {
     right: 70px;
 }
 
@@ -1734,7 +1741,7 @@ body.realtime-popup {
 
 /* icons */
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
@@ -1921,7 +1928,7 @@ background-position:0 -1648px;
 #new_group a {
 background-position:0 -1054px;
 }
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
     background-position: 0 -328px;
 }
 .form_notice label.notice_data-geo {
index 20e038998bcd501242ad1612821aa4fd9747ca6d..9dfb176698d4e9717dd21a4af64230e679a35404 100644 (file)
@@ -61,7 +61,7 @@ line-height:auto;
     color:#FFFFFF;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 
index e027153dd78c605db06e46e5cba006047c923ed5..32a0a7e255cd7f47465b6cd4964871871dd3fb18 100644 (file)
@@ -230,8 +230,8 @@ h6 {font-size: 1em;}
     border: 1px solid #9495b7;
 }
 
-.form_notice label[for=notice_data-attach],
-.form_notice #notice_data-attach {
+.form_notice label.notice_data-attach,
+.form_notice input.notice_data-attach {
     top: 27px;
     right: 86px;
 }
index 8145073db563eb21b9034002363d70d34dd043ed..e916b1e4cc423da21c321b93f0cd09e49b566064 100644 (file)
@@ -63,7 +63,7 @@ line-height:auto;
     color:#FFFFFF;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     filter: alpha(opacity=0);
 }
 
index cb899b3557f2b57b82ee6a74a264471fe785a460..c23a24b3c96e45abd92a718c2c990a8bb5818f7f 100644 (file)
@@ -99,7 +99,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 .form_notice label[for="notice_data-attach"] {
 display:none;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;
index 6252fdf908f0a1fabed9b63031db6c4d9f42a8a8..65d73e96fc81ad666a0a285a45055c59b66a115e 100644 (file)
@@ -328,15 +328,15 @@ a,
     color:#000000;
 }
 
-.form_notice label[for=notice_data-attach] {
+.form_notice label.notice_data-attach {
     background-position:0 -328px;
 }
 
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
     opacity:0;
 }
 
-.form_notice label[for=notice_data-attach],
+.form_notice label.notice_data-attach,
 #export_data li a.rss,
 #export_data li a.atom,
 #export_data li a.foaf,
index 038195faafd57fbf1114d65411c0ad2ed48fc28d..2befa9cc483544a224f2809daa708d7916670279 100644 (file)
@@ -9,7 +9,7 @@ background-color:#C8D1D5;
 .form_notice .count + label {
 background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px;
 }
-.form_notice #notice_data-attach {
+.form_notice input.notice_data-attach {
 filter: alpha(opacity=0);
 }
 .notice-options form.form_favor input.submit {
index 94a534912f45cb983f092bee8e4654daff91053d..584bfc7c10c1f474f3472d6053b2e061bcce4902 100644 (file)
@@ -109,7 +109,7 @@ iPhone/iPod Touch, Android, Opera Mini Simulator
 #form_notice label[for="notice_data-attach"] {
 display:none;
 }
-#form_notice #notice_data-attach {
+#form_notice input.notice_data-attach {
 position:static;
 clear:both;
 width:65%;