| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /**
- * PrivateBin
- *
- * Cascading style sheets for bootstrap 5 template.
- *
- * @link https://github.com/PrivateBin/PrivateBin
- * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
- * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
- */
- @import url("../common.css");
- .hidden {
- display: none !important;
- }
- #qrcodemodalClose {
- float: right;
- }
- #qrcode-display {
- width: 200px;
- height: 200px;
- margin: auto;
- }
- #pastelink {
- display: inline;
- }
- #pastelink > a {
- word-wrap: break-word;
- }
- #preview {
- margin-bottom: 10px;
- }
- #message {
- height: 70vh;
- }
- #message, .replymessage {
- font-family: monospace;
- resize: vertical;
- }
- #nickname {
- margin: 5px 0;
- }
- #comments, #comments button {
- margin-bottom: 10px;
- }
- .comment {
- border-left: 1px solid #ccc;
- padding: 5px 0 5px 10px;
- transition: background-color 0.75s ease-out;
- }
- .dropdown-menu {
- --bs-dropdown-min-width: 23rem;
- }
- [data-bs-theme=light] pre, [data-bs-theme=light] .card {
- background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
- }
- li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 {
- color: revert !important;
- list-style-type: decimal !important;
- }
- [data-bs-theme=dark] li.L1, [data-bs-theme=dark] li.L3, [data-bs-theme=dark] li.L5,
- [data-bs-theme=dark] li.L7, [data-bs-theme=dark] li.L9 {
- background-color: var(--bs-gray-dark) !important;
- }
- .text-right button {
- float: right;
- }
- html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
- float: left;
- }
- #prettyprint {
- padding-right: 30px;
- }
- #prettymessageCopyBtn {
- position: absolute;
- top: 5px;
- right: 5px;
- width: 25px;
- height: 25px;
- padding: 0;
- background: none;
- border: none;
- z-index: 1;
- }
- #prettymessageCopyBtn svg {
- width: 100%;
- }
- #copyIcon {
- fill: rgb(145, 152, 161);
- opacity: 0.4;
- transition: all 0.3s ease;
- }
- #copyIcon:hover {
- opacity: 1;
- }
- #copySuccessIcon {
- fill: rgb(63, 185, 80);
- display: none;
- }
|