Тема дизайна Default 3
Для стандартной штатной темы дизайна Default 3 адаптация не требуется (почти). Чтобы кнопки открытия/закрытия карты выглядели наряднее, добавьте css-правила стилей для элеменов button. Например в файл шаблона head.html:
<style>
.checkout-form button {
background: #fcd630;
color: #000;
outline: 0;
padding: 5px 10px 6px;
font-size: 1.1em;
border: 1px solid rgba(0,0,0,0.3);
border-color: rgba(0,0,0,0.2) rgba(0,0,0,0.3) rgba(0,0,0,0.3) rgba(0,0,0,0.3);
-webkit-appearance: none;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
border-radius: 3px;
text-shadow: 0 1px 0px rgba(255,255,255,0.5);
background: #fcd630 -moz-linear-gradient(top, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.0) 100%); /* FF3.6+ */
background: #fcd630 -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.5)), color-stop(100%,rgba(255,255,255,0.0))); /* Chrome,Safari4+ */
background: #fcd630 -webkit-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* Chrome10+,Safari5.1+ */
background: #fcd630 -o-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* Opera 11.10+ */
background: #fcd630 -ms-linear-gradient(top, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* IE10+ */
background: #fcd630 linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fde992', endColorstr='#fcd630',GradientType=0 ); /* IE6-9 */
}
.checkout-form button:hover {
cursor: pointer;
background: #fcd630
linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.3) 100%);
}
.checkout-form button:active {
background: #f3cd27;
text-shadow: none;
box-shadow: none;
}
.checkout-form button:disabled {
background: #eee;
color: #999;
text-shadow: 0 1px 1px #fff;
cursor: pointer;
}
.checkout-form button.small {
font-size: 0.9em;
padding: 3px 5px;
}
.checkout-form button.large {
font-size: 1.6em;
padding: 7px 10px;
font-weight: bold;
}
.checkout-form button.gray {
background: #eee linear-gradient(to bottom, rgba(255,255,255,0.5) 0%,rgba(255,255,255,0.0) 100%);
}
</style>
Тема дизайна InCart
Для темы InCart 1.3.1 нужно отредактировать файл index.html, добавив для тега body атрибут data-theme-id="incart"
.