1
0
mirror of https://github.com/XFox111/TabsAsideExtension.git synced 2026-04-22 07:58:01 +03:00

Minor 1.7 (#31)

- Complete UI/UX overhaul
- Updated default hotkeys (#27)
- Added option to disable deletion confirmation (#29)
- Added Chinese translation
- Fixed font artifacts on Windows

Co-authored-by: Dustin-Jiang <56217843+Dustin-Jiang@users.noreply.github.com>
Co-Authored-By: Michael Gordeev <michael@xfox111.net>
This commit is contained in:
Michael Gordeev
2020-08-05 12:07:11 +03:00
committed by GitHub
parent 1b7b419168
commit c777f1a60a
10 changed files with 354 additions and 191 deletions
+23 -7
View File
@@ -17,7 +17,7 @@
.tabsAside
{
font-family: 'DefaultFont';
font-family: 'Segoe UI' ,'DefaultFont';
font-size: 14px;
user-select: none;
}
@@ -41,15 +41,15 @@
/* Buttons style */
.tabsAside button
{
width: 32px;
height: 32px;
width: 28px;
height: 28px;
background-color: transparent;
border: none;
cursor: pointer;
}
.tabsAside button:hover
{
background-color: #c6c6c6;
background-color: #f2f2f2;
}
.tabsAside button:active
{
@@ -62,25 +62,41 @@
user-select: none;
position: absolute;
width: 250px;
width: 290px;
box-shadow: 0px 0px 10px black;
box-shadow: 0px 0px 10px rgba(0,0,0,.5);
background-color: white;
border-radius: 5px;
z-index: 10;
visibility: hidden;
padding: 4px 0px;
}
.tabsAside nav hr
{
border: none;
height: 1px;
background-color: lightgray;
}
.tabsAside nav button
{
text-align: start;
padding: 0px 10px;
width: 100%;
height: 32px;
font-family: 'Segoe UI' ,'DefaultFont';
}
.tabsAside nav button:hover
{
background-color: #eeee;
}
.tabsAside button + nav:active,
.tabsAside button:focus + nav
{
@@ -91,7 +107,7 @@
.btn
{
background-repeat: no-repeat;
background-size: 15px;
background-size: 12px;
background-position: center;
}