#63 Fix background images
Closed 5 years ago by amitosh. Opened 5 years ago by amitosh.
amitosh/Fedora-app background-fixes  into  master

file modified
+1 -1
@@ -1,6 +1,6 @@ 

  .ask {

    background-color: #ffffff !important;

-   background: url('../../ask_back.png');

+   background: url('/assets/img/ask_back.png');

  }

  

  

@@ -5,35 +5,28 @@ 

    Ionic pages and navigation.

  -->

  <style rel="stylesheet">

- ion-row{

-   background-color: #294172;

- }

+   ion-row {

+     background-color: #294172;

+   }

  

- #title

- {

-   color: #ffffff;

- }

- 

- ion-card

- {

-   margin-top: 50px;

- }

- 

- .button{

-   background-color: transparent;

-   box-shadow: none;

- }

+   #title {

+     color: #ffffff;

+   }

  

+   .button {

+     background-color: transparent;

+     box-shadow: none;

+   }

  </style>

  <ion-content class="magazine">

- <ion-navbar>

-   <button ion-button menuToggle>

-     <ion-icon name="menu"></ion-icon>

-   </button>

- </ion-navbar>

+   <ion-navbar>

+     <button ion-button menuToggle>

+       <ion-icon name="menu"></ion-icon>

+     </button>

+   </ion-navbar>

  

- <img id="maglogo" src="assets/img/mag_logo.svg">

-     <img id="mag-title" src="assets/img/mag_title.svg">

+   <img id="maglogo" src="assets/img/mag_logo.svg">

+   <img id="mag-title" src="assets/img/mag_title.svg">

  

    <ion-list *ngIf="posts.length !== 0">

      <ion-card *ngFor="let post of posts">

@@ -1,7 +1,3 @@ 

- /*Magazine page starts*/

- 

- 

- 

  /*magazine page starts*/

  html, body

  {
@@ -27,9 +23,3 @@ 

    top: 10px;

    right:25px;

  }

- 

- 

- 

- /*magazine page ends*/

- 

- /*Magazine page ends*/

file modified
+1 -1
@@ -1,5 +1,5 @@ 

  .social {

-   background : url('../../social_back.png');

+   background : url('/assets/img/social_back.png');

    background-color: #FFFFFF;

  }

  

Some of the CSS was broken while upgrading to Ionic 3. This PR fixes them

Pull-Request has been closed by amitosh

5 years ago