fixed avatar hover and shadow in kanban view

bzr revid: mit@openerp.com-20120831132304-qzmuvltopy1mdiwa
This commit is contained in:
Minh Tran 2012-08-31 15:23:04 +02:00
parent 16773839a4
commit 6bc116cf6d
2 changed files with 9 additions and 4 deletions

View File

@ -170,9 +170,9 @@
-moz-border-radius: 3px; -moz-border-radius: 3px;
-webkit-border-radius: 3px; -webkit-border-radius: 3px;
border-radius: 3px; border-radius: 3px;
-moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
-webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4); -box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
} }
.openerp .oe_kanban_view .oe_kanban_details { .openerp .oe_kanban_view .oe_kanban_details {
display: inline-block; display: inline-block;
@ -265,6 +265,9 @@
.openerp .oe_kanban_view .oe_kanban_action_a { .openerp .oe_kanban_view .oe_kanban_action_a {
text-decoration: none; text-decoration: none;
} }
.openerp .oe_kanban_view .oe_kanban_action_a:hover {
text-decoration: none;
}
.openerp .oe_kanban_view .oe_kanban_table { .openerp .oe_kanban_view .oe_kanban_table {
width: 100%; width: 100%;
border: none; border: none;

View File

@ -178,7 +178,7 @@
text-align: center text-align: center
overflow: hidden overflow: hidden
@include radius(3px) @include radius(3px)
@include box-shadow(0 1px 4px rgba(0, 0, 0, 0.4)) @include box-shadow(0 1px 3px rgba(0, 0, 0, 0.3))
.oe_kanban_details .oe_kanban_details
display: inline-block display: inline-block
vertical-align: top vertical-align: top
@ -246,6 +246,8 @@
margin: 0 margin: 0
.oe_kanban_action_a .oe_kanban_action_a
text-decoration: none text-decoration: none
&:hover
text-decoration: none
.oe_kanban_table .oe_kanban_table
width: 100% width: 100%
border: none border: none