Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/jappix/jappix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/stylesheets/search.css')
-rw-r--r--app/stylesheets/search.css59
1 files changed, 0 insertions, 59 deletions
diff --git a/app/stylesheets/search.css b/app/stylesheets/search.css
deleted file mode 100644
index 497f5222..00000000
--- a/app/stylesheets/search.css
+++ /dev/null
@@ -1,59 +0,0 @@
-/*
-
-Jappix - An open social platform
-This is the search tool CSS stylesheet for Jappix
-
--------------------------------------------------
-
-License: AGPL
-Author: Valérian Saliou
-
-*/
-
-.search {
- position: relative;
-}
-
-.search input.suggested {
- border-bottom: 1px solid white;
- -moz-border-radius-bottomright: 0;
- -moz-border-radius-bottomleft: 0;
- -webkit-border-bottom-right-radius: 0;
- -webkit-border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
-}
-
-.search ul {
- background-color: rgb(255,255,255);
- background-color: rgba(255,255,255,0.9);
- border-color: #e1a014;
- border-style: solid;
- border-width: 0 1px 1px 1px;
- position: absolute;
- z-index: 1;
- padding: 3px 0;
- list-style: none;
- overflow: auto;
- -moz-border-radius-bottomright: 3px;
- -moz-border-radius-bottomleft: 3px;
- -webkit-border-bottom-right-radius: 3px;
- -webkit-border-bottom-left-radius: 3px;
- border-bottom-right-radius: 3px;
- border-bottom-left-radius: 3px;
-}
-
-.search ul li {
- padding: 2px 6px;
- color: #3d3d3d;
- text-shadow: none;
-}
-
-.search ul li:hover {
- cursor: pointer;
-}
-
-.search ul li.hovered {
- background-color: rgb(225,160,20);
- background-color: rgba(225,160,20,0.3);
-}