mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-01-26 06:25:56 -05:00
c7195aaf9a
- fixes QR code height introducing space even when hidden in page layout - fix modals in bootstrap 5 (modal syntax changed heavily, no longer jQuery integrated) - hide and show tab-toggle depending on application state - don't encode HTML entities in translated messages containing kbd tags (in addition to links)
46 lines
1019 B
CSS
46 lines
1019 B
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;
|
|
}
|
|
|
|
.dropdown-menu {
|
|
--bs-dropdown-min-width: 23rem;
|
|
}
|
|
|
|
pre {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
[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;
|
|
}
|