2024-04-01 18:59:28 +02:00
|
|
|
/**
|
|
|
|
* PrivateBin
|
|
|
|
*
|
2024-04-23 21:49:57 +02:00
|
|
|
* Cascading style sheets for bootstrap 5 template.
|
2024-04-01 18:59:28 +02:00
|
|
|
*
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
|
2024-04-23 21:49:57 +02:00
|
|
|
@import url("../common.css");
|
2024-04-18 21:36:43 +02:00
|
|
|
|
2024-04-23 21:49:57 +02:00
|
|
|
.hidden {
|
|
|
|
display: none !important;
|
2024-04-18 21:36:43 +02:00
|
|
|
}
|
|
|
|
|
2024-05-09 17:00:30 +02:00
|
|
|
.dropdown-menu {
|
|
|
|
--bs-dropdown-min-width: 23rem;
|
|
|
|
}
|
|
|
|
|
2024-05-09 17:53:26 +02:00
|
|
|
[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;
|
2024-04-18 21:36:43 +02:00
|
|
|
list-style-type: decimal !important;
|
|
|
|
}
|
|
|
|
|
2024-05-09 17:53:26 +02:00
|
|
|
[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;
|
|
|
|
}
|
|
|
|
|
2024-04-18 21:36:43 +02:00
|
|
|
.text-right button {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
html[dir="rtl"] #deletelink, html[dir="rtl"] #qrcodemodalClose {
|
|
|
|
float: left;
|
|
|
|
}
|
2024-12-28 18:42:46 +02:00
|
|
|
|
|
|
|
#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;
|
|
|
|
}
|