summaryrefslogtreecommitdiffstats
path: root/comm/calendar/base/themes/common/calendar-item-summary.css
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--comm/calendar/base/themes/common/calendar-item-summary.css77
1 files changed, 77 insertions, 0 deletions
diff --git a/comm/calendar/base/themes/common/calendar-item-summary.css b/comm/calendar/base/themes/common/calendar-item-summary.css
new file mode 100644
index 0000000000..deabbdf2d9
--- /dev/null
+++ b/comm/calendar/base/themes/common/calendar-item-summary.css
@@ -0,0 +1,77 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#calendar-item-summary {
+ max-width: 100vw;
+}
+
+.calendar-summary-table {
+ width: 100%;
+}
+
+.calendar-summary-table th {
+ user-select: text;
+ font-weight: normal;
+ padding-inline-end: 5px;
+ text-align: right;
+ vertical-align: baseline;
+ white-space: nowrap;
+}
+
+.calendar-summary-table td {
+ user-select: text;
+ padding-top: 0;
+ vertical-align: baseline;
+ width: 100%;
+ max-width: 0;
+}
+
+.calendar-summary-table td.item-location {
+ vertical-align: top;
+}
+
+.calendar-summary-table .item-location-link > label {
+ margin-inline: 0;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ white-space: nowrap;
+ width: 100%;
+}
+
+.calendar-summary-table .item-organizer-cell {
+ margin-inline: 0px;
+}
+
+.calendar-summary-table .attachments-label {
+ vertical-align: top;
+}
+
+.item-summary-splitter {
+ appearance: none;
+ border-style: none;
+ border-bottom: 1px solid var(--field-border-color);
+ min-height: 0;
+ height: 10px;
+ background-color: transparent;
+ margin: 10px;
+ position: relative;
+ z-index: 10;
+ transition: border-width .3s ease-in;
+}
+
+.item-summary-splitter[state="collapsed"] {
+ transition: border-color .3s;
+}
+
+.item-summary-splitter[state="collapsed"]:hover {
+ border-bottom: 4px solid var(--selected-item-color);
+}
+
+.item-description-box {
+ flex: 1 1 10em;
+}
+
+.item-description {
+ flex: 1 1 0;
+}