]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/sass/application.scss
Add info when server is processing a video at upload
[github/Chocobozzz/PeerTube.git] / client / src / sass / application.scss
index fa5b564b709c8e47e0815be401e0ec56915ed0fd..8e26669443c13e6868f83a89d8ae8f61dcf6bb29 100644 (file)
@@ -1,4 +1,7 @@
-@import '../../node_modules/video.js/dist/video-js.css';
+@import '~primeng/resources/themes/bootstrap/theme.css';
+@import '~primeng/resources/primeng.css';
+@import '~video.js/dist/video-js.css';
+@import './video-js-custom.scss';
 
 [hidden] {
   display: none !important;
@@ -44,23 +47,36 @@ input.readonly {
   }
 }
 
-/* some fixes for ng2-smart-table */
-ng2-smart-table {
-  thead tr {
-    border-top: 1px solid rgb(233, 235, 236)
-  }
+// Thanks https://gist.github.com/alexandrevicenzi/680147013e902a4eaa5d
+.glyphicon-refresh-animate {
+  -animation: spin .7s infinite linear;
+  -ms-animation: spin .7s infinite linear;
+  -webkit-animation: spinw .7s infinite linear;
+  -moz-animation: spinm .7s infinite linear;
+}
 
-  td, th {
-    padding: 8px !important;
-    color: #333333 !important;
-    font-size: 14px !important;
-  }
+@keyframes spin {
+  from { transform: scale(1) rotate(0deg);}
+  to { transform: scale(1) rotate(360deg);}
+}
 
-  .ng2-smart-pagination-nav .page-link {
-    font-size: 11px !important;
-  }
+@-webkit-keyframes spinw {
+  from { -webkit-transform: rotate(0deg);}
+  to { -webkit-transform: rotate(360deg);}
+}
+
+@-moz-keyframes spinm {
+  from { -moz-transform: rotate(0deg);}
+  to { -moz-transform: rotate(360deg);}
+}
 
-  .glyphicon {
-    font-family: 'Glyphicons Halflings' !important;
+/* ngprime data table customizations */
+p-datatable {
+  .action-cell {
+    text-align: center;
+
+    .glyphicon {
+      cursor: pointer;
+    }
   }
 }