diff options
author | Sem <sembrestels@riseup.net> | 2012-09-07 05:38:31 +0200 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-09-07 05:38:31 +0200 |
commit | 8874fc61471d4c518eec3b6a29955f4e8952c54e (patch) | |
tree | d145c8e7615ef793dfb25a160d2653cc90a2e94e | |
parent | 372d4557fb49fc902aa9dc359650bf125b7b71d8 (diff) | |
download | saravea_theme-8874fc61471d4c518eec3b6a29955f4e8952c54e.tar.gz saravea_theme-8874fc61471d4c518eec3b6a29955f4e8952c54e.tar.bz2 |
Fixed some CSS issues.
-rw-r--r-- | views/default/css/elements/components.php | 12 | ||||
-rw-r--r-- | views/default/css/elements/forms.php | 4 | ||||
-rw-r--r-- | views/default/n1_theme/css.php | 13 |
3 files changed, 23 insertions, 6 deletions
diff --git a/views/default/css/elements/components.php b/views/default/css/elements/components.php index 156fe45..570673e 100644 --- a/views/default/css/elements/components.php +++ b/views/default/css/elements/components.php @@ -195,7 +195,7 @@ float: right; font-size: 85%; padding: 1px 7px; - border-right: solid 1px #888; + border-right: solid 1px #BBB; -webkit-border-radius: 5px 5px 0 0; -moz-border-radius: 5px 5px 0 0; @@ -209,7 +209,13 @@ border-top: none; border-right: solid 1px #BBB; border-bottom: solid 1px #BBB; + + -webkit-border-radius: 3px; + -webkit-border-top-right-radius: 0; + -moz-border-radius: 3px; + -moz-border-radius-topright: 0; border-radius: 3px; + border-top-right-radius: 0; } .elgg-river-comments li:first-child { -webkit-border-radius: 5px 0 0; @@ -275,8 +281,8 @@ margin-bottom: 5px; } -.elgg-comments li { - padding: 10px 0px 10px 0px; +.elgg-comments li.elgg-item { + padding: 10px 0; } /* *************************************** diff --git a/views/default/css/elements/forms.php b/views/default/css/elements/forms.php index 9cc0b4f..c2cc433 100644 --- a/views/default/css/elements/forms.php +++ b/views/default/css/elements/forms.php @@ -312,6 +312,10 @@ input[type="radio"] { text-shadow: 0 0 6px white; } +.ui-combobox { + height: 23px !important; +} + /* *************************************** USER PICKER *************************************** */ diff --git a/views/default/n1_theme/css.php b/views/default/n1_theme/css.php index 69e7d8b..544e289 100644 --- a/views/default/n1_theme/css.php +++ b/views/default/n1_theme/css.php @@ -38,16 +38,23 @@ background-color: #444; } +.elgg-task-icon { + box-shadow: none; +} + +.treeview a.selected { + background-color: transparent !important; +} + .tidypics-heading { - color: #FF4C12; - + color: #FF4C12; } .tidypics-heading:hover { color: #333; } - .tidypics-gallery .elgg-head { +.tidypics-gallery .elgg-head { margin: 10px; } |