]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix responsive on videos search
authorChocobozzz <me@florianbigard.com>
Tue, 31 Jul 2018 07:43:26 +0000 (09:43 +0200)
committerChocobozzz <me@florianbigard.com>
Tue, 31 Jul 2018 07:45:57 +0000 (09:45 +0200)
CHANGELOG.md
client/src/app/search/search.component.scss
client/src/app/shared/video/abstract-video-list.scss

index 40ecea67c9726222d274b2a02b185ef2c2314472..8920fbccbfe53e1048f91b909a6c413acaf1cbb0 100644 (file)
@@ -22,13 +22,15 @@ This version is a pre release because it contains many important changes, and re
 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS unaccent;'
 $ sudo -u postgres psql peertube_prod -c 'CREATE EXTENSION IF NOT EXISTS pg_trgm;'
 ```
+
+You will need [PostgreSQL Contrib](https://www.postgresql.org/docs/9.6/static/contrib.html).
   
 ### BREAKING CHANGES
 
  * Require `unaccent` and `pg_trgm` PostgreSQL extension for the PeerTube database
  * `category` filter param is replaced by `categoryOneOf`
- * Switch job queue to [Bull](https://github.com/OptimalBits/bull). PeerTube should migrate your old pending jobs in this new queue manager
- * Update nginx template
+ * Switch job queue to [Bull](https://github.com/OptimalBits/bull). **PeerTube will not migrate your old pending jobs in this new queue manager**
+ * Update nginx template (you need to [update manually](https://github.com/Chocobozzz/PeerTube/blob/develop/support/doc/production.md#nginx))
  * Update default cache size configurations
  
 ### Features
index 330eef9d8ee7eb48c35c36259b7af3a6e8c35f2d..ef89c56661fc7a31c2acd7e205ef07977b000f37 100644 (file)
 }
 
 @media screen and (max-width: 800px) {
+  .search-result {
+    margin: 20px 10px;
+  }
+
   .results-header {
     font-size: 15px !important;
   }
       }
 
       my-video-thumbnail {
-        margin-right: 0;
+        margin-right: 0 !important;
+
+        /deep/ .video-thumbnail {
+          width: 100%;
+          height: auto;
+
+          img {
+            width: 100%;
+            height: auto;
+          }
+        }
       }
     }
   }
index 913fcfe22320030f7e99060d23fbe4b2e54e375d..91091a5bb23916c0bdac1cdcd3a56d22b69d0542 100644 (file)
@@ -34,7 +34,7 @@ my-video-feed {
         }
       }
 
-      /deep/ .video-thumbnail {
+      .video-thumbnail {
         width: 100%;
         height: auto;