diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-18 09:28:48 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-10-18 09:28:48 -0700 |
| commit | 090c4d016baec6376d6d26c347c3e1ca11a929d5 (patch) | |
| tree | ddab7b8e10cf635b7f45c0c18bdf809c848334a3 /modules/tag/css | |
| parent | c9a030dd08711f89a985504ce26378a315d7ff1f (diff) | |
| parent | 4949a2ce0b5daca7afe86a261be447440fce7eff (diff) | |
Merge branch 'master' into talmdal_dev
Conflicts:
lib/gallery.common.css
themes/admin_wind/views/admin.html.php
themes/night_wind/views/sidebar.html.php
themes/wind/views/sidebar.html.php
Diffstat (limited to 'modules/tag/css')
| -rw-r--r-- | modules/tag/css/tag.css | 114 |
1 files changed, 114 insertions, 0 deletions
diff --git a/modules/tag/css/tag.css b/modules/tag/css/tag.css new file mode 100644 index 00000000..b718de05 --- /dev/null +++ b/modules/tag/css/tag.css @@ -0,0 +1,114 @@ +#g-tag-cloud ul { + font-size: 1.2em; + text-align: justify; +} + +#g-tag-cloud ul li { + display: inline; + line-height: 1.5em; + text-align: justify; +} + +#g-tag-cloud ul li a { + text-decoration: none; +} + +#g-tag-cloud ul li span { + display: none; +} + +#g-tag-cloud ul li.size1 a { + color: #9cf; + font-size: 80%; + font-weight: 100; +} + +#g-tag-cloud ul li.size2 a { + color: #69f; + font-size: 90%; + font-weight: 300; +} + +#g-tag-cloud ul li.size3 a { + color: #69c; + font-size: 100%; + font-weight: 500; +} + +#g-tag-cloud ul li.size4 a { + color: #369; + font-size: 110%; + font-weight: 700; +} + +#g-tag-cloud ul li.size5 a { + color: #0e2b52; + font-size: 120%; + font-weight: 900; +} + +#g-tag-cloud ul li.size6 a { + color: #0e2b52; + font-size: 130%; + font-weight: 900; +} + +#g-tag-cloud ul li.size7 a { + color: #0e2b52; + font-size: 140%; + font-weight: 900; +} + +#g-tag-cloud ul li a:hover { + color: #f30; + text-decoration: underline; +} + +/* Tag admin ~~~~~~~~~~~~~~ */ + +#g-tag-admin { + table-layout: fixed; +} + +#g-tag-admin td { + border: 0; +} + +#g-tag-admin ul { + padding-bottom: .3em; +} + +#g-tag-admin li { + padding: .1em 0 .2em .3em; +} + +#g-tag-admin .g-column { + float: left; + width: 200px; +} + +#g-edit-tag-form input { + padding: 0 .2em 0 .2em; + clear: none; + float: left; + margin: 0 .2em 0 0; +} + +#g-edit-tag-form input[type="text"].g-error { + border: 2px solid red; + background: none; +} + +#g-edit-tag-form input[type="submit"] { + height: 25px; +} + +#g-edit-tag-form a, #g-edit-tag-form span { + display: block; + float: left; + padding: .2em .2em 0 .1em; +} + +#g-edit-tag-form span { + float: right; +} |
