mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-06-25 20:11:27 +02:00
[bug] fix tile control border radius on top orientation
This commit is contained in:
parent
0fd7618d5c
commit
dff78ed962
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "nighttab",
|
||||
"version": "3.82.0",
|
||||
"version": "3.82.1",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
@ -337,11 +337,19 @@
|
||||
color: rgb(var(--theme-white));
|
||||
}
|
||||
|
||||
.link-control-item:first-child {
|
||||
.is-link-orientation-top .link-control-item:first-child {
|
||||
border-radius: var(--theme-radius) 0 0 0;
|
||||
}
|
||||
|
||||
.is-link-orientation-top .link-control-item:last-child {
|
||||
border-radius: 0 var(--theme-radius) 0 0
|
||||
}
|
||||
|
||||
.is-link-orientation-bottom .link-control-item:first-child {
|
||||
border-radius: 0 0 0 var(--theme-radius);
|
||||
}
|
||||
|
||||
.link-control-item:last-child {
|
||||
.is-link-orientation-bottom .link-control-item:last-child {
|
||||
border-radius: 0 0 var(--theme-radius) 0
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
var version = (function() {
|
||||
|
||||
var current = "3.82.0";
|
||||
var current = "3.82.1";
|
||||
|
||||
var compare = function(a, b) {
|
||||
var pa = a.split(".");
|
||||
|
@ -2,7 +2,7 @@
|
||||
"name": "nightTab",
|
||||
"short_name": "nightTab",
|
||||
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
|
||||
"version": "3.82.0",
|
||||
"version": "3.82.1",
|
||||
"manifest_version": 2,
|
||||
"chrome_url_overrides": {
|
||||
"newtab": "index.html"
|
||||
|
Loading…
x
Reference in New Issue
Block a user