aboutsummaryrefslogtreecommitdiffstats
path: root/view/css
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-09-19 02:22:24 -0700
committerfriendica <info@friendica.com>2014-09-19 02:22:24 -0700
commit87a6f257691e68ebf0364476493ff19c9f220297 (patch)
tree5d51410122cb37bf5e9b23012d0dcce6ef5b7e08 /view/css
parent083b5da967d52780d0ff2f9e3a01484c45eed38d (diff)
downloadvolse-hubzilla-87a6f257691e68ebf0364476493ff19c9f220297.tar.gz
volse-hubzilla-87a6f257691e68ebf0364476493ff19c9f220297.tar.bz2
volse-hubzilla-87a6f257691e68ebf0364476493ff19c9f220297.zip
try to sort out walltowall translation for diaspora recipients
Diffstat (limited to 'view/css')
-rw-r--r--view/css/mod_new_channel.css121
1 files changed, 121 insertions, 0 deletions
diff --git a/view/css/mod_new_channel.css b/view/css/mod_new_channel.css
index 2af0fbb2d..fcef128e3 100644
--- a/view/css/mod_new_channel.css
+++ b/view/css/mod_new_channel.css
@@ -38,3 +38,124 @@ h2 {
margin-bottom: 20px;
}
+/**
+* Stylish Select 0.4.9 - $ plugin to replace a select drop down box with a stylable unordered list
+* http://github.com/scottdarby/Stylish-Select/
+*
+* Copyright (c) 2009 Scott Darby
+*
+* Requires: jQuery 1.3 or newer
+*
+* Dual licensed under the MIT and GPL licenses.
+*/
+
+/**
+* Hide lists on page load
+---------------------------------------------------------*/
+
+#privacy-role-select .SSContainerDivWrapper {
+ left:-9999px;
+}
+
+/*
+* Red example
+---------------------------------------------------------*/
+#privacy-role-select .SSContainerDivWrapper {
+ margin:0;
+ padding:0;
+ width:290px;
+ position:absolute;
+ top:22px;
+ left:0;
+ z-index:2;
+}
+
+#privacy-role-select ul.newList {
+ margin:0;
+ padding:0;
+ list-style:none;
+ color:#000;
+ background:#fff;
+ border:1px solid #ccc;
+ overflow:auto;
+}
+
+#privacy-role-select ul.newList * {
+ margin:0;
+ padding:0;
+}
+
+
+#privacy-role-select ul.newList a {
+ color: #000;
+ text-decoration:none;
+ display:block;
+ padding:3px 8px;
+}
+
+#privacy-role-select .newListSelected {
+ width:285px;
+ color:#000;
+ height:19px;
+ padding:3px 0 0 6px;
+ float:left;
+ background:url(select-bg.png) no-repeat;
+}
+
+#privacy-role-select ul.newList li a:focus {
+ -moz-outline-style: none;
+}
+
+#privacy-role-select .selectedTxt {
+ width:258px;
+ overflow:hidden;
+ height:16px;
+ padding:0 23px 0 0;
+}
+
+#privacy-role-select .hiLite {
+ background:#650101!important;
+ color:#fff!important;
+}
+
+#privacy-role-select .newListHover {
+ background:#ccc!important;
+ color:#000!important;
+ cursor:default;
+}
+
+#privacy-role-select .newListDisabled {
+ opacity: 0.6;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
+ filter: alpha(opacity=60);
+}
+
+#privacy-role-select .newListItemDisabled {
+ opacity: 0.6;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
+ filter: alpha(opacity=60);
+}
+
+#privacy-role-select .newListOptionDisabled {
+ opacity: 0.6;
+ -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
+ filter: alpha(opacity=60);
+}
+
+#privacy-role-select .newListSelHover,
+#privacy-role-select .newListSelFocus {
+ background-position:0 -22px;
+ cursor:default;
+}
+
+#privacy-role-select .newListOptionTitle {
+ font-weight:bold;
+}
+
+#privacy-role-select .newListOptionTitle ul {
+ margin:3px 0 0;
+}
+
+#privacy-role-select .newListOptionTitle li {
+ font-weight:normal;
+} \ No newline at end of file