diff options
author | friendica <info@friendica.com> | 2013-11-13 14:27:47 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-11-13 14:27:47 -0800 |
commit | 44e21c1ef14d302696769c12ceb4e838034f2e59 (patch) | |
tree | c94beb7f6ffa45d73ff7212063fefd48aa52179d | |
parent | 4e9103830c397fd1af51de9040bd2a047ea8009e (diff) | |
parent | 91f04e69c786ccb9f7b3216bd38ed0c10580a9d7 (diff) | |
download | volse-hubzilla-44e21c1ef14d302696769c12ceb4e838034f2e59.tar.gz volse-hubzilla-44e21c1ef14d302696769c12ceb4e838034f2e59.tar.bz2 volse-hubzilla-44e21c1ef14d302696769c12ceb4e838034f2e59.zip |
Merge https://github.com/friendica/red into zpull
-rw-r--r-- | view/theme/redbasic/css/style.css | 56 |
1 files changed, 47 insertions, 9 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index ee3534a11..3212d98a3 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; @@ -57,7 +62,6 @@ input { padding: 3px; } - code { font-family: Courier, monospace; display: block; @@ -1890,6 +1894,19 @@ a.mail-list-link { #side-follow-url, #side-peoplefind-url { margin-top: 5px; } + +#side-peoplefind-url { + font-size: 1em; +} + +#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; } @@ -2036,6 +2053,26 @@ 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 { + font-size: 1em; +} + +#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; @@ -2864,8 +2901,8 @@ div.jGrowl div.info { } .autocomplete-w1 { - position:fixed; - top:24px; + position: fixed; + top: 24px; } .autocomplete { @@ -2877,18 +2914,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 { |