mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2026-03-05 13:30:32 -05:00
# Conflicts: # i18n/ar.json # i18n/bg.json # i18n/ca.json # i18n/co.json # i18n/cs.json # i18n/de.json # i18n/el.json # i18n/en.json # i18n/es.json # i18n/et.json # i18n/fi.json # i18n/fr.json # i18n/he.json # i18n/hi.json # i18n/hu.json # i18n/id.json # i18n/it.json # i18n/ja.json # i18n/jbo.json # i18n/ko.json # i18n/ku.json # i18n/la.json # i18n/lt.json # i18n/nl.json # i18n/no.json # i18n/oc.json # i18n/pl.json # i18n/pt.json # i18n/ro.json # i18n/ru.json # i18n/sk.json # i18n/sl.json # i18n/sv.json # i18n/th.json # i18n/tr.json # i18n/uk.json # i18n/zh.json # lib/Configuration.php
77 lines
1.4 KiB
CSS
77 lines
1.4 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;
|
|
}
|
|
|
|
.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;
|
|
}
|