Files
Chamilo/plugin/h5p/cache-h5p/launch/source-wordsmatch/H5P.JoubelUI-1.3/css/joubel-speech-bubble.css
T
Xes 73154ae174
Behat tests 1.11.x 🐞 / PHP 7.4 Test on ubuntu-latest (push) Canceled after 0s
PHP-CS-Fixer / composer_install (7.4) (push) Canceled after 0s
Chamilo 1.11.40 (ZIP oficial v1.11.40)
Fuente: https://github.com/chamilo/chamilo-lms/releases/download/v1.11.40/chamilo-1.11.40.zip
sha256: 1cf4bf2cc7bae1ef1a1eff643235db1d552f78ddf4b6dd1e2d2dac9868679439
Snapshot independiente (rama huerfana); diffable vs 1.11.38. vendor incluido.
2026-08-06 17:59:45 +02:00

51 lines
1.1 KiB
CSS

@CHARSET "UTF-8";
.joubel-speech-bubble {
position: absolute;
color: #333;
z-index: 301;
margin-top: 0.45em;
min-width: 1em;
opacity: 0;
transition: opacity 0.5s ease;
}
.joubel-speech-bubble p {
margin: 0.75em 0;
}
.joubel-speech-bubble p:first-child {
margin-top: 0.25em;
}
.joubel-speech-bubble p:last-child {
margin-bottom: 0.25em;
}
.joubel-speech-bubble.show {
opacity: 1;
}
.joubel-speech-bubble-inner {
background: #fbfbfb;
box-shadow: 0 0 0.5em #2c2c2c;
border-radius: 0.5em;
padding: 0.2em 0.5em;
text-align: left;
position: relative;
word-wrap: break-word; /* Long words have to break */
z-index: 1;
}
.joubel-speech-bubble-inner-tail,
.joubel-speech-bubble-tail {
position: absolute;
/* Setting these in pixels is intentional. We use it when calculating placement of bubble */
width: 12px;
height: 12px;
background: #fbfbfb;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg);
z-index: -1;
}
.joubel-speech-bubble-tail {
box-shadow: 0 0 0.5em #2c2c2c;
}