summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authorBjörn Geiger2011-04-11 13:51:05 +0200
committerBjörn Geiger2011-04-11 13:51:05 +0200
commitb43ff296c311076e8970b40aae80ec79de24adf1 (patch)
tree8ecd48164f7d43f313c8f26aef5db18aa73ce316 /public
parentNeues Recht um default Bootmenu zu setzen & Bootmenu-REchte angepasst (diff)
downloadpbs2-b43ff296c311076e8970b40aae80ec79de24adf1.tar.gz
pbs2-b43ff296c311076e8970b40aae80ec79de24adf1.tar.xz
pbs2-b43ff296c311076e8970b40aae80ec79de24adf1.zip
verschiedene Layouts korrigiert
Diffstat (limited to 'public')
-rw-r--r--public/media/css/style.css11
-rw-r--r--public/media/css/user.css40
-rw-r--r--public/media/js/user.js6
3 files changed, 35 insertions, 22 deletions
diff --git a/public/media/css/style.css b/public/media/css/style.css
index d1f3b28..54dc213 100644
--- a/public/media/css/style.css
+++ b/public/media/css/style.css
@@ -338,17 +338,6 @@ div.dsf{
float: left;
}
-.personDiv {
- border: 1px solid #CCC;
- margin-bottom: 10px;
-}
-
-.personColorDiv {
- border: 1px solid #CCC;
- margin-bottom: 10px;
- background-color: #FFF5CC;
-}
-
.monospace {
font-family: Courier New, monospace;
}
diff --git a/public/media/css/user.css b/public/media/css/user.css
index 204d20b..19d86cd 100644
--- a/public/media/css/user.css
+++ b/public/media/css/user.css
@@ -21,14 +21,6 @@
text-align: center;
}
-tr.selectedEntry {
- background-color: red;
-}
-
-tr.selectedEntry td {
- padding-left: 3px;
-}
-
#rights-element dl fieldset dt {
width: 325px;
}
@@ -153,6 +145,34 @@ tr.selectedEntry td {
background-position: 15px center;
}
+.detailelement {
+ clear: both;
+ padding-top: 10px;
+ margin: 10px 0px;
+}
+
+.detailelement .element {
+ border: 1px solid black;
+ margin: 5px 0px;
+ padding: 5px;
+ -moz-border-radius: 3px;
+ border-radius: 3px;
+ background-color: white;
+}
+
+.detailelement .element:nth-child(even) {
+ background-color: #F0F8FF;
+}
+
+.detailelement .element .content {
+ margin-left: 50px;
+}
+
+.detailelement .element .content .title {
+ font-weight: bold;
+ font-size: 1.2em;
+}
+
.searchvars {
border: 1px solid #000;
background-color: #FFFFBB;
@@ -175,4 +195,8 @@ tr.selectedEntry td {
#uncheckAll-label {
width: 5px;
+}
+
+.noBold {
+ font-weight: normal;
} \ No newline at end of file
diff --git a/public/media/js/user.js b/public/media/js/user.js
index 01c4721..fdd942f 100644
--- a/public/media/js/user.js
+++ b/public/media/js/user.js
@@ -1,8 +1,8 @@
$(document).ready(function(){
if($('.listelement .element').find('.dispnone').length >= 1){
- $(this).find('.title').css('cursor','pointer');
- $(this).find('.title').prepend("<span class='toggler'><img src='/media/img/right.png'></span> ");
- $(this).find('.title').data('toggle','0');
+ $(this).find('.listelement .title').css('cursor','pointer');
+ $(this).find('.listelement .title').prepend("<span class='toggler'><img src='/media/img/right.png'></span> ");
+ $(this).find('.listelement .title').data('toggle','0');
$('.listelement .title').click(function(){
$(this).siblings('.dispnone').toggle();