From 71d864f28310d35b683e8f024c7dc5af586f486f Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 13 Nov 2013 10:44:21 +0100 Subject: more searchbar style work --- view/theme/redbasic/css/style.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ee3534a11..15044324d 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -57,7 +57,6 @@ input { padding: 3px; } - code { font-family: Courier, monospace; display: block; @@ -2864,8 +2863,8 @@ div.jGrowl div.info { } .autocomplete-w1 { - position:fixed; - top:24px; + position: fixed; + top: 24px; } .autocomplete { @@ -2877,18 +2876,19 @@ div.jGrowl div.info { text-align: left; max-height: 350px; overflow: auto; - border-bottom-left-radius:$radiuspx; - border-bottom-right-radius:$radiuspx; + border-bottom-left-radius: $radiuspx; + border-bottom-right-radius: $radiuspx; } .autocomplete .selected { - background:$bgcolour; + background: $search_background; } .autocomplete div { - padding:2px 5px; - white-space:nowrap; - overflow:hidden; + padding: 2px 5px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; } #datebrowse-sidebar select { -- cgit v1.2.3 From a10715e4db414c0c0a12f179bc4f4075aca2b86d Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 13 Nov 2013 17:09:42 +0100 Subject: search placeholder work --- view/theme/redbasic/css/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 15044324d..d2f586391 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -50,6 +50,11 @@ a:hover, .fakelink:hover { color: #44AAFF; text-decoration: underline; } cursor: pointer; } + +input[type=text] { + font-family: arial,freesans,sans-serif; +} + input { border: 1px solid #666666; -moz-border-radius: $radiuspx; @@ -1889,6 +1894,15 @@ a.mail-list-link { #side-follow-url, #side-peoplefind-url { margin-top: 5px; } + +#side-peoplefind-url::-webkit-input-placeholder { + font-family: FontAweSome; +} + +#side-peoplefind-url::-moz-placeholder { + font-family: FontAweSome; +} + #side-follow-submit, #side-peoplefind-submit { margin-top: 15px; } @@ -2035,6 +2049,22 @@ a.mail-list-link { transition: background-color 300ms ease 0s; } +#nav-search-text::-webkit-input-placeholder { + font-family: FontAweSome; +} + +#nav-search-text::-moz-placeholder { + font-family: FontAweSome; +} + +#search-text::-webkit-input-placeholder { + font-family: FontAweSome; +} + +#search-text::-moz-placeholder { + font-family: FontAweSome; +} + #nav-user-linkmenu img { border-radius: $radiuspx; margin-top: -4px; -- cgit v1.2.3 From 83837d89c7b32d9ee89475fe8f337e7eef9ac28a Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 13 Nov 2013 17:11:51 +0100 Subject: typo --- view/theme/redbasic/css/style.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d2f586391..c170ee8e2 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1896,11 +1896,11 @@ a.mail-list-link { } #side-peoplefind-url::-webkit-input-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #side-peoplefind-url::-moz-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #side-follow-submit, #side-peoplefind-submit { @@ -2050,19 +2050,19 @@ a.mail-list-link { } #nav-search-text::-webkit-input-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #nav-search-text::-moz-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #search-text::-webkit-input-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #search-text::-moz-placeholder { - font-family: FontAweSome; + font-family: FontAwesome; } #nav-user-linkmenu img { -- cgit v1.2.3 From 6a9e1f2542352d1b1b8273800ad22ce10068ad1b Mon Sep 17 00:00:00 2001 From: marijus Date: Wed, 13 Nov 2013 19:39:18 +0100 Subject: add font-size to searchbars --- view/theme/redbasic/css/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'view/theme') diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index c170ee8e2..3212d98a3 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1895,6 +1895,10 @@ a.mail-list-link { margin-top: 5px; } +#side-peoplefind-url { + font-size: 1em; +} + #side-peoplefind-url::-webkit-input-placeholder { font-family: FontAwesome; } @@ -2057,6 +2061,10 @@ a.mail-list-link { font-family: FontAwesome; } +#search-text { + font-size: 1em; +} + #search-text::-webkit-input-placeholder { font-family: FontAwesome; } -- cgit v1.2.3