privatebin.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. #qrcodemodalClose {
  15. float: right;
  16. }
  17. #qrcode-display {
  18. width: 200px;
  19. height: 200px;
  20. margin: auto;
  21. }
  22. #pastelink {
  23. display: inline;
  24. }
  25. #pastelink > a {
  26. word-wrap: break-word;
  27. }
  28. #preview {
  29. margin-bottom: 10px;
  30. }
  31. #message, .replymessage {
  32. font-family: monospace;
  33. resize: vertical;
  34. }
  35. #nickname {
  36. margin: 5px 0;
  37. }
  38. #comments, #comments button {
  39. margin-bottom: 10px;
  40. }
  41. .comment {
  42. border-left: 1px solid #ccc;
  43. padding: 5px 0 5px 10px;
  44. transition: background-color 0.75s ease-out;
  45. }
  46. .dropdown-menu {
  47. --bs-dropdown-min-width: 23rem;
  48. }
  49. [data-bs-theme=light] pre, [data-bs-theme=light] .card {
  50. background-color: RGBA(var(--bs-light-rgb), var(--bs-bg-opacity, 1));
  51. }
  52. li.L0, li.L1, li.L2, li.L3, li.L4, li.L5, li.L6, li.L7, li.L8, li.L9 {
  53. color: revert !important;
  54. list-style-type: decimal !important;
  55. }
  56. [data-bs-theme=dark] li.L1, [data-bs-theme=dark] li.L3, [data-bs-theme=dark] li.L5,
  57. [data-bs-theme=dark] li.L7, [data-bs-theme=dark] li.L9 {
  58. background-color: var(--bs-gray-dark) !important;
  59. }
  60. .text-right button {
  61. float: right;
  62. }
  63. html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
  64. float: left;
  65. }