mirror of https://github.com/xwiki-labs/cryptpad
Lint compliance
This commit is contained in:
parent
e2b9cf1c40
commit
881c36214f
|
@ -1,6 +1,7 @@
|
|||
node_modules/
|
||||
www/bower_components/
|
||||
www/common/pdfjs/
|
||||
www/common/tippy/
|
||||
|
||||
server.js
|
||||
www/common/media-tag.js
|
||||
|
@ -8,7 +9,6 @@ www/scratch
|
|||
|
||||
www/common/toolbar.js
|
||||
www/common/hyperscript.js
|
||||
www/common/tippy.min.js
|
||||
|
||||
www/pad/wysiwygarea-plugin.js
|
||||
www/pad/mediatag-plugin.js
|
||||
|
|
|
@ -109,10 +109,6 @@
|
|||
}
|
||||
|
||||
.dialog, .alert {
|
||||
.bright {
|
||||
//color: @colortheme_light-base;
|
||||
}
|
||||
|
||||
& > div {
|
||||
background-color: @alertify-dialog-bg;
|
||||
&.half {
|
||||
|
|
|
@ -5,51 +5,10 @@
|
|||
/* Your styling here. Example: */
|
||||
background-color: white;
|
||||
box-shadow: 2px 2px 10px #000;
|
||||
box-shadow: 2px 2px 5px #000;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
[x-circle] {
|
||||
background-color: unset;
|
||||
}
|
||||
}
|
||||
/*
|
||||
.tippy-popper[x-placement=top] {
|
||||
.tippy-tooltip.cryptpad-theme {
|
||||
margin-bottom: 12px;
|
||||
[x-arrow] {
|
||||
bottom: -12px;
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
.tippy-popper[x-placement=bottom] {
|
||||
.tippy-tooltip.cryptpad-theme {
|
||||
margin-top: 12px;
|
||||
[x-arrow] {
|
||||
top: -12px;
|
||||
transform: scale(2);
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
.tippy-popper[x-placement=right] {
|
||||
max-width: 200px;
|
||||
/* .tippy-tooltip.cryptpad-theme {
|
||||
margin-left: 12px;
|
||||
[x-arrow] {
|
||||
left: -12px;
|
||||
transform: scale(2);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
.tippy-popper[x-placement=left] {
|
||||
max-width: 200px;
|
||||
/* .tippy-tooltip.cryptpad-theme {
|
||||
margin-right: 12px;
|
||||
[x-arrow] {
|
||||
right: -12px;
|
||||
transform: scale(2);
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
|
|
@ -539,16 +539,16 @@ define([
|
|||
|
||||
var LOADING = 'cp-loading';
|
||||
|
||||
var getRandomTip = function () {
|
||||
/*var getRandomTip = function () {
|
||||
if (!Messages.tips || !Object.keys(Messages.tips).length) { return ''; }
|
||||
var keys = Object.keys(Messages.tips);
|
||||
var rdm = Math.floor(Math.random() * keys.length);
|
||||
return Messages.tips[keys[rdm]];
|
||||
};
|
||||
};*/
|
||||
UI.addLoadingScreen = function (config) {
|
||||
config = config || {};
|
||||
var loadingText = config.loadingText;
|
||||
var hideTips = config.hideTips || AppConfig.hideLoadingScreenTips;
|
||||
//var hideTips = config.hideTips || AppConfig.hideLoadingScreenTips;
|
||||
var hideLogo = config.hideLogo;
|
||||
var $loading, $container;
|
||||
if ($('#' + LOADING).length) {
|
||||
|
|
|
@ -1866,7 +1866,7 @@ define([
|
|||
var $creation = $('<div>', { id: 'cp-creation', tabindex: 1 }).appendTo($creationContainer);
|
||||
|
||||
// Title
|
||||
var colorClass = 'cp-icon-color-'+type;
|
||||
//var colorClass = 'cp-icon-color-'+type;
|
||||
//$creation.append(h('h2.cp-creation-title', Messages.newButtonTitle));
|
||||
$creation.append(h('h3.cp-creation-title', Messages['button_new'+type]));
|
||||
//$creation.append(h('h2.cp-creation-title.'+colorClass, Messages.newButtonTitle));
|
||||
|
|
Loading…
Reference in New Issue