diff options
author | Sem <sembrestels@riseup.net> | 2012-10-04 22:00:29 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-10-04 22:00:29 +0200 |
commit | c3d5dfec626d2bb48edfe8fae79ff78d2ec64b0e (patch) | |
tree | 0817a48a0e2813a70878e0a26402ac2ddabab564 /views/default/n1_theme/css.php | |
parent | 5bb2a96d001739fadf21fe9f6301f4aa833627ac (diff) | |
download | saravea_theme-c3d5dfec626d2bb48edfe8fae79ff78d2ec64b0e.tar.gz saravea_theme-c3d5dfec626d2bb48edfe8fae79ff78d2ec64b0e.tar.bz2 |
Added privacy icons.
Diffstat (limited to 'views/default/n1_theme/css.php')
-rw-r--r-- | views/default/n1_theme/css.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/views/default/n1_theme/css.php b/views/default/n1_theme/css.php index 32267cb..c6a94a8 100644 --- a/views/default/n1_theme/css.php +++ b/views/default/n1_theme/css.php @@ -26,6 +26,37 @@ font-weight: bold; } +.elgg-access, .elgg-input-access > option { + padding-left: 19px; + background-image: url('<?php echo elgg_get_site_url(); ?>mod/n1_theme/_graphics/privacy.png'); + background-repeat: no-repeat; +} + +.elgg-access { + padding-top: 1px; + padding-bottom: 1px; +} + +.elgg-access-private, .elgg-input-access > option[value="<?php echo ACCESS_PRIVATE; ?>"] { + background-position: 0 -65px; +} + +.elgg-access-friends, .elgg-input-access > option[value="<?php echo ACCESS_FRIENDS; ?>"] { + background-position: 0 -51px; +} + +.elgg-access-loggedin, .elgg-input-access > option[value="<?php echo ACCESS_LOGGED_IN; ?>"] { + background-position: 0 -34px; +} + +.elgg-access-public, .elgg-input-access > option[value="<?php echo ACCESS_PUBLIC; ?>"] { + background-position: 0 -16px; +} + +.elgg-access-group, .elgg-input-access > option { + background-position: 0 0; +} + .file-photo { margin-top: 15px; } |