Implemented customizable authentication timeout.
[fa-stable.git] / themes / cool / default.css
index 6ef7686a8c86e65989b7ca4ded04c2ee42ee698f..bf6e6eacc0f7895fa414997144914793f441d297 100644 (file)
@@ -46,6 +46,11 @@ select {
     max-width: 200px;
 }
 
+option.inactive {
+       text-decoration: line-through;
+       color: gray;
+}
+
 input.big {
        width: 100px;
 }
@@ -70,7 +75,7 @@ a:active {
        text-decoration: none;
 }
 
-a:hover {
+a:hover, a:focus {
        color: #2d8628;
        text-decoration: underline;
 }
@@ -228,6 +233,11 @@ div.tabs a:hover {
        border: 1px solid #cccccc;
 }
 
+#hotkeyshelp {
+       text-align: right;
+       font-weight: bolder;
+}
+
 #footer {
        position: relative;
        bottom: -3px;
@@ -346,6 +356,10 @@ div.tabs a:hover {
        background-color: pink;
 }
 
+.stockmankofg {
+       color: red;
+}
+
 .tablestyle {
        padding: 3px;
        border: 1px solid #cccccc;
@@ -510,10 +524,10 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
        text-align: center;
 }
 #CC .header {
-       background-color: #336;
+       background-color: #60687b;
 }
 #CC .weekday {
-       background-color: #DDD;
+       background-color: #eee;
        color: #000;
 }
 #CC .weekend {
@@ -521,12 +535,12 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
        color: #000;
 }
 #CC .weekno {
-       background-color: #c0daf8;
+       background-color: #e4ecec;
        color: #555;
 }
 #CC .current {
        border: 1px solid #339;
-       background-color: #336;
+       background-color: #60687b;
        color: #FFF;
 }
 #CC .weekday, #CC .weekend, #CC .current {
@@ -537,7 +551,7 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
 }
 #CC .weekday:hover, #CC .weekend:hover, #CC .current:hover {
        color: #FFF;
-       background-color: #336;
+       background-color: #60687b;
        border: 1px solid #999;
 }
 #CC .previous {
@@ -550,7 +564,7 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
        padding: 1px 3px 1px 3px;
        font-size: 1.4em;
 }
-#CC .previous a, CC .next a {
+#CC .previous a, #CC .next a {
        color: #FFF;
        text-decoration: none;
        font-weight: bold;
@@ -561,6 +575,38 @@ ul.ajaxtabs li input.current, ul.ajaxtabs li input.current:hover{
        color: #FFF;
 }
 #CC .empty {
-       background-color: #CCC;
+       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%;
+}