mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-02-10 11:48:37 -05:00
122 lines
1.9 KiB
CSS
122 lines
1.9 KiB
CSS
/**
|
|
* 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;
|
|
}
|