فهرست منبع

Merge pull request #681 from Anarios/revert-622-main

Revert "Add ratio display to new design"
Dmitrii Selivanov 2 سال پیش
والد
کامیت
117b4830b4
3فایلهای تغییر یافته به همراه5 افزوده شده و 17 حذف شده
  1. 1 1
      Extensions/combined/content-style.css
  2. 4 11
      Extensions/combined/src/bar.js
  3. 0 5
      Extensions/combined/src/state.js

+ 1 - 1
Extensions/combined/content-style.css

@@ -41,6 +41,6 @@
   height: 2px;
   position: absolute;
   padding-top: 6px;
-  padding-bottom: 12px;
+  padding-bottom: 28px;
   top: -6px;
 }

+ 4 - 11
Extensions/combined/src/bar.js

@@ -1,5 +1,5 @@
 import { getButtons } from "./buttons";
-import { extConfig, isMobile, isLikesDisabled, isNewDesign } from "./state";
+import { extConfig, isMobile, isLikesDisabled } from "./state";
 import { cLog, getColorFromTheme } from "./utils";
 
 function createRateBar(likes, dislikes) {
@@ -23,12 +23,12 @@ function createRateBar(likes, dislikes) {
       }
 
       (
-        document.getElementById(isNewDesign() ? "actions-inner" : "menu-container") ||
+        document.getElementById("menu-container") ||
         document.querySelector("ytm-slim-video-action-bar-renderer")
       ).insertAdjacentHTML(
         "beforeend",
         `
-            <div class="ryd-tooltip" style="width: ${widthPx}px${isNewDesign() ? "; margin-bottom: -2px" : ""}">
+            <div class="ryd-tooltip" style="width: ${widthPx}px">
             <div class="ryd-tooltip-bar-container">
                <div
                   id="ryd-bar-container"
@@ -46,13 +46,6 @@ function createRateBar(likes, dislikes) {
             </div>
     `
       );
-
-      // Add border between info and comments
-      if (isNewDesign()) {
-        let descriptionAndActionsElement = document.getElementById("description-and-actions");
-        descriptionAndActionsElement.style.borderBottom = "1px solid var(--yt-spec-10-percent-layer)";
-        descriptionAndActionsElement.style.paddingBottom = "10px";
-      }
     } else {
       document.getElementById("ryd-bar-container").style.width = widthPx + "px";
       document.getElementById("ryd-bar").style.width = widthPercent + "%";
@@ -69,7 +62,7 @@ function createRateBar(likes, dislikes) {
   } else {
     cLog("removing bar");
     let ratebar = document.getElementById("ryd-bar-container");
-    if (ratebar) {
+    if(ratebar) {
       ratebar.parentNode.removeChild(ratebar);
     }
   }

+ 0 - 5
Extensions/combined/src/state.js

@@ -39,10 +39,6 @@ function isShorts() {
   return location.pathname.startsWith("/shorts");
 }
 
-function isNewDesign() {
-  return document.getElementById("comment-teaser") !== null;
-}
-
 let mutationObserver = new Object();
 
 if (isShorts() && mutationObserver.exists !== true) {
@@ -334,7 +330,6 @@ export {
   isShorts,
   isVideoDisliked,
   isVideoLiked,
-  isNewDesign,
   getState,
   setState,
   setInitialState,