diff --git a/admin-dev/themes/default/css/admin-theme.css b/admin-dev/themes/default/css/admin-theme.css index 03e9fb32b..b0f065438 100644 --- a/admin-dev/themes/default/css/admin-theme.css +++ b/admin-dev/themes/default/css/admin-theme.css @@ -5502,6 +5502,18 @@ hr { .table tbody > tr:hover > td { cursor: pointer; background-color: #c4e0ba; + -webkit-transition-property: background-color; + -moz-transition-property: background-color; + -o-transition-property: background-color; + transition-property: background-color; + -webkit-transition-duration: 0.4s; + -moz-transition-duration: 0.4s; + -o-transition-duration: 0.4s; + transition-duration: 0.4s; + -webkit-transition-timing-function: ease-out; + -moz-transition-timing-function: ease-out; + -o-transition-timing-function: ease-out; + transition-timing-function: ease-out; -webkit-box-shadow: rgba(151, 200, 133, 0.8) 0 2px 0; box-shadow: rgba(151, 200, 133, 0.8) 0 2px 0; } .table td.center, .table th.center { @@ -5516,6 +5528,10 @@ hr { border-bottom-right-radius: 3px; } .table .btn-group { float: right; } + .table .btn-group .btn, .table .btn-group .toolbar_btn { + float: left; } + .table .btn, .table .toolbar_btn { + float: right; } tr.filter { background-color: rgba(163, 159, 149, 0.5); } diff --git a/admin-dev/themes/default/css/admin-theme.sass b/admin-dev/themes/default/css/admin-theme.sass index 17c11583a..d40d24375 100755 --- a/admin-dev/themes/default/css/admin-theme.sass +++ b/admin-dev/themes/default/css/admin-theme.sass @@ -496,6 +496,9 @@ hr tbody > tr:hover > td cursor: pointer background-color: lighten($bg-head-color,15%) + @include transition-property(background-color) + @include transition-duration(0.4s) + @include transition-timing-function(ease-out) @include box-shadow(rgba($bg-head-color,0.80) 0 2px 0) td.center, th.center text-align: center @@ -509,6 +512,10 @@ hr border-bottom-right-radius: 3px .btn-group float: right + .btn + float: left + .btn + float: right //filter table tr.filter diff --git a/admin-dev/themes/default/template/controllers/products/attachments.tpl b/admin-dev/themes/default/template/controllers/products/attachments.tpl index d9d4a6b50..fac88a718 100644 --- a/admin-dev/themes/default/template/controllers/products/attachments.tpl +++ b/admin-dev/themes/default/template/controllers/products/attachments.tpl @@ -73,7 +73,7 @@ diff --git a/admin-dev/themes/default/template/controllers/products/images.tpl b/admin-dev/themes/default/template/controllers/products/images.tpl index 2bae901c3..8e04088d4 100644 --- a/admin-dev/themes/default/template/controllers/products/images.tpl +++ b/admin-dev/themes/default/template/controllers/products/images.tpl @@ -76,9 +76,9 @@