public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/technoweenie/mephisto.git
Click here to lend your support to: mephisto and make a donation at www.pledgie.com !
Commiting a rough version of the assets area

git-svn-id: http://svn.techno-weenie.net/projects/mephisto/trunk@1339 
567b1171-46fb-0310-a4c9-b4bef9110e78
Caged (author)
Sun Jul 09 22:57:43 -0700 2006
commit  f524a236b52f088cbed48964e7e09f34ffb8c79f
tree    57215256ac3d535ec7846c87b7fdbb0381bfc38a
parent  76259117e37e7526e37f41eb53f6f51ce3ddb131
...
63
64
65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
67
68
...
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
0
@@ -63,6 +63,26 @@
0
 
0
 <% content_for :sidebar do %>
0
 <% if false %>
0
+ <div class="sgroup">
0
+ <h3>Publish in these sections</h3>
0
+ <ul class="slist">
0
+ <% @sections.each do |section| %>
0
+ <li>
0
+ <%= check_box_tag 'article[section_ids][]', section.id, @article.has_section?(section),
0
+ :id => "article_section_ids_#{section.id}" %>
0
+ <label for="article_section_ids_<%= section.id %>"><%= section.name %></label>
0
+ </li>
0
+ <% end %>
0
+ </ul>
0
+
0
+ <% unless @article.new_record? -%>
0
+ <h3>Expire Comments At</h3>
0
+ <%= form.date_select :expire_comments_at %>
0
+ <% end -%>
0
+ </div>
0
+<% end %>
0
+
0
+<% if false %>
0
   <div class="sgroup" id="filetabs">
0
 
0
     <ul class="stabs">
...
1005
1006
1007
1008
 
1009
1010
1011
1012
1013
 
1014
1015
1016
...
1033
1034
1035
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1036
1037
1038
...
1054
1055
1056
 
 
 
 
 
 
 
 
 
1057
1058
1059
...
1005
1006
1007
 
1008
1009
1010
1011
1012
 
1013
1014
1015
1016
...
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
...
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
0
@@ -1005,12 +1005,12 @@ li.event-none { background-image: url(../images/icons/minusb.gif); }
0
  *=ASSET MANAGEMENT
0
  */
0
 
0
-#assets {
0
+#assets, #files {
0
   list-style: none;
0
   margin-top: 5px;
0
 }
0
 
0
-#assets li {
0
+#assets li, #files li {
0
   display: inline;
0
   margin-left: 5px;
0
   margin-bottom: 5px;
0
@@ -1033,6 +1033,49 @@ li.event-none { background-image: url(../images/icons/minusb.gif); }
0
   display: block;
0
   font-size: 80%;
0
 }
0
+
0
+/*
0
+ *=FIES
0
+ */
0
+
0
+#files, #recentfiles {
0
+ margin-bottom: 20px;
0
+ list-style: none;
0
+}
0
+
0
+#files li, #recentfiles li {
0
+ float: left;
0
+ margin-right: 10px;
0
+ text-align: center;
0
+ margin-bottom: 10px;
0
+ width: 23%;
0
+}
0
+
0
+#recentfiles li img, #files li img {
0
+ max-width: 120px;
0
+ max-height: 120px;
0
+ overflow: hidden;
0
+ background: #fff;
0
+ padding: 5px;
0
+ border: 1px solid #ccc;
0
+}
0
+
0
+#files li {
0
+ width: 20%;
0
+}
0
+
0
+#files li img {
0
+ max-width: 50px;
0
+ max-height: 50px;
0
+}
0
+
0
+#filelist #recentfiles span {
0
+ font-size: 80%;
0
+ color: #555;
0
+ font-style: italic;
0
+ display: block;
0
+ text-align: center;
0
+}
0
 /*
0
  *=MISC
0
  */
0
@@ -1054,6 +1097,15 @@ h3.withcontrol {
0
   text-align: right;
0
 }
0
 
0
+.divider {
0
+ margin: 0 0 5px 0;
0
+ border-bottom: 1px dotted #bbb;
0
+ padding: 0;
0
+ font-size: 90%;
0
+ font-family: Helvetica, Arial, sans-serif;
0
+ color: #033;
0
+}
0
+
0
 .feed {
0
   background: url(../images/icons/feed-icon-12x12.gif) 0 50% no-repeat;
0
   padding-left: 16px;

Comments

    No one has commented yet.