[bug] fix tile control border radius on top orientation

This commit is contained in:
zombieFox 2019-09-11 18:48:58 +01:00
parent 0fd7618d5c
commit dff78ed962
4 changed files with 13 additions and 5 deletions

View File

@ -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": {

View File

@ -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
}

View File

@ -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(".");

View File

@ -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"