Не нашла что нужно изменить в файле /themes/тема/css/global.css
ваш_сайт/themes/theme746/css/global.css строки с 402 по 426
Код:
input.button_mini, input.button_small, input.button, input.button_large, input.button_mini_disabled, input.button_small_disabled, input.button_disabled, input.button_large_disabled, input.exclusive_mini, input.exclusive_small, input.exclusive, input.exclusive_large, input.exclusive_mini_disabled, input.exclusive_small_disabled, input.exclusive_disabled, input.exclusive_large_disabled, a.button_mini, a.button_small, a.button, a.button_large, a.exclusive_mini, a.exclusive_small, a.exclusive, a.exclusive_large, span.button_mini, span.button_small, span.button, span.button_large, span.exclusive_mini, span.exclusive_small, span.exclusive, span.exclusive_large {
padding: 8px 12px;
font-weight: normal;
font-size: 14px;
font-family: Arial, Helvetica, sans-serif;
color: #FFF;
line-height: 15px;
border: 1px solid #838383;
display: inline-block;
*display: inline;
margin-bottom: 0;
vertical-align: middle;
cursor: pointer;
*border: 0;
*zoom: 1;
background: #d1d1d1;
background: -moz-linear-gradient(top, #d1d1d1 0%, #d6d6d6 7%, #d8d8d8 13%, #d7d7d7 23%, #d2d2d2 30%, #b1b1b1 50%, #aeaeae 53%, #9b9b9b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d1d1d1), color-stop(7%,#d6d6d6), color-stop(13%,#d8d8d8), color-stop(23%,#d7d7d7), color-stop(30%,#d2d2d2), color-stop(50%,#b1b1b1), color-stop(53%,#aeaeae), color-stop(100%,#9b9b9b));
background: -webkit-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: -o-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: -ms-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: linear-gradient(to bottom, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1d1d1', endColorstr='#9b9b9b',GradientType=0 );
text-transform:none;
}
Вам нужно править это:
Код:
background: #d1d1d1;
background: -moz-linear-gradient(top, #d1d1d1 0%, #d6d6d6 7%, #d8d8d8 13%, #d7d7d7 23%, #d2d2d2 30%, #b1b1b1 50%, #aeaeae 53%, #9b9b9b 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#d1d1d1), color-stop(7%,#d6d6d6), color-stop(13%,#d8d8d8), color-stop(23%,#d7d7d7), color-stop(30%,#d2d2d2), color-stop(50%,#b1b1b1), color-stop(53%,#aeaeae), color-stop(100%,#9b9b9b));
background: -webkit-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: -o-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: -ms-linear-gradient(top, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);
background: linear-gradient(to bottom, #d1d1d1 0%,#d6d6d6 7%,#d8d8d8 13%,#d7d7d7 23%,#d2d2d2 30%,#b1b1b1 50%,#aeaeae 53%,#9b9b9b 100%);