paste/frontend/static/paste.css
Joe Ma c5569ea30f
Update paste modal sizing and scrolling
Signed-off-by: Joe Ma <rikkaneko23@gmail.com>
2024-02-04 22:46:11 +08:00

41 lines
No EOL
1.1 KiB
CSS

/*
* This file is part of paste.
* Copyright (c) 2023 Joe Ma <rikkaneko23@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
.card-header .fa-chevron-down {
transition: .3s transform ease-in-out;
}
.card-header .collapsed .fa-chevron-down {
transform: rotate(90deg);
}
#paste_info_table td.col-6 {
max-width: 200px;
}
#paste_info_title {
overflow: scroll;
white-space: nowrap;
scrollbar-width: none; /* Firefox */
}
#paste_info_title::-webkit-scrollbar {
width: 0px;
height: 0px;
background: transparent;
}