Commit 76032e0e513b8a4005b34813d0beb2a910db5fa8
1 parent
ea4ce025
Exists in
master
and in
29 other branches
ActionItem676: removing extra borders on IE
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/branches/0.11.x@2506 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
15 additions
and
3 deletions
Show diff stats
public/designs/themes/ecosol/stylesheets/controller_profile_editor.css
... | ... | @@ -28,6 +28,12 @@ |
28 | 28 | background-color: #CFDFF7; |
29 | 29 | -moz-border-radius: 15px; |
30 | 30 | } |
31 | +.msie6 #profile-editor-index .file-manager a { | |
32 | + border: 2px solid #B8CFE7; | |
33 | +} | |
34 | +.msie6 #profile-editor-index .file-manager a:hover { | |
35 | + border: 2px solid #2A5896; | |
36 | +} | |
31 | 37 | |
32 | 38 | #profile-editor-index .control-panel { |
33 | 39 | } | ... | ... |
public/designs/themes/zen3/stylesheets/controller_profile_editor.css
... | ... | @@ -27,9 +27,15 @@ ul.categories li.cat_checked { |
27 | 27 | |
28 | 28 | .file-manager |
29 | 29 | .file-manager-button a:hover { |
30 | - background: #FCAF3E !important; | |
31 | - color: #000 !important; | |
32 | - border-color: #CE5C00; | |
30 | + background: #FCAF3E; | |
31 | + color: #000; | |
32 | + border: 2px solid #CE5C00; | |
33 | +} | |
34 | +.msie6 #profile-editor-index .file-manager a { | |
35 | + border: 2px solid #FFE890; | |
36 | +} | |
37 | +.msie6 #profile-editor-index .file-manager a:hover { | |
38 | + border: 2px solid #CE5C00; | |
33 | 39 | } |
34 | 40 | |
35 | 41 | #profile-editor-index .control-panel { | ... | ... |