Browse Source

Improve some style

star7th 9 years ago
parent
commit
9f01ba0b68

+ 1 - 1
Application/Home/View/Item/index.html

@@ -22,7 +22,7 @@
 
       <div class="masthead">
         <div class="btn-group pull-right">
-        <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
+        <a class="btn btn-link dropdown-toggle" data-toggle="dropdown" href="#">
         {$Think.Lang.more}
         <span class="caret"></span>
         </a>

+ 3 - 3
Application/Home/View/Item/show.html

@@ -1,5 +1,5 @@
 <include file="Common/header" />
-<link rel="stylesheet" href="__PUBLIC__/css/item/show.css?1.1d.1thddde" />
+<link rel="stylesheet" href="__PUBLIC__/css/item/show.css?1.1d.1thdddef" />
 
 
 <div class="doc-head row" >
@@ -10,7 +10,7 @@
       <if condition="$ItemPermn">
       <li>
           <div class="btn-group ">
-            <a class="btn btn-primary dropdown-toggle" data-toggle="dropdown" href="#">
+            <a class="btn btn-link dropdown-toggle" data-toggle="dropdown" href="#">
               {$Think.Lang.item}
               <span class="caret"></span>
             </a>
@@ -26,7 +26,7 @@
               <li><a href="{:U('Home/Item/delete',array('item_id'=>$item['item_id']))}">{$Think.Lang.delete}</a></li>
             </if>
 
-            <li><a href="{:U('Home/Item/index')}">{$Think.Lang.more_item}</a></li>
+            <li><a href="{:U('Home/Item/index')}">{$Think.Lang.goback}</a></li>
           </ul>
       </li>
       <else />

+ 2 - 2
Application/Home/View/Page/index.html

@@ -1,7 +1,7 @@
 <include file="Common/header" />
 <link href="__PUBLIC__/highlight/default.min.css" rel="stylesheet"> 
-<link href="__PUBLIC__/css/page/index.css?v=1.1234" rel="stylesheet">
-<h3 style="text-align: center;">{$page.page_title}</h3>
+<link href="__PUBLIC__/css/page/index.css?v=1.12345" rel="stylesheet">
+<h3 id="page_title">{$page.page_title}</h3>
 <!-- 这里开始是内容 -->
 <div id="page_md_content" ><textarea style="display:none;">
 {$page.page_md_content}</textarea></div>

+ 1 - 1
Public/css/item/show.css

@@ -75,7 +75,7 @@
     padding-left: 20px;
     padding-right: 20px;
     width: 80%;
-    max-width: 1000px;
+    max-width: 700px;
     margin: 0 auto;
   }
 

+ 7 - 0
Public/css/page/index.css

@@ -28,4 +28,11 @@ li{
 
 .hljs{
 	padding:0.2em;
+}
+
+#page_title{
+    text-align: left;
+    border-bottom: 1px solid #d9d9d9;
+    padding-top: 10px;
+    padding-bottom: 20px
 }