From 2f3d1f68e8ee1a69cd7951586b4537b1dae543ec Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 25 May 2021 16:10:42 +0900 Subject: [PATCH 1/3] Add: Remove Closebutton at selected #10 --- userChrome.css | 45 --------------------------------------------- 1 file changed, 45 deletions(-) diff --git a/userChrome.css b/userChrome.css index bb9f4fb..8a02124 100644 --- a/userChrome.css +++ b/userChrome.css @@ -371,51 +371,6 @@ margin-left: 0px !important; } - /** Pinned Tab - Replace Favicon to Close Button at Selected ****************/ - .tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-close-button { - display: -moz-box !important; - -moz-box-ordinal-group: 0 !important; - transform: translateX(-1px); - - /* Looks like hover */ - width: 24px !important; - height: 24px !important; - padding: 7px !important; - } - .tabbrowser-tab[pinned][visuallyselected] .tab-icon-image { - display: none !important; - } - - /* Left Padding - Assume the icon size is 17px */ - .tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-content { - padding-inline: 7.5px !important; /* Original: 10px */ - } - - /* Right Padding - Assume the icon size is 17px */ - .tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-icon-stack { - width: 8.5px !important; - } - .tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-content { - padding-inline-end: 0px !important; - } - - .tabbrowser-tab[pinned][visuallyselected][busy] .tab-content { - padding-inline-end: 9.5px !important; - } - .tabbrowser-tab[pinned][busy] .tab-content { - padding-inline: 10.5px !important; - } - - /* Sound Tab - Don't move overlay */ - .tabbrowser-tab[pinned][busy] .tab-icon-overlay:is([soundplaying], [muted], [activemedia-blocked]) { - transform: translateX(.5px) translateY(-2px) !important; - } - - .tabbrowser-tab[pinned][visuallyselected]:not([busy]) .tab-icon-overlay { - transform: translateX(-9px) translateY(-2px) !important; - left: 0 !important; - } - /** Container Tab - Color line at icon's bottom *****************************/ .tab-context-line { display: none; From c1c05b4fab8e18296eb82dc2ebc6931defbeb2b5 Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Tue, 25 May 2021 16:28:38 +0900 Subject: [PATCH 2/3] Fix: remove close button depends code --- userChrome.css | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/userChrome.css b/userChrome.css index 8a02124..96bf3a0 100644 --- a/userChrome.css +++ b/userChrome.css @@ -383,27 +383,6 @@ border-bottom: 2px solid var(--identity-icon-color); } - /* None exist favicon & Pinned to select */ - .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before, - .tabbrowser-tab[pinned][visuallyselected]:not([busy]):not(:hover) .tab-content::before { - /* Box Model */ - content: ''; - display: block; - position: absolute !important; - transition: 0.2s !important; - transform: translateY(10px) !important; - - /* Shape */ - border-bottom: 2px solid var(--identity-icon-color); - width: 16px; - } - .tabbrowser-tab:not([image]):not([pinned], [sharing], [crashed]):not([soundplaying], [muted], [activemedia-blocked]) .tab-content::before { - transform: translateY(10px) !important; /* None exist favicon */ - } - .tabbrowser-tab[pinned][visuallyselected]:not([busy]):not(:hover) .tab-content::before { - transform: translateX(2.5px) translateY(10px) !important; /* Pinned to select */ - } - /* None exist favicon - With Sound */ .tabbrowser-tab:not([image]) .tab-icon-overlay:not([pinned], [sharing], [crashed]):is([soundplaying], [muted], [activemedia-blocked]) { box-sizing: content-box; From e30cf6fa29af54a7aec527536d8c00665d1f38db Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Wed, 9 Jun 2021 10:23:55 +0900 Subject: [PATCH 3/3] Fix: workflow invalid update --- .github/workflows/release.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b0f6896..ce5e692 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,14 +15,17 @@ jobs: branch: "photon-style" steps: - uses: actions/checkout@v2 - ref: ${{ matrix.branch }} + with: + ref: ${{ matrix.branch }} - name: Release Structure run: | mkdir -v chrome - mv -v * chrome/ - mv -v chrome/user.js . - zip chrome user.js --out ${{ matrix.name }}.zip + + shopt -s extglob + mv -v !(chrome|user.js) chrome/ + + zip -rv ${{ matrix.name }}.zip chrome user.js - uses: softprops/action-gh-release@v1 # actions/create-release, actions/upload-release-asset is deprecated if: startsWith(github.ref, 'refs/tags/')