bfloydd_streams/styles.css

737 lines
16 KiB
CSS
Raw Normal View History

/*********************************************************
* GLOBAL STREAM INDICATOR STYLES
*********************************************************/
.streams-global-indicator {
display: inline-flex;
align-items: center;
padding: 4px 8px;
margin-left: 8px;
2025-09-25 18:39:01 +00:00
background: var(--interactive-normal);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
cursor: pointer;
font-size: 12px;
font-weight: 500;
color: var(--text-normal);
transition: all 0.2s ease;
user-select: none;
}
.streams-global-indicator:hover {
2025-09-25 18:39:01 +00:00
background: var(--interactive-hover);
border-color: var(--text-accent);
color: var(--text-accent);
}
.streams-global-indicator:active {
transform: scale(0.95);
}
2025-08-19 00:04:39 +00:00
2025-05-02 18:59:31 +00:00
/*********************************************************
* LAYOUT & CONTAINER STYLES
*********************************************************/
2025-06-08 01:34:14 +00:00
.streams-plugin-container {
2025-01-29 20:25:21 +00:00
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
padding: 20px;
}
2025-06-08 01:34:14 +00:00
.streams-plugin-card {
2025-01-29 20:25:21 +00:00
background-color: var(--background-secondary);
border-radius: 10px;
padding: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
2025-06-08 01:34:14 +00:00
.streams-plugin-card h3 {
2025-01-29 20:25:21 +00:00
margin-top: 0;
margin-bottom: 20px;
2025-05-02 01:10:42 +00:00
border-bottom: none;
2025-01-29 20:25:21 +00:00
padding-bottom: 10px;
}
2025-05-02 18:59:31 +00:00
/*********************************************************
2025-05-05 18:42:11 +00:00
* CALENDAR COMPONENT STYLES
2025-05-02 18:59:31 +00:00
*********************************************************/
.streams-bar-top-nav,
.streams-bar-header {
2025-06-26 02:28:25 +00:00
width: 100%;
box-sizing: border-box;
2025-02-03 23:18:11 +00:00
justify-content: space-between;
2025-06-26 02:28:25 +00:00
display: flex;
2025-02-03 23:18:11 +00:00
align-items: center;
}
.streams-bar-name {
2025-02-03 23:18:11 +00:00
font-weight: 600;
color: var(--text-normal);
}
.streams-bar-today-nav {
2025-02-03 23:18:11 +00:00
cursor: pointer;
padding: 4px 8px;
color: var(--text-accent);
font-weight: 600;
font-size: 12px;
}
.streams-bar-today-nav:hover {
2025-02-03 23:18:11 +00:00
color: var(--text-normal);
}
.streams-bar-component {
2025-09-25 01:10:47 +00:00
position: absolute;
2025-09-24 22:31:02 +00:00
top: 0;
left: 0;
right: 0;
z-index: 10000;
2025-02-03 23:18:11 +00:00
font-size: 12px;
2025-09-24 22:31:02 +00:00
margin: 0;
pointer-events: auto;
border-bottom: 1px solid var(--background-modifier-border);
display: flex;
align-items: center;
padding: 0 14px;
2025-09-25 18:39:01 +00:00
backdrop-filter: blur(8px);
2025-02-03 23:18:11 +00:00
}
2025-09-25 01:10:47 +00:00
/* Position relative to the content container that contains cm-panels */
.streams-markdown-view-content {
position: relative;
}
.streams-markdown-view-content .streams-bar-component {
2025-09-25 01:10:47 +00:00
position: absolute;
2025-09-25 01:25:41 +00:00
top: 10px;
2025-09-25 01:10:47 +00:00
}
2025-09-28 02:32:58 +00:00
/* Ensure workspace leaf content takes full height when our view is present */
.workspace-leaf-content:has(.streams-create-file-container) {
width: 100%;
}
2025-05-06 14:54:04 +00:00
2025-09-24 22:31:02 +00:00
.is-phone .streams-bar-component {
font-size: 11px;
}
2025-08-18 21:17:27 +00:00
.streams-bar-collapsed {
2025-09-24 22:31:02 +00:00
position: relative;
2025-02-03 23:18:11 +00:00
top: 0;
right: 0;
2025-09-24 22:31:02 +00:00
padding: 0;
transition: all 0.2s ease;
2025-09-25 18:39:01 +00:00
background-color: var(--background-primary);
/* border: 1px solid var(--background-modifier-border); */
/* border-radius: 6px; */
/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
2025-09-24 22:31:02 +00:00
min-width: 200px;
width: 100%;
text-align: left;
2025-02-03 23:18:11 +00:00
white-space: nowrap;
2025-02-04 14:21:49 +00:00
user-select: none;
2025-05-05 17:13:41 +00:00
z-index: 1000;
pointer-events: auto;
2025-09-24 22:31:02 +00:00
display: flex;
align-items: center;
justify-content: space-between;
flex: 1;
2025-09-29 01:47:34 +00:00
/* margin-bottom: 8px; */
2025-05-05 17:21:33 +00:00
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-08-16 16:54:07 +00:00
.streams-bar-nav-controls {
2025-08-16 16:54:07 +00:00
display: flex;
align-items: center;
2025-09-24 22:31:02 +00:00
justify-content: flex-start;
margin: 0;
background-color: transparent;
border-radius: 0;
padding: 0;
2025-08-16 16:54:07 +00:00
border: none;
2025-09-25 18:39:01 +00:00
gap: 8px;
2025-09-24 22:31:02 +00:00
flex: 1;
2025-08-16 16:54:07 +00:00
}
.streams-bar-day-nav {
2025-08-16 16:54:07 +00:00
display: flex;
align-items: center;
justify-content: center;
2025-09-24 22:31:02 +00:00
width: 28px;
height: 28px;
2025-09-25 18:39:01 +00:00
border-radius: 4px;
2025-09-24 22:31:02 +00:00
cursor: pointer;
color: var(--text-muted);
transition: all 0.2s ease;
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-normal);
2025-09-24 22:31:02 +00:00
border: 1px solid var(--background-modifier-border);
font-size: 14px;
font-weight: 500;
}
.streams-bar-day-nav:hover {
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
color: var(--text-normal);
border-color: var(--text-accent);
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-09-24 22:31:02 +00:00
.streams-bar-day-nav:active {
2025-09-24 22:31:02 +00:00
background-color: var(--interactive-accent-hover);
transform: scale(0.95);
}
.streams-bar-today-button {
2025-09-24 22:31:02 +00:00
white-space: nowrap;
flex: 0 0 auto;
text-align: center;
font-weight: 600;
color: var(--text-normal);
margin: 0 8px;
font-size: 15px;
min-width: 60px;
2025-08-16 16:54:07 +00:00
padding: 4px 8px;
border-radius: 4px;
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-normal);
border: 1px solid var(--background-modifier-border);
2025-09-25 01:35:23 +00:00
cursor: pointer;
2025-09-25 18:39:01 +00:00
transition: all 0.2s ease;
}
.streams-bar-today-button:hover {
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
border-color: var(--text-accent);
color: var(--text-accent);
2025-09-24 22:31:02 +00:00
}
2025-09-29 18:33:55 +00:00
/* .streams-today-button-expanded - Additional styles for expanded state if needed */
.streams-bar-change-stream {
2025-09-24 22:31:02 +00:00
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
2025-09-29 02:22:34 +00:00
padding: 5px 12px;
2025-09-25 18:39:01 +00:00
border-radius: 4px;
2025-08-16 16:54:07 +00:00
cursor: pointer;
2025-09-24 22:31:02 +00:00
transition: all 0.2s ease;
2025-08-16 16:54:07 +00:00
color: var(--text-muted);
2025-09-24 22:31:02 +00:00
margin: 0;
justify-content: center;
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-normal);
2025-09-24 22:31:02 +00:00
border: 1px solid var(--background-modifier-border);
font-weight: 500;
position: relative;
2025-08-16 16:54:07 +00:00
}
.streams-bar-change-stream:hover {
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
color: var(--text-normal);
border-color: var(--text-accent);
}
2025-09-29 18:33:55 +00:00
.streams-bar-change-stream-text {
font-size: 14px;
font-weight: 500;
color: inherit;
}
.streams-bar-home-button {
2025-09-25 01:35:23 +00:00
cursor: pointer;
transition: all 0.2s ease;
2025-09-25 18:39:01 +00:00
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 4px;
background-color: var(--interactive-normal);
border: 1px solid var(--background-modifier-border);
color: var(--text-muted);
}
.streams-bar-home-button:hover {
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
color: var(--text-normal);
border-color: var(--text-accent);
2025-09-25 01:35:23 +00:00
}
.streams-bar-settings-button {
2025-09-25 18:50:28 +00:00
cursor: pointer;
transition: all 0.2s ease;
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 4px;
background-color: var(--interactive-normal);
border: 1px solid var(--background-modifier-border);
color: var(--text-muted);
}
.streams-bar-settings-button:hover {
2025-09-25 18:50:28 +00:00
background-color: var(--interactive-hover);
color: var(--text-normal);
border-color: var(--text-accent);
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-08-16 16:54:07 +00:00
/* Streams dropdown styles */
.streams-bar-streams-dropdown {
2025-08-16 16:54:07 +00:00
position: absolute;
top: calc(100% + 8px);
right: 0;
width: auto;
min-width: 200px;
2025-09-25 18:39:01 +00:00
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
z-index: 10000;
overflow: visible;
2025-09-29 02:32:25 +00:00
display: none; /* Start hidden by default */
2025-08-16 16:54:07 +00:00
}
.streams-bar-stream-item {
2025-08-16 16:54:07 +00:00
display: flex;
align-items: center;
padding: 8px 12px;
cursor: pointer;
2025-09-25 18:39:01 +00:00
transition: all 0.2s ease;
2025-08-16 16:54:07 +00:00
border-bottom: 1px solid var(--background-modifier-border);
2025-09-25 18:39:01 +00:00
color: var(--text-normal);
2025-08-16 16:54:07 +00:00
}
.streams-bar-stream-item:last-child {
2025-08-16 16:54:07 +00:00
border-bottom: none;
2025-09-25 18:39:01 +00:00
border-radius: 0 0 6px 6px;
}
.streams-bar-stream-item:first-child {
2025-09-25 18:39:01 +00:00
border-radius: 6px 6px 0 0;
2025-08-16 16:54:07 +00:00
}
.streams-bar-stream-item:hover {
2025-08-16 16:54:07 +00:00
background-color: var(--interactive-hover);
2025-09-25 18:39:01 +00:00
color: var(--text-accent);
2025-08-16 16:54:07 +00:00
}
.streams-bar-stream-item-icon {
2025-08-16 16:54:07 +00:00
display: flex;
align-items: center;
margin-right: 8px;
}
.streams-bar-stream-item-icon svg {
2025-08-16 16:54:07 +00:00
width: 16px;
height: 16px;
color: var(--text-muted);
}
.streams-bar-stream-item-name {
2025-08-16 16:54:07 +00:00
font-size: 0.9em;
color: var(--text-normal);
font-weight: 500;
}
.streams-bar-stream-item-selected {
2025-08-16 16:54:07 +00:00
background-color: var(--interactive-accent);
color: var(--text-on-accent);
}
.streams-bar-stream-item-selected .streams-bar-stream-item-name {
2025-08-16 16:54:07 +00:00
color: var(--text-on-accent);
}
.streams-bar-stream-item-selected .streams-bar-stream-item-icon svg {
2025-08-16 16:54:07 +00:00
color: var(--text-on-accent);
}
.streams-bar-stream-item-checkmark {
2025-08-16 16:54:07 +00:00
display: flex;
align-items: center;
margin-left: auto;
}
.streams-bar-stream-item-checkmark svg {
2025-08-16 16:54:07 +00:00
width: 14px;
height: 14px;
color: var(--text-on-accent);
}
2025-09-24 22:31:02 +00:00
.streams-bar-expanded {
2025-09-24 22:31:02 +00:00
position: absolute;
top: 100%;
left: 0;
2025-02-03 23:18:11 +00:00
padding: 16px;
2025-09-25 01:35:23 +00:00
width: auto;
min-width: 264px;
2025-09-25 18:39:01 +00:00
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
2025-09-24 22:31:02 +00:00
border-radius: 0 0 8px 8px;
2025-09-25 18:39:01 +00:00
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
2025-02-03 23:18:11 +00:00
opacity: 0;
transition: all 0.3s ease;
2025-05-05 17:13:41 +00:00
z-index: 1005;
pointer-events: none;
2025-06-26 02:28:25 +00:00
display: flex;
flex-direction: column;
align-items: center;
2025-09-25 01:35:23 +00:00
transform-origin: top left;
2025-09-24 22:31:02 +00:00
max-height: 400px;
overflow-y: auto;
2025-02-03 23:18:11 +00:00
}
.streams-bar-expanded-active {
2025-02-03 23:18:11 +00:00
opacity: 1;
2025-05-05 17:13:41 +00:00
pointer-events: auto;
}
.streams-bar-nav {
2025-05-05 17:13:41 +00:00
cursor: pointer;
2025-05-05 17:21:33 +00:00
color: var(--text-normal);
2025-05-05 17:13:41 +00:00
padding: 4px;
display: flex;
align-items: center;
justify-content: center;
2025-05-05 17:21:33 +00:00
width: 32px;
height: 32px;
background-color: var(--background-primary);
border: none;
transition: background-color 0.2s ease, transform 0.1s ease;
font-size: 16px;
2025-05-05 17:13:41 +00:00
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-05-05 17:21:33 +00:00
.streams-bar-nav:active {
2025-05-05 17:21:33 +00:00
transform: scale(0.95);
background-color: var(--interactive-accent-hover);
2025-05-05 17:13:41 +00:00
}
.streams-bar-date {
2025-05-05 17:13:41 +00:00
font-weight: 600;
text-align: center;
flex: 1;
2025-05-05 17:21:33 +00:00
margin: 0 12px;
2025-02-03 23:18:11 +00:00
}
.streams-bar-day {
2025-02-04 14:23:28 +00:00
display: flex;
flex-direction: column;
2025-02-04 14:23:28 +00:00
align-items: center;
2025-05-05 17:21:33 +00:00
gap: 2px;
2025-09-25 18:39:01 +00:00
border: 1px solid transparent;
2025-05-05 17:21:33 +00:00
padding: 4px;
border-radius: 4px;
2025-09-25 18:39:01 +00:00
transition: all 0.2s ease;
2025-05-05 18:00:12 +00:00
min-width: 32px; /* Fixed width for day cells */
min-height: 32px; /* Fixed height for day cells */
width: 32px;
height: 32px;
justify-content: center;
2025-09-25 01:38:59 +00:00
cursor: pointer;
2025-09-25 18:39:01 +00:00
background-color: var(--background-primary);
color: var(--text-normal);
}
.streams-bar-day:hover {
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
border-color: var(--text-accent);
color: var(--text-accent);
2025-02-04 14:23:28 +00:00
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-02-04 14:23:28 +00:00
.streams-bar-day:active {
2025-05-05 17:21:33 +00:00
background-color: var(--interactive-accent);
color: var(--text-on-accent);
transform: scale(0.95);
2025-02-04 14:23:28 +00:00
}
.streams-bar-day.empty {
2025-02-04 14:23:28 +00:00
cursor: default;
min-height: 32px;
min-width: 32px;
}
.streams-bar-day.empty:hover,
.streams-bar-day.empty:active {
2025-02-04 14:23:28 +00:00
background-color: transparent;
2025-02-03 23:18:11 +00:00
}
.streams-bar-day-header {
2025-02-03 23:18:11 +00:00
padding: 6px;
color: var(--text-muted);
font-size: 12px;
text-align: center;
2025-05-05 18:00:12 +00:00
width: 32px; /* Fixed width for headers */
2025-09-25 01:38:59 +00:00
cursor: default;
2025-02-03 23:18:11 +00:00
}
.streams-bar-grid {
2025-05-02 18:59:31 +00:00
display: grid !important;
2025-06-26 02:28:25 +00:00
grid-template-columns: repeat(7, 32px);
2025-05-02 18:59:31 +00:00
gap: 4px;
2025-06-26 02:28:25 +00:00
width: 264px;
2025-05-05 17:21:33 +00:00
padding: 8px;
2025-06-26 02:28:25 +00:00
box-sizing: border-box;
2025-09-25 18:39:01 +00:00
background-color: var(--background-secondary);
border: 1px solid var(--background-modifier-border);
2025-05-05 17:21:33 +00:00
border-radius: 6px;
2025-06-26 02:28:25 +00:00
margin: 0;
2025-05-02 18:59:31 +00:00
}
2025-06-08 01:34:14 +00:00
.streams-date-container {
2025-05-02 18:59:31 +00:00
display: flex;
justify-content: center;
align-items: center;
font-size: 12px;
line-height: 1;
2025-05-05 18:00:12 +00:00
width: 100%;
height: 100%;
2025-05-02 18:59:31 +00:00
}
.streams-bar-day {
2025-05-03 20:16:19 +00:00
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
2025-05-05 17:21:33 +00:00
border: none;
2025-05-03 20:16:19 +00:00
padding: 4px;
border-radius: 4px;
}
.streams-bar-day.viewed {
2025-05-03 20:16:19 +00:00
border-color: var(--text-accent);
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-hover);
color: var(--text-accent);
font-weight: 600;
2025-05-03 20:16:19 +00:00
}
2025-06-08 01:34:14 +00:00
.streams-dot-container {
2025-05-03 20:16:19 +00:00
display: flex;
gap: 2px;
height: 4px;
}
2025-06-08 01:34:14 +00:00
.streams-content-dot {
2025-05-03 20:16:19 +00:00
width: 4px;
height: 4px;
border-radius: 50%;
background-color: var(--text-muted);
}
2025-09-25 01:21:26 +00:00
/* Hover effect removed */
2025-05-03 20:16:19 +00:00
.streams-bar-day.today {
2025-09-25 18:39:01 +00:00
color: var(--text-on-accent);
2025-05-03 20:16:19 +00:00
font-weight: 600;
2025-09-25 18:39:01 +00:00
background-color: var(--interactive-accent);
border: 1px solid var(--interactive-accent);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
2025-05-03 20:16:19 +00:00
}
.streams-bar-day.today .streams-content-dot {
2025-05-03 20:16:19 +00:00
background-color: var(--text-accent);
}
2025-08-18 21:17:27 +00:00
2025-05-02 18:59:31 +00:00
/*********************************************************
* CREATE FILE VIEW STYLES
*********************************************************/
2025-09-28 02:32:58 +00:00
/* Center our create file container */
.streams-create-file-container {
display: flex;
justify-content: center;
align-items: center;
2025-09-29 00:34:53 +00:00
height: 100%;
2025-09-28 02:32:58 +00:00
width: 100%;
padding: 20px;
2025-04-28 17:37:27 +00:00
background-color: var(--background-primary);
2025-09-28 02:32:58 +00:00
box-sizing: border-box;
flex-direction: column;
position: relative;
z-index: 1;
}
/* Ensure content is visible */
.streams-create-file-content {
display: flex;
flex-direction: column;
align-items: center;
2025-09-28 02:32:58 +00:00
justify-content: center;
max-width: 500px;
2025-09-28 02:32:58 +00:00
width: 90%;
background-color: var(--background-secondary);
2025-04-28 17:37:27 +00:00
border-radius: 12px;
padding: 40px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
text-align: center;
2025-06-08 01:34:14 +00:00
animation: streams-fade-in 0.3s ease-in-out;
2025-09-28 02:32:58 +00:00
margin: 20px;
position: relative;
z-index: 2;
2025-04-28 17:37:27 +00:00
}
.streams-create-file-icon {
margin-bottom: 24px;
}
.streams-create-file-icon svg {
width: 48px;
height: 48px;
color: var(--text-accent);
opacity: 0.9;
}
.streams-create-file-stream-container {
display: flex;
align-items: center;
margin-bottom: 12px;
}
.streams-create-file-stream-icon {
margin-right: 8px;
display: flex;
align-items: center;
}
.streams-create-file-stream-icon svg {
width: 18px;
height: 18px;
color: var(--text-muted);
}
.streams-create-file-stream {
2025-04-28 17:37:27 +00:00
font-size: 1.1em;
font-weight: 600;
2025-04-28 17:37:27 +00:00
color: var(--text-muted);
}
.streams-create-file-date {
2025-04-28 17:37:27 +00:00
font-size: 2em;
font-weight: 700;
2025-04-28 17:37:27 +00:00
color: var(--text-normal);
margin-bottom: 30px;
line-height: 1.2;
}
.streams-create-file-path {
font-family: var(--font-monospace);
2025-04-28 17:37:27 +00:00
font-size: 0.8em;
color: var(--text-muted);
2025-04-28 17:37:27 +00:00
margin-bottom: 32px;
opacity: 0.8;
}
.streams-create-file-button-container {
margin-top: 16px;
}
.streams-create-file-button {
2025-04-28 17:37:27 +00:00
padding: 10px 24px;
font-size: 1.1em;
2025-04-28 17:37:27 +00:00
border-radius: 6px;
transition: all 0.2s ease;
background-color: var(--interactive-accent);
text-align: center;
}
.streams-create-file-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.streams-create-file-button:active {
transform: translateY(0);
}
.streams-create-file-button-text {
margin-left: 4px;
}
.streams-create-file-button svg {
width: 18px;
height: 18px;
}
2025-04-30 18:06:09 +00:00
2025-05-02 18:59:31 +00:00
/*********************************************************
* RESPONSIVE STYLES
*********************************************************/
.is-mobile .streams-create-file-content {
width: 100%;
max-width: none;
padding: 30px 20px;
border-radius: 8px;
}
2025-09-24 22:31:02 +00:00
.is-mobile .streams-create-file-container {
padding: 20px;
}
2025-05-02 18:59:31 +00:00
.is-phone .streams-create-file-date {
font-size: 1.5em;
}
2025-05-01 19:15:15 +00:00
2025-05-02 18:59:31 +00:00
/*********************************************************
* UTILITY STYLES
*********************************************************/
2025-09-29 01:37:45 +00:00
/* Calendar Component Positioning Styles */
.streams-bar-component {
2025-09-29 01:37:45 +00:00
position: relative;
width: 100%;
background-color: var(--background-primary);
2025-09-29 18:38:11 +00:00
padding: 4px 6px 4px 6px;
2025-09-29 01:37:45 +00:00
font-size: 14px;
line-height: 1.4;
}
/* Calendar Component Dropdown Styles */
.streams-bar-component .streams-dropdown {
2025-09-29 01:37:45 +00:00
display: none;
}
.streams-bar-component .streams-dropdown--visible {
2025-09-29 02:32:25 +00:00
display: block !important;
2025-09-29 01:37:45 +00:00
}
/* Calendar Component Visibility States */
.streams-bar-component--visible {
2025-09-29 01:37:45 +00:00
display: block !important;
visibility: visible !important;
opacity: 1 !important;
}