cryptpad/customize.dist/src/less2/include/tippy.less

35 lines
960 B
Plaintext
Raw Normal View History

@import (reference) './colortheme-all.less';
2018-04-12 17:08:08 +00:00
.tippy_main() {
2018-07-14 13:15:23 +00:00
--LessLoader_require: LessLoader_currentFile();
}
& {
2018-04-12 17:08:08 +00:00
.tippy-tooltip.cryptpad-theme {
/* Your styling here. Example: */
2019-11-06 15:24:57 +00:00
background-color: @cryptpad_color_light_grey;
border-radius: 0px;
// box-shadow: 2px 2px 10px #000;
// font-weight: bold;
2018-04-12 17:08:08 +00:00
color: #333;
2018-05-03 16:25:44 +00:00
overflow-wrap: break-word;
2018-04-12 17:08:08 +00:00
[x-circle] {
background-color: unset;
}
}
2019-11-06 15:24:57 +00:00
.tippy-popper {
2019-11-08 16:54:07 +00:00
@arrow-color: @cryptpad_color_light_grey;
2019-11-06 15:24:57 +00:00
&[x-placement^='top'] .tippy-arrow {
border-top-color: @arrow-color;
}
&[x-placement^='bottom'] .tippy-arrow {
border-bottom-color: @arrow-color;
}
&[x-placement^='left'] .tippy-arrow {
border-left-color: @arrow-color;
}
&[x-placement^='right'] .tippy-arrow {
border-right-color: @arrow-color;
}
}
2018-04-12 17:08:08 +00:00
}