Unaccesable menu options are now displayed in grey.
[fa-stable.git] / themes / cool / default.css
index a3ecccd876c8d87718d42b3a78c556611f059011..4917647e72fcd11b3e0044d4aeae96fd2f5f87a1 100644 (file)
@@ -46,6 +46,11 @@ select {
     max-width: 200px;
 }
 
+option.inactive {
+       text-decoration: line-through;
+       color: gray;
+}
+
 input.big {
        width: 100px;
 }
@@ -75,6 +80,10 @@ a:hover, a:focus {
        text-decoration: underline;
 }
 
+.inactive {
+       color: gray;
+}
+
 button {
        font-size: 11px;
        border: 1px #0066cc solid;
@@ -228,6 +237,11 @@ div.tabs a:hover {
        border: 1px solid #cccccc;
 }
 
+#hotkeyshelp {
+       text-align: right;
+       font-weight: bolder;
+}
+
 #footer {
        position: relative;
        bottom: -3px;
@@ -351,14 +365,10 @@ div.tabs a:hover {
 }
 
 .tablestyle {
-       padding: 3px;
-       border: 1px solid #cccccc;
        border-collapse: collapse;
 }
 
 .tablestyle2 {
-       padding: 0 3px;
-       border: 1px solid #ccc;
        border-collapse: collapse;
 }
 .tablestyle_noborder {
@@ -568,3 +578,35 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
        background-color: #ddd;
        border: 1px solid #FFF;
 }
+
+div.err_msg {
+       margin: 10px;
+       padding: 3px;
+       border: 1px solid #cc3300;
+       background-color: #ffcccc;
+       color: #dd2200;
+       text-align: center;
+}
+
+div.warn_msg {
+       margin: 10px;
+       padding: 3px;
+       border: 1px solid #ff9900;
+       background-color: #ffff00;
+       color: #ff5500;
+       text-align: center;
+}
+
+div.note_msg {
+       margin: 10px;
+       padding: 3px;
+       border: 1px solid #33cc00;
+       background-color: #ccffcc;
+       color: #007700;
+       text-align: center;
+}
+
+#title {
+       margin-bottom: 10px;
+       width: 100%;
+}