Reduce the border size
This commit is contained in:
parent
e7072fe419
commit
919d8ec9a2
|
|
@ -125,7 +125,7 @@
|
||||||
|
|
||||||
#tarteaucitron .tarteaucitronBorder {
|
#tarteaucitron .tarteaucitronBorder {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 4px solid #333;
|
border: 2px solid #333;
|
||||||
border-top: 0;
|
border-top: 0;
|
||||||
height: auto;
|
height: auto;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
|
@ -433,7 +433,7 @@
|
||||||
|
|
||||||
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
|
#tarteaucitronAlertSmall #tarteaucitronCookiesListContainer #tarteaucitronCookiesList {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border: 4px solid #333;
|
border: 2px solid #333;
|
||||||
color: #333;
|
color: #333;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
height: auto;
|
height: auto;
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@ var scripts = document.getElementsByTagName('script'),
|
||||||
tarteaucitronNoAdBlocker = false;
|
tarteaucitronNoAdBlocker = false;
|
||||||
|
|
||||||
var tarteaucitron = {
|
var tarteaucitron = {
|
||||||
"version": 201.1,
|
"version": 201.3,
|
||||||
"cdn": cdn,
|
"cdn": cdn,
|
||||||
"user": {},
|
"user": {},
|
||||||
"lang": {},
|
"lang": {},
|
||||||
|
|
@ -621,7 +621,9 @@ var tarteaucitron = {
|
||||||
|
|
||||||
if (closeClass !== undefined) {
|
if (closeClass !== undefined) {
|
||||||
tarteaucitron.fallback([closeClass], function (elem) {
|
tarteaucitron.fallback([closeClass], function (elem) {
|
||||||
elem.style.display = 'none';
|
if (elem.id !== id) {
|
||||||
|
elem.style.display = 'none';
|
||||||
|
}
|
||||||
}, true);
|
}, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -654,7 +656,7 @@ var tarteaucitron = {
|
||||||
},
|
},
|
||||||
"jsSizing": function (type) {
|
"jsSizing": function (type) {
|
||||||
"use strict";
|
"use strict";
|
||||||
var start = 8,
|
var start = 10,
|
||||||
parent,
|
parent,
|
||||||
child,
|
child,
|
||||||
e = window,
|
e = window,
|
||||||
|
|
@ -663,7 +665,7 @@ var tarteaucitron = {
|
||||||
if (type === 'main') {
|
if (type === 'main') {
|
||||||
// height services list container
|
// height services list container
|
||||||
tarteaucitron.userInterface.css('tarteaucitronScrollbarParent', 'height', 'auto');
|
tarteaucitron.userInterface.css('tarteaucitronScrollbarParent', 'height', 'auto');
|
||||||
tarteaucitron.userInterface.css('tarteaucitronScrollbarParent', 'height', (document.getElementById('tarteaucitron').offsetHeight - document.getElementById('tarteaucitronClosePanel').offsetHeight - document.getElementById('tarteaucitronMainLineOffset').offsetHeight - 2) + 'px');
|
tarteaucitron.userInterface.css('tarteaucitronScrollbarParent', 'height', (document.getElementById('tarteaucitron').offsetHeight - document.getElementById('tarteaucitronClosePanel').offsetHeight - document.getElementById('tarteaucitronMainLineOffset').offsetHeight + 1) + 'px');
|
||||||
|
|
||||||
if (window.innerWidth === undefined) {
|
if (window.innerWidth === undefined) {
|
||||||
a = 'client';
|
a = 'client';
|
||||||
|
|
@ -688,7 +690,7 @@ var tarteaucitron = {
|
||||||
tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'bottom', (parseInt(document.getElementById('tarteaucitronAlertSmall').offsetHeight, 10) + 10) + 'px');
|
tarteaucitron.userInterface.css('tarteaucitronCookiesListContainer', 'bottom', (parseInt(document.getElementById('tarteaucitronAlertSmall').offsetHeight, 10) + 10) + 'px');
|
||||||
|
|
||||||
tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', 'auto');
|
tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', 'auto');
|
||||||
tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', (document.getElementById('tarteaucitronCookiesListContainer').offsetHeight - document.getElementById('tarteaucitronClosePanelCookie').offsetHeight - document.getElementById('tarteaucitronCookiesTitle').offsetHeight - 6) + 'px');
|
tarteaucitron.userInterface.css('tarteaucitronCookiesList', 'height', (document.getElementById('tarteaucitronCookiesListContainer').offsetHeight - document.getElementById('tarteaucitronClosePanelCookie').offsetHeight - document.getElementById('tarteaucitronCookiesTitle').offsetHeight - 2) + 'px');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue