diff options
Diffstat (limited to 'view/css')
-rw-r--r-- | view/css/conversation.css | 6 | ||||
-rw-r--r-- | view/css/mod_new_channel.css | 132 | ||||
-rw-r--r-- | view/css/mod_photos.css | 49 |
3 files changed, 137 insertions, 50 deletions
diff --git a/view/css/conversation.css b/view/css/conversation.css index a6540ffba..c7b381928 100644 --- a/view/css/conversation.css +++ b/view/css/conversation.css @@ -232,3 +232,9 @@ display: none; margin-top: 7px; } + +/* disable link handling for unknown entries */ +.dropdown-menu > li > a.disabled { + pointer-events: none; + cursor: default; +} diff --git a/view/css/mod_new_channel.css b/view/css/mod_new_channel.css index 3b9c80953..068f4f3a5 100644 --- a/view/css/mod_new_channel.css +++ b/view/css/mod_new_channel.css @@ -1,13 +1,13 @@ h2 { margin-left: 15%; - margin-top: 15%; + margin-top: 5%; } #newchannel-form { font-size: 1.4em; margin-left: 15%; - margin-top: 5%; + margin-top: 20px; width: 50%; } @@ -38,3 +38,131 @@ 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 +---------------------------------------------------------*/ + +.stylish-select .SSContainerDivWrapper { + left:-9999px; +} + +/* +* Red example +---------------------------------------------------------*/ +.stylish-select .SSContainerDivWrapper { + margin:0; + padding:0; + width:290px; + position:absolute; + top:22px; + left:0; + z-index:9999; + font-size: 60%; + line-height: 1.1; +} + +.stylish-select a { + font-weight: normal !important; +} + +.stylish-select ul.newList { + margin:0; + padding:0; + list-style:none; + color:#000; + background:#fff; + border:1px solid #ccc; + overflow:auto; +} + +.stylish-select ul.newList * { + margin:0; + padding:0; +} + + +.stylish-select ul.newList a { + color: #000; + text-decoration:none; + display:block; + padding:3px 8px; +} + +.stylish-select .newListSelected { + width:285px; + color:#000; + height:19px; + padding:3px 0 0 6px; + float:left; + background:url(select-bg.png) no-repeat; +} + +.stylish-select ul.newList li a:focus { + -moz-outline-style: none; +} + +.stylish-select .selectedTxt { + width:258px; + overflow:hidden; + height:18px; + font-size: 90%; + padding:0 23px 0 0; +} + +.stylish-select .hiLite { + background:#650101!important; + color:#fff!important; +} + +.stylish-select .newListHover { + background:#ccc!important; + color:#000!important; + cursor:default; +} + +.stylish-select .newListDisabled { + opacity: 0.6; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; + filter: alpha(opacity=60); +} + +.stylish-select .newListItemDisabled { + opacity: 0.6; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; + filter: alpha(opacity=60); +} + +.stylish-select .newListOptionDisabled { + opacity: 0.6; + -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)"; + filter: alpha(opacity=60); +} + +.stylish-select .newListSelHover, +.stylish-select .newListSelFocus { + background-position:0 -22px; + cursor:default; +} + +.stylish-select .newListOptionTitle { + font-weight:bold; +} + +.stylish-select .newListOptionTitle ul { + margin:3px 0 0; +} + +.stylish-select .newListOptionTitle li { + font-weight:normal; +}
\ No newline at end of file diff --git a/view/css/mod_photos.css b/view/css/mod_photos.css index b81145cd5..0c4c25bae 100644 --- a/view/css/mod_photos.css +++ b/view/css/mod_photos.css @@ -1,11 +1,3 @@ - - -.photo-top-photo, .photo-album-photo { - padding: 10px; - max-width: 300px; -} - - .photos-end { clear: both; margin-bottom: 25px; @@ -30,51 +22,11 @@ clear: both; } -.photo-album-image-wrapper { - float: left; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; -} -.photo-album-image-wrapper .caption { - display: none; - width: 100%; - bottom: 0px; - padding: 0.5em 0.5em 0px 0.5em; - margin: 0px; -} -.photo-album-image-wrapper a:hover .caption { - display:block; -} - #photo-album-end { clear: both; margin-bottom: 25px; } -.photo-top-image-wrapper { - float: left; - margin-top: 15px; - margin-right: 15px; - margin-left: 15px; - margin-bottom: 15px; -} -.photo-top-album-name { - width: 100%; - min-height: 2em; - bottom: 0px; - padding: 0px 3px; - padding-top: 0.5em; -} -#photo-top-end { - clear: both; -} - -#photo-top-links { - margin-bottom: 30px; - margin-left: 30px; -} - #photos-upload-newalbum-div { float: left; width: 175px; @@ -83,6 +35,7 @@ #photos-upload-noshare { margin-bottom: 10px; } + #photos-upload-existing-album-text { float: left; width: 175px; |