mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-07 15:27:43 +08:00
41 lines
626 B
JavaScript
41 lines
626 B
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
window = require('window'),
|
|
Opentip = window.Opentip
|
|
;
|
|
|
|
Opentip.styles.rainloop = {
|
|
'extends': 'standard',
|
|
'fixed': true,
|
|
'target': true,
|
|
|
|
'showOn': 'mouseover click',
|
|
'removeElementsOnHide': true,
|
|
|
|
'background': '#fff',
|
|
'shadow': false,
|
|
|
|
'borderColor': '#999',
|
|
'borderRadius': 2,
|
|
'borderWidth': 1
|
|
};
|
|
|
|
Opentip.styles.rainloopTip = {
|
|
'extends': 'rainloop',
|
|
'stemLength': 3,
|
|
'stemBase': 5,
|
|
'group': 'rainloopTips'
|
|
};
|
|
|
|
Opentip.styles.rainloopErrorTip = {
|
|
'extends': 'rainloop',
|
|
'className': 'rainloopErrorTip'
|
|
};
|
|
|
|
module.exports = Opentip;
|
|
|
|
}());
|