]> git.wh0rd.org - tt-rss.git/blobdiff - css/utility.less
support disabling of e-mail digests entirely
[tt-rss.git] / css / utility.less
index fd6d4fbc1f9d4e684c233d24e407089a28874616..c74c1be9eab41eae86322840bae6fb650808addb 100644 (file)
@@ -1,4 +1,4 @@
-body.sanity_failed {
+body.ttrss_utility.sanity_failed {
        background : #900;
 }
 
@@ -48,12 +48,14 @@ body.ttrss_utility {
        }
 
        a {
-               color : rgb(82, 168, 236);
+               color : @color-link;
                text-decoration : none;
        }
 
-       a:hover {
-               color : black;
+       a:hover,
+       a:focus {
+               color: darken(@color-link, 20%);
+               text-decoration: underline;
        }
 
        .alert {
@@ -117,14 +119,14 @@ body.ttrss_utility {
        }
 
        h1 {
-               color : rgb(82, 168, 236);
+               color : @color-accent;
                font-size : 32px;
                margin : 20px 0px 5px 0px;
                text-shadow : 0 0 6px #fff;
        }
 
        h2 {
-               color : rgb(82, 168, 236);
+               color : @color-accent;
                font-size : 14pt;
                border-width : 0px 0px 1px 0px;
                border-color : #f0f0f0;
@@ -177,35 +179,6 @@ body.ttrss_utility {
                border-color : #e0e0e0;
        }
 
-       body#sharepopup {
-               background-color : white;
-               background-image : url("../images/toolbar.png");
-               background-repeat : repeat-x;
-               background-position : bottom;
-               margin : 10px;
-               padding : 0px;
-       }
-
-       body#sharepopup h1 {
-               font-size : 14px;
-               margin : 0px;
-               color : rgb(82, 168, 236);
-       }
-
-       body#sharepopup table {
-               background : white;
-               border : 1px solid rgb(82, 168, 236);
-               padding : 5px;
-       }
-
-       body#sharepopup form {
-               height : 100%;
-       }
-
-       body#sharepopup input {
-               width : 100%;
-       }
-
        div.autocomplete {
                position : absolute;
                width : 250px;
@@ -288,3 +261,30 @@ body.small_margins {
        margin : 1em;
        max-width : none;
 }
+
+body#sharepopup {
+       background: white url("../images/toolbar.png") repeat-x bottom;
+       margin : 10px;
+       padding : 0px;
+
+       h1 {
+               font-size : 14px;
+               margin : 0px;
+               color : @color-accent;
+       }
+
+       table {
+               background : white;
+               border : 1px solid @color-accent;
+               padding : 5px;
+       }
+
+       form {
+               height : 100%;
+       }
+
+       input {
+               width : 100%;
+       }
+
+}