privatebin.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. * PrivateBin
  3. *
  4. * Cascading style sheets for bootstrap 5 template.
  5. *
  6. * @link https://github.com/PrivateBin/PrivateBin
  7. * @copyright 2012 Sébastien SAUVAGE (sebsauvage.net)
  8. * @license https://www.opensource.org/licenses/zlib-license.php The zlib/libpng License
  9. */
  10. @import url("../common.css");
  11. .hidden {
  12. display: none !important;
  13. }
  14. .dropdown-menu {
  15. --bs-dropdown-min-width: 23rem;
  16. }
  17. [data-bs-theme=light] pre, [data-bs-theme=light] .card {
  18. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
  19. }
  20. li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 {
  21. color: revert !important;
  22. list-style-type: decimal !important;
  23. }
  24. [data-bs-theme=dark] li.L1, [data-bs-theme=dark] li.L3, [data-bs-theme=dark] li.L5,
  25. [data-bs-theme=dark] li.L7, [data-bs-theme=dark] li.L9 {
  26. background-color: var(--bs-gray-dark) !important;
  27. }
  28. .text-right button {
  29. float: right;
  30. }
  31. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  32. float: left;
  33. }
  34. #prettyprint {
  35. padding-right: 30px;
  36. }
  37. #prettymessageCopyBtn {
  38. position: absolute;
  39. top: 5px;
  40. right: 5px;
  41. width: 25px;
  42. height: 25px;
  43. padding: 0;
  44. background: none;
  45. border: none;
  46. z-index: 1;
  47. }
  48. #prettymessageCopyBtn svg {
  49. width: 100%;
  50. }
  51. #copyIcon {
  52. fill: rgb(145, 152, 161);
  53. opacity: 0.4;
  54. transition: all 0.3s ease;
  55. }
  56. #copyIcon:hover {
  57. opacity: 1;
  58. }
  59. #copySuccessIcon {
  60. fill: rgb(63, 185, 80);
  61. display: none;
  62. }