Commit bad7c5c878ac1f819a1ad886f314f25b7f5eff5b
1 parent
139413b3
Веталь
Showing
2 changed files
with
13 additions
and
8 deletions
Show diff stats
frontend/views/basket/index.php
... | ... | @@ -159,7 +159,10 @@ $('#orders-delivery input[type=\"radio\"]').click(function(){ |
159 | 159 | </div> |
160 | 160 | <?php endforeach;?> |
161 | 161 | |
162 | -<?php echo Html::submitButton(' Пересчитать ',array('name'=>"update",'class'=>'submit4 fl')); ?> | |
162 | + <div style="margin-top: 10px;"> | |
163 | + <?php echo Html::submitButton(' Пересчитать ',array('name'=>"update",'class'=>'submit4 fl ')); ?> | |
164 | + </div> | |
165 | + | |
163 | 166 | |
164 | 167 | <div class="total"> |
165 | 168 | <?= $form->field($modelOrder, 'total')->hiddenInput(['value'=>$modelOrder->getSumCost()])->label(false); ?> | ... | ... |
frontend/web/css/style.css
... | ... | @@ -119,7 +119,7 @@ a.myorders{color:#f75d50} |
119 | 119 | strike, strike span#old_cost{font-size:14px; color: #333} |
120 | 120 | |
121 | 121 | |
122 | -.submit4m, a.link_buy, .checkout_basket button { | |
122 | +.submit4m, a.link_buy, .checkout_basket button, .submit4 { | |
123 | 123 | background: #95ba2f; |
124 | 124 | border-radius:4px; |
125 | 125 | height: 29px; |
... | ... | @@ -131,6 +131,8 @@ strike, strike span#old_cost{font-size:14px; color: #333} |
131 | 131 | border-bottom: 3px solid #799920; |
132 | 132 | font-size: 12px; |
133 | 133 | } |
134 | +.submit4.bottom3 {font-size: 12px !important;display: block;} | |
135 | +.basket .submit4.bottom3 {font-size: 12px !important;display: block; margin-top: 10px;} | |
134 | 136 | a.link_buy, .checkout_basket button { |
135 | 137 | |
136 | 138 | display:block; |
... | ... | @@ -138,7 +140,7 @@ a.link_buy, .checkout_basket button { |
138 | 140 | width:122px; |
139 | 141 | line-height:32px; |
140 | 142 | } |
141 | -.checkout_basket button{ | |
143 | +.checkout_basket button, .submit4{ | |
142 | 144 | margin: 0; |
143 | 145 | padding: 0 20px; |
144 | 146 | line-height: 31px; |
... | ... | @@ -148,15 +150,15 @@ a.link_buy, .checkout_basket button { |
148 | 150 | border-right: 0; |
149 | 151 | cursor: pointer; |
150 | 152 | } |
151 | -a.link_buy:hover, .submit4m:hover, .checkout_basket button:hover { | |
153 | +a.link_buy:hover, .submit4m:hover, .checkout_basket button:hover, .submit4:hover { | |
152 | 154 | border-bottom: 3px solid #95ba2f;; |
153 | 155 | } |
154 | -a.link_buy:active, .submit4m:active,.checkout_basket button:active { | |
156 | +a.link_buy:active, .submit4m:active,.checkout_basket button:active, .submit4:active { | |
155 | 157 | background: #799920; |
156 | 158 | border-bottom: 3px solid #799920; |
157 | 159 | |
158 | 160 | } |
159 | -.checkout_basket button:focus { outline: none;} | |
161 | +.checkout_basket button:focus, .submit4:focus { outline: none;} | |
160 | 162 | .mycarousel{position:absolute;right:0;top:13px;} |
161 | 163 | ul.mycarousel{list-style:none;margin:0px;padding:0px;} |
162 | 164 | ul.mycarousel li{margin:0px;padding:0px;} |
... | ... | @@ -628,8 +630,8 @@ ul.social {margin-top: 20px;} |
628 | 630 | |
629 | 631 | .content_area{width:450px;} |
630 | 632 | |
631 | -.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;} | |
632 | -.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;} | |
633 | +/*.bottom3{border-top:3px solid #95ba2f !important;border-bottom:3px solid #799920 !important; float:left;font-size:15px;}*/ | |
634 | +/*.bottom3:hover{border-top:3px solid #f75d50 !important;border-bottom:3px solid #c33327 !important;}*/ | |
633 | 635 | #cancel{text-decoration:none;color:#799920;font-size:13px;border-bottom:1px dotted #799920;float:left;margin-left:40px;} |
634 | 636 | |
635 | 637 | .buttons{ | ... | ... |