소스 검색

- dodanie przycisku na stronie głownej dla pracownicy/kontrahenci + obsługa
- ostylowanie przycisków menu na stronie głownej oraz w filtrach po
stronie formularza pracownicy/kontrahenci

dariusz.andryskowski 8 년 전
부모
커밋
e8648fd5db
4개의 변경된 파일9개의 추가작업 그리고 4개의 파일을 삭제
  1. 0 0
      theme/assets/css/styles.css
  2. BIN
      theme/assets/images/button-red-border.png
  3. 5 2
      theme/assets/less/styles.less
  4. 4 2
      theme/view/home.php

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
theme/assets/css/styles.css


BIN
theme/assets/images/button-red-border.png


+ 5 - 2
theme/assets/less/styles.less

@@ -293,7 +293,6 @@ ul.breadcrumb {
 /** Menu */
 #smad-menu-section {
 
-
   .smad-heder-title {
     color: @brand-text;
     font-weight: 700;
@@ -311,7 +310,7 @@ ul.breadcrumb {
       display: inline-block;
 
       li {
-        padding: 0 7px;
+        padding: 5px 7px;
         display: inline-block;
       }
     }
@@ -573,6 +572,10 @@ footer {
       padding-top: 20px;
       padding-bottom: 20px;
 
+      .btn {
+        margin: 5px 0;
+      }
+
       .menu-item {
         display: inline-block;
       }

+ 4 - 2
theme/view/home.php

@@ -8,7 +8,8 @@
                         <div class="menu-item">
                             <a href="index.php?_route=UrlAction_Bocian#PRACOWNICY" title="Pracownicy">
                                 <div>PRACOWNICY</div>
-                                <img src="<?= $this->asset("assets/images/button-red.png"); ?>" alt="Pracownicy" />
+                                <img src="<?= $this->asset("assets/images/button-red.png"); ?>" alt="Pracownicy" onmouseover="this.src='<?= $this->asset("assets/images/button-red-border.png"); ?>'" onmouseout="this.src='<?= $this->asset("assets/images/button-red.png"); ?>'"
+ />
                             </a>
                         </div>
                     </div>
@@ -18,7 +19,8 @@
                         <div class="menu-item">
                             <a href="index.php?_route=UrlAction_Bocian#KONTRAHENCI" title="Kontrahenci">
                                 <div>KONTRAHENCI</div>
-                                <img src="<?= $this->asset("assets/images/button-red.png"); ?>" alt="Kontrahenci" />
+                                <img src="<?= $this->asset("assets/images/button-red.png"); ?>" alt="Kontrahenci" onmouseover="this.src='<?= $this->asset("assets/images/button-red-border.png"); ?>'" onmouseout="this.src='<?= $this->asset("assets/images/button-red.png"); ?>'"
+ />
                             </a>
                         </div>
                     </div>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.