* Sticky note color selection is now feature complete,
[citadel.git] / webcit / static / webcit.css
index 537a2ce7ff99b6c04ea9706a1c2a6b76a9c78727..858d8a989ff5bb52cba87c7f2856eda587091ba1 100644 (file)
@@ -1,3 +1,4 @@
+@import url("datepicker.css");
 @media print {
        input#toggler, .toolbar { display: none }
 }
@@ -675,6 +676,9 @@ body, #global {
        vertical-align: middle;
        padding-left: 2px;
        padding-right: 5px;
+       width: 32px;
+       height: 32px;
+       border: none;
 }
 
 #button li a {
@@ -1322,20 +1326,70 @@ li.event_unread span, a.event_read_title {
        padding: 4px;
 }
 
+.roompic {
+      height: 48px;
+      width: 48px;
+      border: none;
+}
+#navbar ul li a img {
+      vertical-align: middle;
+      border: none;
+}
+.table-alt-row {
+      background-color: #DDDDDD;
+}
+
 .stickynote_outer {
-       position: relative;
+       position: absolute;
        width: 200px;
        height: 200px;
-       border: 1px solid black;
+       border: 1px solid #333;
        background-color: #ffff00;
        overflow: hidden;
+       z-index: 10;
 }
 
 .stickynote_titlebar {
        position: relative;
        width: 100%;
-       height: 15px;
+       height: 16px;
        top: 0px;
        left: 0px;
        background-color: #888800;
+        font-size: 6px;     
+}
+
+.stickynote_body {
+       position: relative;
+       width: 100%;
+       height: 100%;
+       top: 0px;
+       left: 0px;
+       font-family: "Comic Sans MS", "Verdana", "Bitstream Vera Sans", sans-serif;
+}
+
+.stickynote_resize {
+       position: absolute;
+       right: -1px;
+       bottom: -5px;
+}
+
+.stickynote_palette {
+       position: absolute;
+       width: 48px;
+       height: 48px;
+       background-color: #ffffff;
+       border: 1px solid #333;
+       z-index: 15;
+       display: none;
+}
+
+.stickynote_palette table {
+       margin: 0;
+       padding: 0;
+}
+
+.stickynote_palette td {
+       width: 16px;
+       height: 16px;
 }