Added CSS only tool tip to key map
[scpubgit/stemmaweb.git] / root / css / style.css
index 15b3ffb..2fd019f 100644 (file)
@@ -60,17 +60,28 @@ div.pager_left_button {
   width: 28px;
   height: 28px;
   float: left;
-  background: transparent url('../images/button_left_28.png') no-repeat;    
+  background: transparent url('../images/button_left_28.png') no-repeat left bottom;    
 }
-div.pager_left_button:hover, div.pager_right_button:hover {
-  opacity: 0.8;
+div.pager_left_button:hover {
+    background: transparent url('../images/button_left_28.png') no-repeat center bottom;    
+}
+div.pager_right_button:hover {
+    background: transparent url('../images/button_right_28.png') no-repeat center bottom;    
 }
 div.pager_right_button {
   width: 28px;
   height: 28px;
   float: left;
   margin-left: 10px;
-  background: transparent url('../images/button_right_28.png') no-repeat;
+  background: transparent url('../images/button_right_28.png') no-repeat left bottom;
+}
+div.pager_right_button.greyed_out, div.pager_right_button.greyed_out:hover {
+    opacity: 0.5;
+    background: url("../images/button_right_28.png") no-repeat scroll right bottom transparent;
+}
+div.pager_left_button.greyed_out, div.pager_left_button.greyed_out:hover {
+    opacity: 0.5;
+    background: url("../images/button_left_28.png") no-repeat scroll right bottom transparent;
 }
 #topbanner {
        width: 100%;
@@ -134,7 +145,7 @@ div.pager_right_button {
 #textinfo_container {
     border: 1px solid #C6DCF1;
        float: left;
-       height: 500px;
+       height: 510px;
        width: 710px;
        margin-left: 10px;
        padding-left: 10px;
@@ -155,14 +166,18 @@ div.pager_right_button {
 #stemma_graph img {
        margin-top: expression(( 450 - this.height ) / 2);
 }
+#stemma_graph svg {
+       z-index: -100;
+}
 #textinfo_container_buttons {
+    width: 224px;
     float: right;
     left: -18px;
     position: relative;
     top: 15px;
 }
 #run_stexaminer, #run_relater, #open_stemma_add, #open_stemma_edit {
-    height: 18px;
+    height: 32px;
 }
 #stemma_pager {
     height: 38px;
@@ -192,3 +207,18 @@ div.pager_right_button {
     font-weight: bold;
     color: #ff3333;
 }
+#new_file {
+    position: absolute;
+    top: -50px;
+    opacity: 0.0;
+}
+#new_file_name {
+    font-weight: bold;
+}
+#new_name, #new_lang, #new_public, #new_file_name_container {
+    margin-bottom: 6px;
+}
+#new_file_label {
+    float: left;
+    padding-right: 8px;
+}
\ No newline at end of file