From d5581d97d8249aa95260729aaa63878761513401 Mon Sep 17 00:00:00 2001 From: moodler Date: Tue, 31 Jul 2007 08:09:20 +0000 Subject: [PATCH] New styles for tags --- theme/standard/styles_layout.css | 208 +++++++++++++++++++++++++++++++ 1 file changed, 208 insertions(+) diff --git a/theme/standard/styles_layout.css b/theme/standard/styles_layout.css index a9f91c851d..d80cd040ed 100644 --- a/theme/standard/styles_layout.css +++ b/theme/standard/styles_layout.css @@ -24,6 +24,7 @@ mymoodle question tabs + tags user various modules @@ -2745,6 +2746,213 @@ ul.tabrow1 li.here.selected a { color:#444; } +/*** + *** Tags + ***/ + +div#tag-description { + width:600px; + padding-top:0px; + margin-top:20px; + margin-left:auto; + margin-right:auto; +} + +div#tag-management-box { + text-align:center; + line-height:20px; + display:block; + font-size:12px; +} + +div#tag-user-table { + width:600px; + margin-left:auto; + margin-right:auto; + display:table; +} + +div.user-table-row { + width:100%; + min-height:150px; + margin-top:20px; + margin-bottom:20px; + margin-left:auto; + margin-right:auto; + text-align:center; + display:block; +} + +div.user-box { + width:150px; + text-align:center; + display:block; + float:left; +} + +img.user-image { + border:0px; + height:100px; + width:100px; +} + +div#small-tag-cloud-box { + width:300px; + margin-left:auto; + margin-right:auto; + margin-bottom:0px; + margin-top:0px; +} + +div#big-tag-cloud-box { + width:600px; + margin-left:auto; + margin-right:auto; + margin-bottom:0px; + margin-top:0px; + display:block; + float:none; +} + +ul#tag-cloud-list { + list-style:none; + padding:5px; + margin:0px; + list-style-type:none; +} +ul#tag-cloud-list li { + margin:0px; + display:inline; +} + +/* search start*/ + +div#tag-search-box { + text-align:center; + margin-left:auto; + margin-right:auto; + margin-top:10px; + margin-bottom:10px; +} + +div#tag-search-results-container { + padding:0px; + width:100%; +} + +ul#tag-search-results { + padding:0px; + margin-left:20%; + margin-right:20%; + margin-top:15px; + margin-bottom:0px; + float:left; + width:60%; + display:block; + list-style:none; +} + +ul#tag-search-results li{ + + width:30%; + float:left; + padding-left:1%; + text-align:left; + line-height:20px; + padding-right:1%; + +} + +div#tags-management-links { + text-align:right; + display:block; + font-size:12px; + +} +/* search end*/ + +/* tag management start*/ +span.flagged-tag { + color:#FF0000; +} +span.flagged-tag a{ + color:#FF0000; +} + +table#tag-management-list { + text-align:left; + margin-left:auto; + margin-right:auto; +} + +table#tag-management-list tr td{ + padding-left:4px; + padding-right :4px; +} + +form#tag-management-form { + text-align:center; +} +/* tag management end*/ + +/* autocomplete start*/ +#relatedtags-autocomplete-container +{ + margin-left::auto; + margin-right:auto; + min-height:4.6em; + width:100%; +} + +#relatedtags-autocomplete { + position:relative; + display:block; + width:60%; + margin-left::auto; + margin-right:auto; +} +#relatedtags-autocomplete .yui-ac-content +{ + position:absolute; + width:420px; + left:53%; + border:1px solid #404040; + background:#fff; + overflow:hidden; + z-index:9050; +} +#relatedtags-autocomplete .ysearchquery +{ + position:absolute; + right:10px; + color:#808080; + z-index:10; +} +#relatedtags-autocomplete .yui-ac-shadow { + position:absolute; + margin:.3em; + width:100%; + background:#a0a0a0; + z-index:9049; +} +#relatedtags-autocomplete ul { + padding:0;width:100%; + margin:0; + list-style-type:none; +} + +#relatedtags-autocomplete li { + padding:0 5px; + cursor:default; + white-space: + nowrap; +} +#relatedtags-autocomplete li.yui-ac-highlight +{ + background:#FFFFCC; +} +/* autocomplete end*/ + /*** *** User ***/ -- 2.39.5