Setting tag plewww-5.2-2
[plewww.git] / planetlab / css / plc_style.css
index 4715bea..60a5485 100644 (file)
@@ -1,7 +1,4 @@
-/* $Id$ */
-
 /* expanding links */
-
 .example {
     padding:10px; 
     color:#000; 
@@ -25,6 +22,51 @@ body {
     position: relative;
 }
 
+.bold {
+    font-weight: bold;
+}
+
+/* this class is used to store data that needs to get passed to javascript code */
+/* these elements are not meant to be rendered */
+.hidden {
+    display: none;
+}
+.center {
+    text-align: center;
+}
+
+/* -------------------- inputs in forms */
+/* note: this is used by the register wizard as well
+   in case where importing all this file this would some day conflict
+   it might make sense to split this file into plc_style (general) and plc_views (specifics) */
+/* don't mess with other types of input, e.g. buttons might get affected */
+input[type="text"], textarea {
+    border: solid 1px #444;
+    background-image: url( '/planetlab/icons/form_input_bg.png' );
+    background-repeat: repeat-x;
+    background-position: top;
+}
+
+textarea {
+    font-family: courier, monospace;
+}
+input[type="password"] {
+    border: solid 1px #444;
+    background-image: url( '/planetlab/icons/form_input_password.png' );
+    background-repeat: repeat-x;
+    background-position: top;
+}
+
+/* make disabled fields more obvious */
+input[type="text"][disabled], textarea[disabled] {
+    border: solid 1px #f8f8f8;
+    background-image: url( '/planetlab/icons/form_input_disabled.png' );
+    background-repeat: repeat-x;
+    background-position: top;
+}
+
+/* -------------------- errors & warnings */
 .plc-warning {
     padding:    4px;
     background:  #ffa223; 
@@ -70,18 +112,14 @@ p.node_add {
     font-style: italic;
     padding: 20px 40px;
     text-align: center;
-    font-size: larger;
+/*    font-size: smaller; */
 }
-
 p.node_download {
     font-style: italic;
     padding: 20px 40px;
     font-size: larger;
 }
 
-.bold {
-    font-weight: bold;
-}
 #download_button, #slice_add_button {
     text-align:center;
 }
@@ -149,3 +187,17 @@ div#toggle-area-create-slice-persons {
 div#toggle-area-create-slice-details>table.plc_details {
     margin:0 ;
 }
+div#toggle-container-add-node,
+div#toggle-container-add-interface {
+    background-color: #e0d0ff;
+}
+p.note_reservable {
+    font-style: italic;
+    padding: 20px 40px;
+    text-align: center;
+    font-size: larger; 
+}
+span.note_roles {
+    font-style:italic;
+    font-size: smaller;
+}