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

Patch 2.0.5 (#88)

Fixed context menu position on scrolling
This commit is contained in:
2021-09-17 15:40:35 +03:00
committed by GitHub
parent 9c734f7495
commit aa6e88146b
4 changed files with 9 additions and 3 deletions
+2 -1
View File
@@ -209,7 +209,8 @@
.collectionSet > .header > div > nav .collectionSet > .header > div > nav
{ {
width: 250px; width: 250px;
right: 60px; right: 0px;
top: 35px;
} }
/* Tabs collection */ /* Tabs collection */
+5
View File
@@ -73,6 +73,11 @@
} }
/* Context menus style */ /* Context menus style */
.tabsAside .contextContainer
{
position: relative;
}
.tabsAside nav .tabsAside nav
{ {
user-select: none; user-select: none;
+1 -1
View File
@@ -266,7 +266,7 @@ function AddCollection(collection, thumbnails)
"<div class='header'>" + "<div class='header'>" +
"<input type='text' value='" + (collection.name ?? new Date(collection.timestamp).toDateString()) + "'/>" + "<input type='text' value='" + (collection.name ?? new Date(collection.timestamp).toDateString()) + "'/>" +
"<a loc='restoreTabs' class='restoreCollection'>Restore tabs</a>" + "<a loc='restoreTabs' class='restoreCollection'>Restore tabs</a>" +
"<div>" + "<div class='contextContainer'>" +
"<button loc_alt='more' class='btn more' title='More...'>&#xE712;</button>" + "<button loc_alt='more' class='btn more' title='More...'>&#xE712;</button>" +
"<nav>" + "<nav>" +
"<button loc='restoreNoRemove' class='restoreCollection noDelete'>Restore without removing</button>" + "<button loc='restoreNoRemove' class='restoreCollection noDelete'>Restore without removing</button>" +
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "__MSG_name__", "name": "__MSG_name__",
"version": "2.0.4", "version": "2.0.5",
"manifest_version": 2, "manifest_version": 2,
"description": "__MSG_description__", "description": "__MSG_description__",
"author": "__MSG_author__", "author": "__MSG_author__",