]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix some styles
authorChocobozzz <me@florianbigard.com>
Thu, 17 Jan 2019 10:16:08 +0000 (11:16 +0100)
committerChocobozzz <me@florianbigard.com>
Thu, 17 Jan 2019 10:16:08 +0000 (11:16 +0100)
Video edit tags, dropdown actions font ...

client/src/app/header/header.component.scss
client/src/app/shared/buttons/button.component.scss
client/src/app/videos/+video-edit/shared/video-edit.component.scss
client/src/sass/include/_mixins.scss
client/src/sass/primeng-custom.scss

index cdc457b963ebdd06d47c913a25d89b95b46b5f5f..cea415d9b229001eaeeb91da515d2179caa21a2a 100644 (file)
@@ -6,6 +6,7 @@
   padding-left: 10px;
   margin-right: 15px;
   padding-right: 40px; // For the search icon
+  font-size: 14px;
 
   &::placeholder {
     color: var(--inputPlaceholderColor);
index be41669cda0db4921c9fe1ec5ba9e9e9b624f4f1..04199a2a95c31e3dea21078dc36951405fae7157 100644 (file)
@@ -5,7 +5,6 @@
   @include peertube-button-link;
   @include button-with-icon(21px, 0, -2px);
 
-  font-size: 15px;
   font-weight: $font-semibold;
   color: $grey-foreground-color;
   background-color: $grey-background-color;
index cc32fb2546eb93c8dc22ace32fa792110fe3b75d..bb775cb0af67642979d720bf93d15339cfadcfcd 100644 (file)
@@ -23,10 +23,6 @@ my-peertube-checkbox {
     display: block;
   }
 
-  input, select {
-    font-size: 15px
-  }
-
   .label-tags + span {
     font-size: 15px;
   }
@@ -167,10 +163,10 @@ p-calendar {
   }
 
   tag {
-    background-color: var(--inputColor) !important;
+    background-color: $grey-background-color !important;
+    color: #000 !important;
     border-radius: 3px !important;
     font-size: 15px !important;
-    color: var(--mainForegroundColor) !important;
     height: 30px !important;
     line-height: 30px !important;
     margin: 0 5px 0 0 !important;
@@ -193,7 +189,10 @@ p-calendar {
       top: -1px;
       height: auto !important;
       vertical-align: middle !important;
-      fill: $grey-foreground-color !important;
+
+      path  {
+        fill: $grey-foreground-color !important;
+      }
     }
 
     &:hover {
index 1da240db8612b3d1fedf154b818523e0a44d11d8..8749649d339ab8f2e3d43ac673bf26da8efbb119 100644 (file)
@@ -76,6 +76,7 @@
   border-radius: 3px;
   padding-left: 15px;
   padding-right: 15px;
+  font-size: 15px;
 
   &::placeholder {
     color: var(--inputPlaceholderColor);
index 6057b1db0573dbe7a49ec2de6ffdc7d26704a990..7ba0111800044192fc7705b6ea4e386dba25cde7 100644 (file)
@@ -263,33 +263,40 @@ p-calendar .ui-datepicker {
   }
 }
 
+.ui-chkbox {
 
-.ui-chkbox-box {
-  &.ui-state-active {
-    border-color: var(--mainColor) !important;
-    background-color: var(--mainColor) !important;
+  &, .ui-chkbox-box {
+    width: 18px !important;
+    height: 18px !important;
   }
 
-  .ui-chkbox-icon {
-    position: relative;
-    overflow: visible !important;
-
-    &:after {
-      content: '';
-      position: absolute;
-      top: 1px;
-      left: 7px;
-      width: 5px;
-      height: 13px;
-      opacity: 0;
-      transform: rotate(45deg) scale(0);
-      border-right: 2px solid var(--mainBackgroundColor);
-      border-bottom: 2px solid var(--mainBackgroundColor);
+  .ui-chkbox-box {
+    &.ui-state-active {
+      border-color: var(--mainColor) !important;
+      background-color: var(--mainColor) !important;
     }
 
-    &.pi-check:after {
-      opacity: 1;
-      transform: rotate(45deg) scale(1);
+    .ui-chkbox-icon {
+      position: relative;
+      overflow: visible !important;
+
+      &:after {
+        content: '';
+        position: absolute;
+        top: 1px;
+        left: 6px;
+        width: 5px;
+        height: 12px;
+        opacity: 0;
+        transform: rotate(45deg) scale(0);
+        border-right: 2px solid var(--mainBackgroundColor);
+        border-bottom: 2px solid var(--mainBackgroundColor);
+      }
+
+      &.pi-check:after {
+        opacity: 1;
+        transform: rotate(45deg) scale(1);
+      }
     }
   }
 }
@@ -354,3 +361,7 @@ p-toast {
     }
   }
 }
+
+.ui-widget {
+  font-family: $main-fonts !important;
+}