diff --git a/app/admin/view/default/public/module/detail.html b/app/admin/view/default/public/module/detail.html index 59f549eab..dc2611a63 100644 --- a/app/admin/view/default/public/module/detail.html +++ b/app/admin/view/default/public/module/detail.html @@ -54,54 +54,77 @@ {{/if}}
{{foreach $form_table.form as $t}} - {{if isset($t['label']) and isset($t['view_type']) and in_array($t['view_type'], ['field', 'module', 'status']) and (!isset($t['is_detail']) or $t['is_detail'] eq 1)}} + {{if isset($t['label']) and isset($t['view_type']) and in_array($t['view_type'], ['images', 'field', 'module', 'status']) and (!isset($t['is_detail']) or $t['is_detail'] eq 1)}}
{{$t.label}}
{{switch $t.view_type}} - {{case field}} - - {{if isset($t['view_join_first'])}} - {{$t.view_join_first}} + {{case images}} + {{if !empty($form_table_data_detail[$t['view_key']])}} + {{/if}} + {{/case}} + {{case field}} +

+ {{if isset($t['is_round_point']) and $t['is_round_point'] eq 1}} + + {{/if}} - - {{if is_array($t['view_key'])}} - {{foreach $t['view_key'] as $fk=>$fv}} - {{if isset($form_table_data_detail[$fv])}} - {{$form_table_data_detail[$fv]}} - - {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} - {{$t.view_key_join|raw}} - {{/if}} - {{/if}} - {{/foreach}} - {{else /}} - - {{if isset($form_table_data_detail[$t['view_key']])}} - - {{if !empty($t['view_data']) and is_array($t['view_data'])}} - - {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]])}} - - {{if !empty($t['view_data_key'])}} - {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']])}} - {{$t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']]}} - {{/if}} - {{else /}} - {{$t['view_data'][$form_table_data_detail[$t['view_key']]]}} + + {{if isset($t['view_join_first'])}} + {{$t.view_join_first}} + {{/if}} + + + {{if is_array($t['view_key'])}} + {{foreach $t['view_key'] as $fk=>$fv}} + {{if isset($form_table_data_detail[$fv])}} + {{$form_table_data_detail[$fv]}} + + {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} + {{$t.view_key_join|raw}} {{/if}} {{/if}} + {{/foreach}} + {{else /}} + + {{if isset($form_table_data_detail[$t['view_key']])}} + + {{if !empty($t['view_data']) and is_array($t['view_data'])}} + + {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]])}} + + {{if !empty($t['view_data_key'])}} + {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']])}} + {{$t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']]}} + {{/if}} + {{else /}} + {{$t['view_data'][$form_table_data_detail[$t['view_key']]]}} + {{/if}} + {{/if}} - - {{else /}} - {{$form_table_data_detail[$t['view_key']]|raw}} + + {{else /}} + {{$form_table_data_detail[$t['view_key']]|raw}} + {{/if}} {{/if}} {{/if}} - {{/if}} - - {{if isset($t['view_join_last'])}} - {{$t.view_join_last}} - {{/if}} + + {{if isset($t['view_join_last'])}} + {{$t.view_join_last}} + {{/if}} +

{{/case}} {{case module}} diff --git a/app/admin/view/default/public/module/form_table.html b/app/admin/view/default/public/module/form_table.html index 947800d25..80503845c 100644 --- a/app/admin/view/default/public/module/form_table.html +++ b/app/admin/view/default/public/module/form_table.html @@ -1,4 +1,5 @@ -
+
+ {{php}}$form_table_data_list = empty($form_table_data_list) ? (empty($data_list) ? [] : $data_list) : $form_table_data_list;{{/php}} @@ -150,7 +151,6 @@ {{/if}} - {{php}}$form_table_data_list = empty($form_table_data_list) ? (empty($data_list) ? [] : $data_list) : $form_table_data_list;{{/php}} {{if !empty($form_table_data_list) and !empty($form_table['base']['key_field'])}} {{for start="0" end="count($form_table_data_list)"}} @@ -187,50 +187,73 @@ {{if isset($form_table_data_list[$i]) and !empty($t['view_type']) and !empty($t['view_key'])}} {{switch $t.view_type}} - {{case field}} - - {{if isset($t['view_join_first'])}} - {{$t.view_join_first}} + {{case images}} + {{if !empty($form_table_data_list[$i][$t['view_key']])}} + {{/if}} + {{/case}} + {{case field}} +

+ {{if isset($t['is_round_point']) and $t['is_round_point'] eq 1}} + + {{/if}} - - {{if is_array($t['view_key'])}} - {{foreach $t['view_key'] as $fk=>$fv}} - {{if isset($form_table_data_list[$i][$fv])}} - {{$form_table_data_list[$i][$fv]}} - - {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} - {{$t.view_key_join|raw}} - {{/if}} - {{/if}} - {{/foreach}} - {{else /}} - - {{if isset($form_table_data_list[$i][$t['view_key']])}} - - {{if !empty($t['view_data']) and is_array($t['view_data'])}} - - {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]])}} - - {{if !empty($t['view_data_key'])}} - {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']])}} - {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']]}} - {{/if}} - {{else /}} - {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]]}} + + {{if isset($t['view_join_first'])}} + {{$t.view_join_first}} + {{/if}} + + + {{if is_array($t['view_key'])}} + {{foreach $t['view_key'] as $fk=>$fv}} + {{if isset($form_table_data_list[$i][$fv])}} + {{$form_table_data_list[$i][$fv]}} + + {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} + {{$t.view_key_join|raw}} {{/if}} {{/if}} + {{/foreach}} + {{else /}} + + {{if isset($form_table_data_list[$i][$t['view_key']])}} + + {{if !empty($t['view_data']) and is_array($t['view_data'])}} + + {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]])}} + + {{if !empty($t['view_data_key'])}} + {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']])}} + {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']]}} + {{/if}} + {{else /}} + {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]]}} + {{/if}} + {{/if}} - - {{else /}} - {{$form_table_data_list[$i][$t['view_key']]|raw}} + + {{else /}} + {{$form_table_data_list[$i][$t['view_key']]|raw}} + {{/if}} {{/if}} {{/if}} - {{/if}} - - {{if isset($t['view_join_last'])}} - {{$t.view_join_last}} - {{/if}} + + {{if isset($t['view_join_last'])}} + {{$t.view_join_last}} + {{/if}} +

{{/case}} {{case module}} diff --git a/app/api/controller/Order.php b/app/api/controller/Order.php index 9eaf31ac4..54d4e6ba5 100755 --- a/app/api/controller/Order.php +++ b/app/api/controller/Order.php @@ -223,7 +223,7 @@ class Order extends Common /** - * [Cancel 订单取消] + * 订单取消 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 @@ -239,7 +239,7 @@ class Order extends Common } /** - * [Collect 订单收货] + * 订单收货 * @author Devil * @blog http://gong.gg/ * @version 1.0.0 diff --git a/app/index/view/default/public/module/detail.html b/app/index/view/default/public/module/detail.html index 59f549eab..dc2611a63 100644 --- a/app/index/view/default/public/module/detail.html +++ b/app/index/view/default/public/module/detail.html @@ -54,54 +54,77 @@ {{/if}}
{{foreach $form_table.form as $t}} - {{if isset($t['label']) and isset($t['view_type']) and in_array($t['view_type'], ['field', 'module', 'status']) and (!isset($t['is_detail']) or $t['is_detail'] eq 1)}} + {{if isset($t['label']) and isset($t['view_type']) and in_array($t['view_type'], ['images', 'field', 'module', 'status']) and (!isset($t['is_detail']) or $t['is_detail'] eq 1)}}
{{$t.label}}
{{switch $t.view_type}} - {{case field}} - - {{if isset($t['view_join_first'])}} - {{$t.view_join_first}} + {{case images}} + {{if !empty($form_table_data_detail[$t['view_key']])}} + {{/if}} + {{/case}} + {{case field}} +

+ {{if isset($t['is_round_point']) and $t['is_round_point'] eq 1}} + + {{/if}} - - {{if is_array($t['view_key'])}} - {{foreach $t['view_key'] as $fk=>$fv}} - {{if isset($form_table_data_detail[$fv])}} - {{$form_table_data_detail[$fv]}} - - {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} - {{$t.view_key_join|raw}} - {{/if}} - {{/if}} - {{/foreach}} - {{else /}} - - {{if isset($form_table_data_detail[$t['view_key']])}} - - {{if !empty($t['view_data']) and is_array($t['view_data'])}} - - {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]])}} - - {{if !empty($t['view_data_key'])}} - {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']])}} - {{$t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']]}} - {{/if}} - {{else /}} - {{$t['view_data'][$form_table_data_detail[$t['view_key']]]}} + + {{if isset($t['view_join_first'])}} + {{$t.view_join_first}} + {{/if}} + + + {{if is_array($t['view_key'])}} + {{foreach $t['view_key'] as $fk=>$fv}} + {{if isset($form_table_data_detail[$fv])}} + {{$form_table_data_detail[$fv]}} + + {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} + {{$t.view_key_join|raw}} {{/if}} {{/if}} + {{/foreach}} + {{else /}} + + {{if isset($form_table_data_detail[$t['view_key']])}} + + {{if !empty($t['view_data']) and is_array($t['view_data'])}} + + {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]])}} + + {{if !empty($t['view_data_key'])}} + {{if isset($t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']])}} + {{$t['view_data'][$form_table_data_detail[$t['view_key']]][$t['view_data_key']]}} + {{/if}} + {{else /}} + {{$t['view_data'][$form_table_data_detail[$t['view_key']]]}} + {{/if}} + {{/if}} - - {{else /}} - {{$form_table_data_detail[$t['view_key']]|raw}} + + {{else /}} + {{$form_table_data_detail[$t['view_key']]|raw}} + {{/if}} {{/if}} {{/if}} - {{/if}} - - {{if isset($t['view_join_last'])}} - {{$t.view_join_last}} - {{/if}} + + {{if isset($t['view_join_last'])}} + {{$t.view_join_last}} + {{/if}} +

{{/case}} {{case module}} diff --git a/app/index/view/default/public/module/form_table.html b/app/index/view/default/public/module/form_table.html index 947800d25..80503845c 100644 --- a/app/index/view/default/public/module/form_table.html +++ b/app/index/view/default/public/module/form_table.html @@ -1,4 +1,5 @@ -
+
+ {{php}}$form_table_data_list = empty($form_table_data_list) ? (empty($data_list) ? [] : $data_list) : $form_table_data_list;{{/php}}
@@ -150,7 +151,6 @@ {{/if}} - {{php}}$form_table_data_list = empty($form_table_data_list) ? (empty($data_list) ? [] : $data_list) : $form_table_data_list;{{/php}} {{if !empty($form_table_data_list) and !empty($form_table['base']['key_field'])}} {{for start="0" end="count($form_table_data_list)"}} @@ -187,50 +187,73 @@ {{if isset($form_table_data_list[$i]) and !empty($t['view_type']) and !empty($t['view_key'])}} {{switch $t.view_type}} - {{case field}} - - {{if isset($t['view_join_first'])}} - {{$t.view_join_first}} + {{case images}} + {{if !empty($form_table_data_list[$i][$t['view_key']])}} + {{/if}} + {{/case}} + {{case field}} +

+ {{if isset($t['is_round_point']) and $t['is_round_point'] eq 1}} + + {{/if}} - - {{if is_array($t['view_key'])}} - {{foreach $t['view_key'] as $fk=>$fv}} - {{if isset($form_table_data_list[$i][$fv])}} - {{$form_table_data_list[$i][$fv]}} - - {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} - {{$t.view_key_join|raw}} - {{/if}} - {{/if}} - {{/foreach}} - {{else /}} - - {{if isset($form_table_data_list[$i][$t['view_key']])}} - - {{if !empty($t['view_data']) and is_array($t['view_data'])}} - - {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]])}} - - {{if !empty($t['view_data_key'])}} - {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']])}} - {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']]}} - {{/if}} - {{else /}} - {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]]}} + + {{if isset($t['view_join_first'])}} + {{$t.view_join_first}} + {{/if}} + + + {{if is_array($t['view_key'])}} + {{foreach $t['view_key'] as $fk=>$fv}} + {{if isset($form_table_data_list[$i][$fv])}} + {{$form_table_data_list[$i][$fv]}} + + {{if isset($t['view_key_join']) and $fk lt count($t['view_key'])-1}} + {{$t.view_key_join|raw}} {{/if}} {{/if}} + {{/foreach}} + {{else /}} + + {{if isset($form_table_data_list[$i][$t['view_key']])}} + + {{if !empty($t['view_data']) and is_array($t['view_data'])}} + + {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]])}} + + {{if !empty($t['view_data_key'])}} + {{if isset($t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']])}} + {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]][$t['view_data_key']]}} + {{/if}} + {{else /}} + {{$t['view_data'][$form_table_data_list[$i][$t['view_key']]]}} + {{/if}} + {{/if}} - - {{else /}} - {{$form_table_data_list[$i][$t['view_key']]|raw}} + + {{else /}} + {{$form_table_data_list[$i][$t['view_key']]|raw}} + {{/if}} {{/if}} {{/if}} - {{/if}} - - {{if isset($t['view_join_last'])}} - {{$t.view_join_last}} - {{/if}} + + {{if isset($t['view_join_last'])}} + {{$t.view_join_last}} + {{/if}} +

{{/case}} {{case module}} diff --git a/app/module/FormHandleModule.php b/app/module/FormHandleModule.php index 6e6fdce99..3bc27967d 100644 --- a/app/module/FormHandleModule.php +++ b/app/module/FormHandleModule.php @@ -703,6 +703,27 @@ class FormHandleModule } } break; + + // 字段 + case 'field' : + // 是否开启弹出提示 + if(isset($v['is_popover']) && $v['is_popover'] == 1) + { + // 是否指定弹出提示数据字段 + if(empty($v['popover_field']) && !empty($v['view_key']) && !is_array($v['view_key'])) + { + $v['popover_field'] = $v['view_key']; + } + } + break; + + // 图片 + case 'images' : + if(empty($v['images_shape'])) + { + $v['images_shape'] = 'radius'; + } + break; } } diff --git a/public/static/common/css/common.css b/public/static/common/css/common.css index 4e6ec4ad6..b9a5e51f8 100755 --- a/public/static/common/css/common.css +++ b/public/static/common/css/common.css @@ -36,7 +36,7 @@ html input[disabled] { cursor: default !important; color: #b1b1b1 !important; ba padding-left: 120px; } .dl-content dd:not(:last-child) { - border-bottom: 1px solid #efefef; + border-bottom: 1px solid rgba(0,0,0,.06); } .dl-content dt, .dl-content dd { font-weight: normal !important; @@ -472,6 +472,36 @@ ul.plug-file-upload-view-file li { padding: 0.6em 1em; } +/** + * 框架表格类样式覆盖 + */ +.am-table-striped > tbody > tr:nth-child(odd) > td, .am-table-striped > tbody > tr:nth-child(odd) > th, +.am-list-striped > li:nth-of-type(even) { + background-color: #fafafa; +} +.am-table-bordered > thead > tr > th, .am-table-bordered > tbody > tr > th, .am-table-bordered > tfoot > tr > th, .am-table-bordered > thead > tr > td, .am-table-bordered > tbody > tr > td, .am-table-bordered > tfoot > tr > td { + border-left: 1px solid rgba(0,0,0,.06); +} +.am-table > thead > tr > th, .am-table > tbody > tr > th, .am-table > tfoot > tr > th, .am-table > thead > tr > td, .am-table > tbody > tr > td, .am-table > tfoot > tr > td { + border-top: 1px solid rgba(0,0,0,.06); +} +.am-table > thead > tr > th { + border-bottom: 1px solid rgba(0,0,0,.06); +} +.am-table-hover > tbody > tr:hover > td, .am-table-hover > tbody > tr:hover > th { + background-color: #f5f5f5; +} +.am-panel-default, +.am-list > li { + border-color: rgba(0,0,0,.06); +} +.am-panel-default > .am-panel-hd { + border-color: transparent; +} +.am-table > thead > tr > td.am-active, .am-table > tbody > tr > td.am-active, .am-table > tfoot > tr > td.am-active, .am-table > thead > tr > th.am-active, .am-table > tbody > tr > th.am-active, .am-table > tfoot > tr > th.am-active, .am-table > thead > tr.am-active > td, .am-table > tbody > tr.am-active > td, .am-table > tfoot > tr.am-active > td, .am-table > thead > tr.am-active > th, .am-table > tbody > tr.am-active > th, .am-table > tfoot > tr.am-active > th { + background-color: #ffffeb; +} + /** * 颜色选择插件 */ @@ -645,7 +675,7 @@ button.colorpicker-submit img { * 表格-基础样式 */ .am-table-scrollable-horizontal { - border: 1px solid #ddd; + border: 1px solid rgba(0,0,0,.06); position: relative; } .am-table-scrollable-horizontal .table-no { @@ -677,7 +707,7 @@ button.colorpicker-submit img { border-left: 0; } .am-table-scrollable-horizontal .am-table tr th { - background: #e8e6e6; + background: #fafafa; min-width: 100px; position: sticky; top: 0; @@ -724,6 +754,10 @@ button.colorpicker-submit img { background: #fff; z-index: 4; } +.am-table-scrollable-horizontal .am-table-striped > tbody > tr:nth-child(odd) > td.am-grid-fixed-left, +.am-table-scrollable-horizontal .am-table-striped > tbody > tr:nth-child(odd) > td.am-grid-fixed-right { + background-color: #fafafa; +} .am-table-scrollable-horizontal .am-table tr th.am-grid-fixed-left, .am-table-scrollable-horizontal .am-table tr th.am-grid-fixed-right { z-index: 5; @@ -739,22 +773,41 @@ button.colorpicker-submit img { box-shadow: 0px 0px 1px #ddd; } .am-table-scrollable-horizontal .am-table tr .am-grid-fixed-left-shadow { - -webkit-box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.3); - -moz-box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.3); - box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.3); + -webkit-box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.2); + -moz-box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.2); + box-shadow: 5px 0px 10px rgba(136, 136, 136, 0.2); } .am-table-scrollable-horizontal .am-table tr .am-grid-fixed-right-shadow { - -webkit-box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.3); - -moz-box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.3); - box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.3); + -webkit-box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.2); + -moz-box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.2); + box-shadow: -5px 0px 10px rgba(136, 136, 136, 0.2); } .am-table-scrollable-horizontal .am-table > thead > tr > td { - border-bottom: 1px solid #e8e6e6; + border-bottom: 1px solid rgba(0,0,0,.06); } .am-table-scrollable-horizontal .am-table > thead > tr > td, .am-table-scrollable-horizontal .am-table > tbody > tr:first-child > td { border-top: 0px !important; } +.am-table-scrollable-horizontal .am-table > tbody > tr > td .am-text-truncate-2 { + max-height: 34px; + height: auto; +} + +/** + * 表格-操作栏更多操作列表样式 + */ +.am-table-scrollable-horizontal .am-table tr .am-operate-grid-more-list .am-dropdown-content { + padding: 10px; + width: 140px; + min-width: auto; + -webkit-box-shadow: 0px -2px 10px rgb(136 136 136 / 40%); + -moz-box-shadow: 0px -2px 10px rgb(136 136 136 / 0.4); + box-shadow: 0px -2px 10px rgb(136 136 136 / 40%); +} +.am-table-scrollable-horizontal .am-table tr .am-operate-grid-more-list .am-dropdown-content .am-badge:not(:last-child) { + margin-right: 5px; +} /** * 表格头部美化 @@ -779,7 +832,7 @@ button.colorpicker-submit img { * 表格-搜索条件 */ .form-table-search { - background: #eee; + background: #fafafa; } .form-table-search td { padding: 8px !important; @@ -834,7 +887,7 @@ button.colorpicker-submit img { border-top: 0; } .form-table-fields-button-container { - border-top: 1px solid #dedede; + border-top: 1px solid rgba(0,0,0,.06); height: 50px; } .form-table-fields-button-container .form-table-field-confirm-submit { @@ -1076,4 +1129,12 @@ form .am-tab-panel .am-form-group:last-child { #tree tr:hover .submit { display: block !important; } +} + +/** + * 弹出框 + */ +.am-popover { + max-width: 260px; + border-radius: 2px; } \ No newline at end of file diff --git a/public/static/common/js/common.js b/public/static/common/js/common.js index ca25272b3..2eb5f7ec2 100755 --- a/public/static/common/js/common.js +++ b/public/static/common/js/common.js @@ -1011,9 +1011,8 @@ function ModalLoad(url, title, class_tag, full, full_max) * @param {[float]} value [金额] * @param {[int]} pos [位数 默认2] */ -function FomatFloat(value, pos) +function FomatFloat(value, pos = 2) { - pos = pos || 2; var f_x = Math.round(value*Math.pow(10, pos))/Math.pow(10, pos); var s_x = f_x.toString(); diff --git a/public/static/common/lib/assets/css/amazeui.css b/public/static/common/lib/assets/css/amazeui.css index d9073e1dc..9f85e9d10 100755 --- a/public/static/common/lib/assets/css/amazeui.css +++ b/public/static/common/lib/assets/css/amazeui.css @@ -8512,7 +8512,6 @@ img.am-thumbnail, line-height: 1.6; background-color: #fff; border: 1px solid #ddd; - border-radius: 0; -webkit-background-clip: padding-box; background-clip: padding-box; -webkit-animation-duration: .15s; diff --git a/public/static/index/default/css/common.css b/public/static/index/default/css/common.css index f24c5628a..41d6a0bce 100755 --- a/public/static/index/default/css/common.css +++ b/public/static/index/default/css/common.css @@ -581,9 +581,9 @@ ul.am-dropdown-content > .am-active > a:focus, } .am-btn-success { - color: #5eb95e !important; - background-color: #E4F3E4; - border-color: #d2e8d2; + color: #258f25 !important; + background-color: #a8e6a8; + border-color: #7fe27f; } .am-btn-success:hover, .am-btn-success:focus { background-color: #5eb95e;