mirror of
https://github.com/PR0M3TH3AN/bitvid.git
synced 2026-03-13 22:33:29 +00:00
781 lines
15 KiB
CSS
781 lines
15 KiB
CSS
:root {
|
|
--color-bg: #0f172a;
|
|
--color-card: #1e293b;
|
|
--color-primary: #fe0032;
|
|
--color-secondary: #ff93a5;
|
|
--color-card-critical: #3f0b13;
|
|
--color-text: #f8fafc;
|
|
--color-muted: #94a3b8;
|
|
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
|
|
--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
|
|
--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
|
|
--modal-motion-duration: 160ms;
|
|
--scrollbar-width: 8px;
|
|
--scrollbar-track: rgba(255, 255, 255, 0.1);
|
|
--scrollbar-thumb: rgba(255, 255, 255, 0.3);
|
|
--scrollbar-thumb-hover: rgba(255, 255, 255, 0.4);
|
|
}
|
|
|
|
/* Global scrollbar styling */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--scrollbar-thumb) transparent;
|
|
}
|
|
|
|
*::-webkit-scrollbar {
|
|
width: var(--scrollbar-width);
|
|
height: var(--scrollbar-width);
|
|
}
|
|
|
|
*::-webkit-scrollbar-track {
|
|
background: var(--scrollbar-track);
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb {
|
|
background: var(--scrollbar-thumb);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
*::-webkit-scrollbar-thumb:hover {
|
|
background: var(--scrollbar-thumb-hover);
|
|
}
|
|
|
|
/* Core Styles */
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
background-color: var(--color-bg);
|
|
color: var(--color-text);
|
|
line-height: 1.5;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow-x: hidden; /* Disable horizontal scrolling */
|
|
}
|
|
|
|
header {
|
|
margin-bottom: 2rem;
|
|
padding: 1rem 0;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
header img {
|
|
height: 6rem;
|
|
width: auto;
|
|
max-width: none;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1480px;
|
|
margin: 0 auto;
|
|
padding: 1rem;
|
|
}
|
|
|
|
/* Video Grids */
|
|
#videoList {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
gap: 2rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
/* Subscriptions grid: same pattern as #videoList */
|
|
#subscriptionsVideoList {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
gap: 2rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
/* Now also match for channelVideoList (channel profile) */
|
|
#channelVideoList {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
|
|
gap: 2rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
/* Video Cards */
|
|
.video-card {
|
|
background-color: var(--color-card);
|
|
border-radius: 0.75rem;
|
|
overflow: hidden;
|
|
transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
box-shadow: var(--shadow-md);
|
|
}
|
|
|
|
.video-card[data-owner-is-viewer="false"][data-url-health-state="offline"][data-stream-health-state="unhealthy"] {
|
|
display: none;
|
|
}
|
|
|
|
.video-card[data-owner-is-viewer="true"][data-url-health-state="offline"][data-stream-health-state="unhealthy"] {
|
|
background-color: var(--color-card-critical);
|
|
box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.35), var(--shadow-md);
|
|
}
|
|
|
|
.video-card[data-owner-is-viewer="true"][data-url-health-state="offline"][data-stream-health-state="unhealthy"]:hover {
|
|
box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.45), var(--shadow-lg);
|
|
}
|
|
|
|
.video-card--enter {
|
|
opacity: 0;
|
|
animation: video-card-fade-in 220ms ease-out forwards;
|
|
}
|
|
|
|
@keyframes video-card-fade-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(8px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
/*
|
|
Thumbnails start transparent and fade in the first time they finish loading.
|
|
`data-thumbnail-loaded` is cleared by js/index.js once the animation completes
|
|
so re-rendering the same element later does not replay the transition and cause
|
|
a distracting flash.
|
|
*/
|
|
[data-video-thumbnail][data-thumbnail-loaded="true"] {
|
|
animation: video-thumbnail-fade-in 220ms ease-out forwards;
|
|
}
|
|
|
|
@keyframes video-thumbnail-fade-in {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
/*
|
|
Generic fade-in utility for chrome elements (sidebar, header controls, etc.).
|
|
js/index.js listens for the `interface-fade-in` animation finishing and removes
|
|
the temporary classes so that once an element has gracefully appeared it stays
|
|
opaque even if the DOM is re-used or re-parented later.
|
|
*/
|
|
|
|
.fade-in {
|
|
opacity: 0;
|
|
animation: interface-fade-in 280ms ease-out forwards;
|
|
animation-delay: var(--fade-in-delay, 0ms);
|
|
}
|
|
|
|
.fade-in-delay-100 {
|
|
--fade-in-delay: 100ms;
|
|
}
|
|
|
|
.fade-in-delay-200 {
|
|
--fade-in-delay: 200ms;
|
|
}
|
|
|
|
.fade-in-delay-300 {
|
|
--fade-in-delay: 300ms;
|
|
}
|
|
|
|
.fade-in-delay-400 {
|
|
--fade-in-delay: 400ms;
|
|
}
|
|
|
|
@keyframes interface-fade-in {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.video-card--enter,
|
|
.fade-in {
|
|
opacity: 1;
|
|
animation: none;
|
|
}
|
|
|
|
[data-video-thumbnail][data-thumbnail-loaded="true"] {
|
|
animation: none;
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.video-card:hover {
|
|
transform: translateY(-4px);
|
|
box-shadow: var(--shadow-lg);
|
|
}
|
|
|
|
.video-card .thumbnail-container {
|
|
position: relative;
|
|
padding-top: 56.25%;
|
|
background-color: #0f172a;
|
|
}
|
|
|
|
.video-card img.thumbnail {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.video-card .details {
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.video-card h3 {
|
|
font-size: 1.125rem;
|
|
font-weight: 600;
|
|
color: var(--color-text);
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
/* Modal Player */
|
|
#playerModal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: rgb(0 0 0 / 0.9); /* You can adjust opacity if needed */
|
|
z-index: 50;
|
|
display: none; /* Hidden by default */
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
overscroll-behavior: contain;
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px); /* For Safari support */
|
|
}
|
|
|
|
#nostrFormModal,
|
|
#profileModal,
|
|
#uploadModal {
|
|
backdrop-filter: blur(10px);
|
|
-webkit-backdrop-filter: blur(10px); /* For Safari */
|
|
}
|
|
|
|
/* If you ever want to show it, add ".flex" class dynamically */
|
|
#playerModal.flex {
|
|
display: flex;
|
|
}
|
|
|
|
/* Modal Content Container */
|
|
.modal-content {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #0f172a;
|
|
animation: fadeIn var(--modal-motion-duration) ease-out;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.modal-content {
|
|
animation-duration: 1ms;
|
|
}
|
|
}
|
|
|
|
/* Video Container */
|
|
.video-container {
|
|
width: 100%;
|
|
background-color: black;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 51;
|
|
}
|
|
|
|
/* Modal Video */
|
|
#modalVideo {
|
|
width: 100%;
|
|
aspect-ratio: 16/9;
|
|
background-color: black;
|
|
}
|
|
|
|
/* Video Info Section */
|
|
.video-info {
|
|
padding: 1rem;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
/* Responsive Adjustments */
|
|
@media (min-width: 768px) {
|
|
#playerModal {
|
|
padding: 2rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.modal-content {
|
|
max-width: 64rem;
|
|
max-height: calc(100vh - 4rem); /* Account for padding */
|
|
border-radius: 0.5rem;
|
|
overflow: visible;
|
|
}
|
|
|
|
.video-container {
|
|
position: relative;
|
|
}
|
|
}
|
|
|
|
#modalNav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 60;
|
|
}
|
|
|
|
.modal-actions {
|
|
margin-left: auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 0.5rem;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.modal-actions__overflow {
|
|
position: relative;
|
|
overflow: visible;
|
|
}
|
|
|
|
[data-more-menu="true"] {
|
|
z-index: 70;
|
|
}
|
|
|
|
/* Mobile-specific styles */
|
|
@media (max-width: 767px) {
|
|
#playerModal {
|
|
padding: 0;
|
|
}
|
|
|
|
.modal-content {
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
/* Progress Bars */
|
|
.progress-bar {
|
|
width: 100%;
|
|
height: 0.5rem;
|
|
background-color: rgb(255 255 255 / 0.1);
|
|
border-radius: 9999px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.progress-bar-fill {
|
|
height: 100%;
|
|
background-color: var(--color-primary);
|
|
transition: width 0.3s ease-out;
|
|
}
|
|
|
|
/* Forms & Inputs */
|
|
input,
|
|
textarea {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
background-color: var(--color-bg);
|
|
border: 1px solid rgb(255 255 255 / 0.1);
|
|
border-radius: 0.5rem;
|
|
color: var(--color-text);
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
input:focus,
|
|
textarea:focus {
|
|
outline: none;
|
|
border-color: var(--color-primary);
|
|
ring: 2px var(--color-primary);
|
|
}
|
|
|
|
/* -------------------------------------------
|
|
COMMENTED OUT the 'button:not(.icon-button)'
|
|
global rule that overrides your circles
|
|
--------------------------------------------
|
|
|
|
button:not(.icon-button) {
|
|
padding: 0.75rem 1.5rem;
|
|
background-color: var(--color-primary);
|
|
color: white;
|
|
border-radius: 0.5rem;
|
|
font-weight: 500;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
button:not(.icon-button):hover {
|
|
background-color: var(--color-secondary);
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
button:not(.icon-button):focus {
|
|
outline: none;
|
|
ring: 2px var(--color-primary);
|
|
}
|
|
*/
|
|
|
|
/* Utility Classes */
|
|
.line-clamp-2 {
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.hidden {
|
|
display: none;
|
|
}
|
|
|
|
/* Notifications */
|
|
/* Base styling without a forced display */
|
|
#errorContainer,
|
|
#successContainer {
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
margin-bottom: 1rem;
|
|
align-items: center; /* Keep the rest of your styling */
|
|
}
|
|
|
|
/* When not hidden, display as flex */
|
|
#errorContainer:not(.hidden),
|
|
#successContainer:not(.hidden) {
|
|
display: flex;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 640px) {
|
|
#videoList {
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.container {
|
|
padding: 0.75rem;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
margin-top: 4rem;
|
|
padding-top: 2rem;
|
|
}
|
|
|
|
footer a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
footer a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* Disclaimer Modal Styles */
|
|
#disclaimerModal {
|
|
position: fixed;
|
|
inset: 0;
|
|
background-color: rgb(0 0 0 / 0.9);
|
|
z-index: 50;
|
|
/* remove display: none; */
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow-y: auto;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
#disclaimerModal.hidden {
|
|
display: none !important;
|
|
}
|
|
|
|
#disclaimerModal .modal-content {
|
|
width: min(960px, calc(100% - 2rem));
|
|
max-height: min(90vh, 820px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--color-bg);
|
|
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.45);
|
|
}
|
|
|
|
#disclaimerModal .modal-header {
|
|
min-height: 1.5rem;
|
|
}
|
|
|
|
#disclaimerModal .modal-body {
|
|
padding: 1.5rem;
|
|
flex: 1;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#disclaimerModal .modal-footer {
|
|
padding: 1.25rem 1.5rem 1.75rem;
|
|
background-color: #1a2234;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/* Responsive Adjustments for Disclaimer Modal */
|
|
@media (min-width: 768px) {
|
|
#disclaimerModal {
|
|
padding: 2rem;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#disclaimerModal .modal-body {
|
|
padding: 2rem 2.5rem 1.5rem;
|
|
max-height: calc(90vh - 5rem);
|
|
}
|
|
|
|
#disclaimerModal .modal-footer {
|
|
padding: 1.5rem 2.5rem 2rem;
|
|
}
|
|
}
|
|
|
|
/* Mobile-specific styles for Disclaimer Modal */
|
|
@media (max-width: 767px) {
|
|
#disclaimerModal {
|
|
padding: 0;
|
|
}
|
|
|
|
#disclaimerModal .modal-content {
|
|
min-height: 100vh;
|
|
border-radius: 0;
|
|
max-height: none;
|
|
width: 100%;
|
|
}
|
|
|
|
#disclaimerModal .modal-body {
|
|
padding: 1.5rem 1.5rem 1rem;
|
|
max-height: none;
|
|
}
|
|
|
|
#disclaimerModal .modal-footer {
|
|
padding: 1rem 1.5rem 2rem;
|
|
}
|
|
}
|
|
|
|
/* Override default button styles for back button */
|
|
.back-button {
|
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
padding: 0 !important;
|
|
color: rgb(209 213 219) !important;
|
|
transform: none !important;
|
|
}
|
|
|
|
.back-button:hover {
|
|
background: rgba(0, 0, 0, 0.7) !important;
|
|
color: white !important;
|
|
}
|
|
|
|
/* Modal Container */
|
|
.modal-container {
|
|
padding: 0;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.modal-container {
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
|
|
/* Video info cards */
|
|
.video-info .bg-gray-800\/50 {
|
|
background-color: rgb(31 41 55 / 0.5);
|
|
backdrop-filter: blur(4px);
|
|
}
|
|
|
|
/* Circular Icon Buttons */
|
|
.icon-button {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 2.5rem; /* 40px */
|
|
height: 2.5rem; /* 40px */
|
|
line-height: 0;
|
|
background-color: #3f3f46; /* Gray 700 */
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 9999px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s, box-shadow 0.2s;
|
|
}
|
|
|
|
.icon-button:hover {
|
|
background-color: #52525b; /* Gray 600 */
|
|
}
|
|
|
|
.icon-button:focus,
|
|
.icon-button:active {
|
|
outline: none;
|
|
box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.6);
|
|
}
|
|
|
|
.icon-image {
|
|
width: 1.25rem; /* 20px */
|
|
height: 1.25rem; /* 20px */
|
|
pointer-events: none;
|
|
}
|
|
|
|
/* Ratio 16:9 Container */
|
|
.ratio-16-9 {
|
|
position: relative;
|
|
width: 100%;
|
|
padding-top: 56.25%;
|
|
background-color: #1e293b;
|
|
}
|
|
.ratio-16-9 > img {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* Sidebar default states */
|
|
#sidebar {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 16rem; /* Tailwind's w-64 */
|
|
height: 100vh;
|
|
background-color: #0f172a;
|
|
overflow-y: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
transition: transform 0.3s ease;
|
|
}
|
|
|
|
/* Mobile (max-width: 767px): Hide sidebar by default */
|
|
@media (max-width: 767px) {
|
|
#sidebar {
|
|
transform: translateX(-100%);
|
|
}
|
|
/* When the sidebar-open class is added, slide the sidebar in */
|
|
#sidebar.sidebar-open {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
/* Optionally shift main content when sidebar is open */
|
|
#app.sidebar-open {
|
|
transform: translateX(16rem);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
}
|
|
|
|
/* Desktop (min-width: 768px): Always show the sidebar */
|
|
@media (min-width: 768px) {
|
|
#sidebar {
|
|
transform: translateX(0) !important;
|
|
}
|
|
}
|
|
|
|
/* Collapsed/expanded classes if needed on desktop */
|
|
.sidebar-collapsed {
|
|
width: 4rem;
|
|
}
|
|
.sidebar-expanded {
|
|
width: 16rem;
|
|
}
|
|
.sidebar-collapsed .sidebar-text {
|
|
display: none;
|
|
}
|
|
|
|
/* Example: customizing the border & background in the sidebar */
|
|
#sidebar hr {
|
|
border-color: rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
/* Sidebar drop-up menu styling */
|
|
.sidebar-dropup {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.sidebar-dropup-panel {
|
|
background-color: #1f2937; /* gray-800 */
|
|
border: 1px solid rgba(148, 163, 184, 0.25);
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 18px 35px rgba(15, 23, 42, 0.45);
|
|
max-height: 0;
|
|
opacity: 0;
|
|
overflow: hidden;
|
|
pointer-events: none;
|
|
transform: translateY(16px);
|
|
transition: max-height 0.35s ease, opacity 0.25s ease, transform 0.35s ease;
|
|
}
|
|
|
|
.sidebar-dropup-panel__inner {
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.sidebar-dropup-panel--expanded {
|
|
max-height: 640px;
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
.sidebar-dropup-trigger {
|
|
align-items: center;
|
|
background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(14, 116, 144, 0.35));
|
|
border: 1px solid rgba(148, 163, 184, 0.35);
|
|
border-radius: 9999px;
|
|
color: #f8fafc;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 0.75rem 1.25rem;
|
|
transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
|
|
width: 100%;
|
|
}
|
|
|
|
.sidebar-dropup-trigger:hover,
|
|
.sidebar-dropup-trigger:focus {
|
|
border-color: rgba(148, 163, 184, 0.6);
|
|
box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);
|
|
outline: none;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.sidebar-dropup-trigger__content {
|
|
align-items: center;
|
|
display: flex;
|
|
}
|
|
.edit-field-button {
|
|
align-items: center;
|
|
background-color: #1f2937;
|
|
border-radius: 0.5rem;
|
|
color: #e2e8f0;
|
|
display: inline-flex;
|
|
font-size: 0.75rem;
|
|
font-weight: 600;
|
|
justify-content: center;
|
|
padding: 0.5rem 0.85rem;
|
|
transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
|
|
}
|
|
|
|
.edit-field-button:hover,
|
|
.edit-field-button:focus {
|
|
background-color: #334155;
|
|
color: #f8fafc;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.locked-input {
|
|
background-color: rgba(31, 41, 55, 0.75) !important;
|
|
border-color: rgba(55, 65, 81, 0.9) !important;
|
|
color: #94a3b8 !important;
|
|
cursor: default;
|
|
}
|
|
|
|
.locked-input:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
}
|