]> git.wh0rd.org - tt-rss.git/blobdiff - utility.css
sharepopup: implement assigning labels while sharing
[tt-rss.git] / utility.css
index c4fd63fca4df528d144ae724234edb82b5bf05f6..de0042a774c354c4a7759849f9ff00c7439c91cf 100644 (file)
@@ -17,6 +17,11 @@ p.insensitive {
        color : gray;
 }
 
+div.insensitive-small {
+       color : gray;
+       font-size : 10px;
+}
+
 .floatingLogo {
        float : right;
 }
@@ -119,7 +124,10 @@ div.rss hr {
 }
 
 body#sharepopup {
-       background : #88b0f0;
+       background-color : white;
+       background-image : url("images/toolbar.png");
+       background-repeat : repeat-x;
+       background-position : bottom;
        margin : 10px;
        padding : 0px;
 }
@@ -132,7 +140,7 @@ body#sharepopup h1 {
 
 body#sharepopup table {
        background : white;
-       border : 1px solid black;
+       border : 1px solid #88b0f0;
        padding : 5px;
 }
 
@@ -143,3 +151,34 @@ body#sharepopup form {
 body#sharepopup input { 
        width : 100%;
 }
+
+div.autocomplete {
+       position : absolute;
+       width : 250px;
+       background-color : white;
+       border :1px solid #778899;
+       margin : 0px;
+       padding : 0px;
+       z-index : 4;
+}
+
+div.autocomplete ul {
+       list-style-type : none;
+       margin : 0px;
+       padding : 0px;
+       font-size : 10px;
+}
+
+div.autocomplete ul li.selected { 
+       background-color : #fff7d5;
+}
+
+div.autocomplete ul li {
+       list-style-type : none;
+       display : block;
+       margin : 0;
+       padding : 2px;
+       height : 32px;
+       cursor : pointer;
+}
+