OSDN Git Service

ボタンのIE不具合修正
authorCake <cake_67@users.sourceforge.jp>
Fri, 19 Mar 2010 13:13:04 +0000 (22:13 +0900)
committerCake <cake_67@users.sourceforge.jp>
Fri, 19 Mar 2010 13:13:04 +0000 (22:13 +0900)
app/views/layouts/admin_default.ctp
app/views/layouts/default.ctp
app/webroot/css/base.css
app/webroot/css/ie.css
app/webroot/css/ie6.css [new file with mode: 0644]

index 60806fd..7e914e1 100644 (file)
        echo $html->css('ie');
 ?>
 <![endif]-->
+<!--[if lte IE 6 ]>
+<?php
+       echo $html->css('ie6');
+?>
+<![endif]-->
 
 <script type="text/javascript">
        $(document).ready(function(){
index e942552..b52a17d 100644 (file)
        echo $html->css('ie');
 ?>
 <![endif]-->
+<!--[if lte IE 6 ]>
+<?php
+       echo $html->css('ie6');
+?>
+<![endif]-->
 
 <script type="text/javascript">
        $(document).ready(function(){
index 65cd064..8acaf23 100644 (file)
@@ -340,6 +340,9 @@ input, textarea {
        font-size: 100%;
        padding: 1px;
 }
+input {
+       width: auto;
+}
 
 /* Notices and Errors */
 
@@ -425,7 +428,10 @@ div.inline input[type="checkbox"]  {
        float: none;
        margin: 2px 5px 2px 2px;
 }
-div.input label,
+div.input label {
+       display: block;
+       padding-right: 5px;
+}
 div.inline label {
        display: inline;
        padding-right: 5px;
index 9803989..4bdd60b 100644 (file)
@@ -7,10 +7,9 @@
 
 /* Cancel */
 .backButton {
-       top: -52px;
+       top: -43px;
 }
 
-
 /* Attachments */
 img.shadow {
        -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#bbbbbb,direction=0,strength=5) progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa,direction=90,strength=7) progid:DXImageTransform.Microsoft.Shadow(color=#aaaaaa,direction=180,strength=7) progid:DXImageTransform.Microsoft.Shadow(color=#bbbbbb,direction=270,strength=5)";
diff --git a/app/webroot/css/ie6.css b/app/webroot/css/ie6.css
new file mode 100644 (file)
index 0000000..6c58623
--- /dev/null
@@ -0,0 +1,8 @@
+@charset "UTF-8";
+
+* {}
+
+
+.backButton {
+       position: static;
+}