From 1c715ce09298e7fd03418c066bbcaf8c981165d5 Mon Sep 17 00:00:00 2001 From: Ryosuke Asano <73892113+surapunoyousei@users.noreply.github.com> Date: Fri, 7 Apr 2023 22:57:06 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=90=9B=20Fix=20verticaltab's=20newtab?= =?UTF-8?q?=20button=20hover?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/browser/themes/pulse/vertical_tabs.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/browser/themes/pulse/vertical_tabs.css b/src/browser/themes/pulse/vertical_tabs.css index 82766f87..191576b1 100644 --- a/src/browser/themes/pulse/vertical_tabs.css +++ b/src/browser/themes/pulse/vertical_tabs.css @@ -131,3 +131,14 @@ :root[sizemode='fullscreen'] #browser #TabsToolbar { display: none; } + +#new-tab-button { + appearance: inherit !important; + border-radius: 5px; + margin-left: 5px; + margin-right: 5px; +} + +#new-tab-button:hover { + background: var(--toolbarbutton-hover-background); +} From c47a831eb59e45efc96c65fdfc789cbc537d169e Mon Sep 17 00:00:00 2001 From: Ryosuke Asano <73892113+surapunoyousei@users.noreply.github.com> Date: Fri, 7 Apr 2023 23:02:32 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=90=9B=20Fix=20missing=20"!important"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/browser/themes/pulse/vertical_tabs.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/browser/themes/pulse/vertical_tabs.css b/src/browser/themes/pulse/vertical_tabs.css index 191576b1..ba297047 100644 --- a/src/browser/themes/pulse/vertical_tabs.css +++ b/src/browser/themes/pulse/vertical_tabs.css @@ -135,8 +135,8 @@ #new-tab-button { appearance: inherit !important; border-radius: 5px; - margin-left: 5px; - margin-right: 5px; + margin-left: 5px !important; + margin-right: 5px !important; } #new-tab-button:hover { From 1c448fa21c93e1f2eb11e7e0b546208210750a84 Mon Sep 17 00:00:00 2001 From: trickypr <23250792+trickypr@users.noreply.github.com> Date: Sat, 8 Apr 2023 19:28:09 +1000 Subject: [PATCH 3/3] :memo: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 089a7ef5..319bdff3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.0.0-a.62 + +### Fixed + +- New tab button no longer follows OS style (#233, @surapunoyousei) + ## 1.0.0-a.61 ### Added