aboutsummaryrefslogtreecommitdiff
path: root/views/default/css.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-17 03:33:06 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-17 03:33:06 +0000
commit7c41b1812fdbd8b8e4f7d2d04446107feb50fd22 (patch)
tree3bd194b5214072044d661a9d7416f13de2d5ff42 /views/default/css.php
parent6c366e6a8306f43fefb6a0bccfb010aad61a3c3d (diff)
downloadelgg-7c41b1812fdbd8b8e4f7d2d04446107feb50fd22.tar.gz
elgg-7c41b1812fdbd8b8e4f7d2d04446107feb50fd22.tar.bz2
Refs #821 #1793 early widget layout - does not include edit settings, delete, collapsing, reloading, or adding widgets
git-svn-id: http://code.elgg.org/elgg/trunk@7329 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css.php')
-rw-r--r--views/default/css.php60
1 files changed, 59 insertions, 1 deletions
diff --git a/views/default/css.php b/views/default/css.php
index 923d7c958..8409ceb8b 100644
--- a/views/default/css.php
+++ b/views/default/css.php
@@ -17,6 +17,7 @@
SUBMENU current page/tool submenu in sidebar
PAGINATION re-usable default page navigation
ELGG TABBED NAVIGATION re-usable tabbed navigation
+ WIDGETS
LOGIN / REGISTER login box, register, and lost password page styles
CONTENT HEADER
DEFAULT COMMENTS
@@ -25,7 +26,7 @@
GENERAL FORM ELEMENTS default styles for all elgg input/form elements
FRIENDS PICKER
LIKES
-
+ MISC
*/
/* Colors:
@@ -855,6 +856,54 @@ li.navigation_more ul li {
background: white;
}
+/* ***************************************
+ WIDGETS
+*************************************** */
+.widget_column {
+ float: right;
+ min-height: 15px;
+}
+.widget_col_1 {
+ width: 100%;
+}
+.widget_col_2 {
+ width: 48%;
+ margin-right: 4%;
+}
+.widget_col_3 {
+ width: 32%;
+ margin-right: 2%;
+}
+.widget_col_4 {
+ width: 23.5%;
+ margin-right: 2%;
+}
+.widget_first_col {
+ margin-right: 0;
+}
+.widget {
+ background-color: #dedede;
+ padding: 2px;
+ margin-bottom: 15px;
+}
+.widget_title {
+ height: 30px;
+ line-height: 30px;
+}
+.widget_title h3 {
+ padding: 0 5px;
+}
+.widget_content {
+ background-color: #ffffff;
+ padding: 10px;
+}
+.drag_handle {
+ cursor: move;
+}
+.widget_placeholder {
+ border: 2px dashed #dedede;
+ margin-bottom: 15px;
+}
/* ***************************************
LOGIN / REGISTER
@@ -1653,3 +1702,12 @@ p.elgg_likes_owner {
.user_picker_entry .delete_button {
margin-right:10px;
}
+
+/* ***************************************
+ MISC
+*************************************** */
+#dashboard_info {
+ float: left;
+ width: 66%;
+ margin-bottom: 15px;
+} \ No newline at end of file