-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.scss
859 lines (681 loc) · 21.1 KB
/
main.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
@use 'vars.scss';
@mixin searchBoxStyles {
background-color: var(--dmfo-dark) !important;
border: 0 !important;
border-radius: var(--dmfo-border-radius) !important;
}
@mixin darkInputFieldStyles {
background-color: var(--dmfo-darkest) !important;
border: 0 !important;
border-radius: var(--dmfo-border-radius) !important;
}
/*#region STYLES FOR LOADING/SPLASH SCREEN */
#loadingScreen {
background-color: var(--dmfo-darker) !important;
>#loadingLogo {
display: none !important;
}
>#MSLogo {
display: none !important;
}
>#loadingSpinner {
opacity: 1 !important;
position: fixed !important;
top: calc(50% - 40px) !important;
left: calc(50% - 40px) !important;
>g>g>circle {
stroke: var(--dmfo-lightest) !important;
}
}
}
#spinnerCircle {
stroke: transparent !important;
}
/*#endregion*/
/*#region MANUAL OVERRIDES FOR HARDCODED STYLES AND FOR WHEN BUILT-IN DARK MODE IS DISABLED */
.o365cs-base {
// Settings panel header text color (dm override)
.o365sx-neutral-dark-font,
.o365sx-neutral-dark-hover-font:hover {
color: var(--dmfo-lightest) !important;
}
// Settings panel header close button icon color (dm override)
.o365sx-neutral-secondary-font,
.o365sx-neutral-secondary-hover-font:hover {
color: var(--dmfo-lightest) !important;
}
// Navbar settings icon (dm override)
.o365sx-activeButton,
.o365sx-activeButton:hover,
.o365sx-activeButton:focus {
color: var(--dmfo-lightest) !important;
}
}
// Settings panel 'View all Outlook settings' button
#CustomFlexPane_OwaSettings>div>div>div:last-child {
-webkit-box-flex: none;
-ms-flex: none;
flex: none;
margin: auto;
>button {
margin-bottom: 0 !important;
}
}
#CustomFlexPane_OwaSettings>div>div>div:last-child>button {
margin-bottom: 0 !important;
}
// Navbar color
.o365sx-navbar {
background-color: var(--dmfo-darker) !important;
}
// Navbar buttons
.o365cs-base .o365sx-button,
.o365cs-base .o365sx-waffle,
.o365cs-base .o365sx-appName,
.o365cs-base .o365sx-appName:visited,
#headerButtonsRegionId>div button {
background-color: var(--dmfo-darker) !important;
}
.o365cs-base .o365sx-button:hover,
.o365cs-base .o365sx-waffle:hover,
.o365cs-base .o365sx-appName:hover,
.o365cs-base .o365sx-appName:visited:hover,
#headerButtonsRegionId>div:hover button {
background-color: var(--dmfo-darkest) !important;
}
.o365cs-base {
// Popup panel background color
.o365sx-neutral-lighterAlt-background,
.o365sx-neutral-lighterAlt-hover-background:hover {
background-color: var(--dmfo-darker) !important;
}
// Popup profile panel background
.o365sx-neutral-foreground-background,
.o365sx-neutral-foreground-hover-background:hover {
background-color: var(--dmfo-darker) !important;
}
// Text/link colors
.o365sx-neutral-accent-font,
.o365sx-neutral-accent-hover-font:hover,
.o365sx-neutral-accent-link,
.o365sx-neutral-accent-link:hover,
.o365sx-neutral-accent-link:visited,
.o365sx-neutral-accent-hover-link:hover {
color: var(--dmfo-lightest) !important;
}
}
/*#endregion*/
/*#region MANUAL OVERRIDES FOR MESSAGE COMPOSITION HARDCODED STYLES */
div[aria-label='Content pane']>div:first-child>div:first-child {
--headerBackground: inherit !important;
--headerBackgroundSearch: inherit !important;
--headerSearchBoxBackground: inherit !important;
--headerSearchButtonBackground: inherit !important;
--headerSearchButtonBackgroundHover: inherit !important;
--headerButtonsBackground: inherit !important;
--headerButtonsBackgroundHover: inherit !important;
--headerButtonsBackgroundSearch: inherit !important;
--headerButtonsBackgroundSearchHover: inherit !important;
--headerBadgeBackground: inherit !important;
--searchBoxBackground: inherit !important;
--richUserContentBackground: inherit !important;
background: inherit !important;
--themeDarker: inherit !important;
--themeDark: inherit !important;
--themeDarkAlt: inherit !important;
--themePrimary: inherit !important;
--themeSecondary: inherit !important;
--themeTertiary: inherit !important;
--themeLight: inherit !important;
--themeLighter: inherit !important;
--themeLighterAlt: inherit !important;
--headerBrandText: inherit !important;
--headerTextIcons: inherit !important;
--headerSearchBoxIcon: inherit !important;
--headerSearchPlaceholderText: inherit !important;
--headerSearchButtonIcon: inherit !important;
--headerSearchFilters: inherit !important;
--headerSearchFiltersHover: inherit !important;
--headerBadgeText: inherit !important;
--headerSearchIcon: inherit !important;
--black: inherit !important;
--blackTranslucent40: inherit !important;
--white: inherit !important;
--whiteTranslucent40: inherit !important;
--whiteTranslucent90: inherit !important;
--neutralDark: inherit !important;
--neutralPrimary: inherit !important;
--neutralPrimaryAlt: inherit !important;
--neutralSecondary: inherit !important;
--neutralTertiary: inherit !important;
--neutralTertiaryAlt: inherit !important;
--neutralQuaternary: inherit !important;
--neutralQuaternaryAlt: inherit !important;
--neutralLight: inherit !important;
--neutralLighter: inherit !important;
--neutralLighterAlt: inherit !important;
--redDark: inherit !important;
--purple: inherit !important;
--flaggedMessage: inherit !important;
color: inherit !important;
}
// Message body background color
div[aria-label='Message body'] {
--headerBackground: initial !important;
--headerBackgroundSearch: initial !important;
--headerSearchBoxBackground: initial !important;
--headerSearchButtonBackground: initial !important;
--headerSearchButtonBackgroundHover: initial !important;
--headerButtonsBackground: initial !important;
--headerButtonsBackgroundHover: initial !important;
--headerButtonsBackgroundSearch: initial !important;
--headerButtonsBackgroundSearchHover: initial !important;
--headerBadgeBackground: initial !important;
--searchBoxBackground: initial !important;
--richUserContentBackground: initial !important;
}
#ReadingPaneContainerId>div:first-child:not([class])>div:first-child:not([class])>div:first-child[class] {
// Compose pane background color (when dark theme is applied)
>div:first-child:not([class])>div:nth-child(2) {
background: var(--dmfo-legacy-compose-bg) !important;
}
// Compose pane background color (when light theme is applied)
>div:first-child[class]>div:nth-child(2) {
background: var(--white) !important;
}
}
// Remove box shadow from message body container
.wide-content-host>div:first-child>div[class]:first-child {
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
// More send options button color, compose background style toggle
button[aria-label='More send options']>span>i,
button[aria-label='View with a dark background']>span>i {
color: var(--dmfo-darkest) !important;
}
/*#endregion*/
/*#region AD HIDING FOR OUTLOOK PERSONAL */
// Hide ad at bottom of left sidebar
div[aria-label='Navigation pane']>div:last-child>div>div:nth-child(2):not([role='menubar']) {
display: none !important;
}
// Hide right ad sidebar (shown when screen is wide)
div[data-max-width='2400']+div {
display: none !important;
}
// Hide the ad at the top of the message list in the inbox
div[aria-label^='Message list']>div>div>div>div>div:first-child>div[data-animatable='true'] {
display: none !important;
}
// Hide floating ad at bottom of message list (shown when screen is narrow)
#MainModule+div {
display: none !important;
}
// Hide top banner ad. It may not exist, so account for this
#app>div:first-child>div:last-child>div:first-child>div:first-child:not(:last-child):not(:nth-last-child(2)) {
display: none !important;
}
/*#endregion*/
/*#region GENERAL STYLES */
// Reduce min width
body {
min-width: 700px !important;
}
// Change color of button icons
.ms-Button-icon {
color: var(--dmfo-lightest) !important;
}
// Styles for main search box border radius
div[role=search],
.ms-SearchBox {
@include searchBoxStyles;
}
#searchBoxColumnContainerId>div {
// Change background of search box container to hide borders
background: var(--dmfo-darker) !important;
// Style search button to match main search box
>button {
@include darkInputFieldStyles;
border-top-left-radius: 0 !important;
border-bottom-left-radius: 0 !important;
}
}
// Remove borders shown when search box is active
.ms-SearchBox::after {
border: none !important
}
// Remove bottom borders of advanced search panel input fields
.ms-Dropdown-title,
.ms-Callout-main>div>div>div>div>div,
.ms-TextField-wrapper,
.ms-TextField-wrapper::after {
border-bottom: none !important;
}
// Change border-radius to match other input fields
.ms-BasePicker-input,
.ms-TextField-fieldGroup {
border-radius: var(--dmfo-border-radius) !important;
}
// Change background color, border-radius of date picker to match other advanced search panel input fields
.ms-DatePicker {
@include darkInputFieldStyles;
}
// Add custom padding to advanced search panel input fields for consistency
.ms-BasePicker-input {
padding-left: 8px !important;
}
// Change background color of 'Move to a different folder' menu items
.ms-FocusZone>div[role='menuitem'] {
background: var(--dmfo-darker) !important;
}
// Change background color on hover for 'Move to a different folder' menu items
.ms-FocusZone>div[role='menuitem']:hover {
background: var(--dmfo-darkest) !important;
}
// Override background color for 'Add a new folder' menu item
div[title='Add a new folder']:hover {
background: inherit !important;
}
// Border radius for various buttons
button.ms-Button[type='button'] {
border-radius: var(--dmfo-border-radius) !important;
}
// Button hover background color
.o365cs-base .o365sx-neutral-light-hover-background:hover {
background: var(--dmfo-dark) !important;
}
// Hide bottom border between headings in the message list
div[role=heading] {
margin-bottom: 0 !important;
}
// Hide bottom border between emails in the message list
div[data-convid] {
margin-bottom: 0 !important;
}
// Message list action icon button hover color
div[aria-label='Select a conversation']+div+div>div>button:hover>span>i {
color: var(--dmfo-accent) !important;
}
div[aria-label='Message list']>div:nth-child(3),
div[aria-label='Reading Pane']>div:nth-child(2) {
// Hide top border for tab bar
border-width: 0 !important;
// Hide borders for tabs and increase border radius
>div {
border-style: none !important;
border-radius: var(--dmfo-border-radius) var(--dmfo-border-radius) 0 0 !important;
}
}
/*#endregion*/
/*#region STYLES FOR LEFT SIDEBAR */
// Remove left sidebar right border
#app>div:first-child>div:nth-child(3)>div:first-child>div:first-child>div:nth-child(2) {
width: 0 !important;
}
// Hide bottom border under the new button on the left sidebar
div[aria-label='Navigation pane']>div:first-child>div {
border-bottom: 0 !important;
}
// Hide top border of navigation bar at bottom of left sidebar
div[role=menubar] {
border-top: 0 !important;
}
/*#endregion*/
/*#region STYLES FOR COMPOSING/VIEWING MESSAGES */
div[aria-label='Content pane'] {
// Content pane background
background: var(--dmfo-darkest) !important;
>div:first-child>div:first-child>div:nth-child(3)>div:nth-child(3) {
display: none !important;
}
}
// Hide command toolbar bottom border
div[aria-label='Command toolbar'] {
border-bottom: 0 !important;
}
/*#endregion*/
/*#region STYLES FOR NAVBAR/PANES */
// Hide popup panel left border
#O365fpcontainerid {
border-left: 0 !important;
}
/*#region STYLES FOR CALENDAR PANE */
// Calendar pane background (main panel, header body background, New Event button, New Event button)
#FlexPane_OwaTimePanel,
#FlexPane_OwaTimePanel>div:first-child>div:first-child>div:first-child,
#CustomFlexPane_OwaTimePanel>div>div>div,
#CustomFlexPane_OwaTimePanel>div>div>div>div:first-child>div:nth-child(3),
#CustomFlexPane_OwaTimePanel>div>div>div>div:first-child>div:nth-child(3)>button {
background: var(--dmfo-darker) !important;
}
// Calendar pane horizontal borders
#CustomFlexPane_OwaTimePanel>div>div>div>div:first-child>div,
#CustomFlexPane_OwaTimePanel>div>div>div>div:first-child>div:nth-child(3)>button {
border: 0 !important;
}
/*#endregion*/
/*#region STYLES FOR SKYPE PANE */
// Skype pane background color and text color
.ms-Callout-main {
background-color: var(--dmfo-darker) !important;
color: var(--dmfo-lightest) !important;
}
// Skype pane bottom borders between messages
.swcRecentItem {
border-bottom: 0 !important;
}
// Skype pane message hover background
.swcRecentItem:hover {
background-color: var(--dmfo-dark) !important;
}
// Skype pane message title
.swcRecentItem__title {
color: var(--dmfo-lightest) !important;
}
// Skype pane message preview text
.swcMessagePreview__message {
color: #eee !important; // TODO: Change this color later
}
// Skype pane message timestamp text color
.swcRecentItem__timestamp {
color: #eee !important; // TODO: Change this color later
}
// Skype pane recent button text color
.swc.swc-recents .swcRecentsHeader__recentMenuButtonTitle {
color: var(--dmfo-lightest) !important;
}
// Skype pane (new chat button and search placeholder text color)
.swc.swc-recents.minimal .swcRecentsHeader__newChatButton,
.swc.swc-recents.minimal .swcRecentsHeader__searchInput {
color: var(--dmfo-lightest) !important;
}
// Skype pane button hover colors (more button, new chat/recents button, close button)
.swc-recents .swcRecentsHeader__moreButton:hover,
.swcRecentsHeader__secondRow button:hover {
background: var(--dmfo-dark) !important;
}
// Skype pane new chat/recents button hover background color
.swcRecentsHeader__secondRow button:hover {
background: var(--dmfo-dark) !important;
}
// Skype pane search box background
.swcSearchInput {
@include searchBoxStyles
}
// Skype pane search box icon size
.swcIcon_size_medium {
font-size: 14px !important;
padding: .65em !important;
}
// Skype pane search box input text size
.swcSearchInput__input {
font-size: 14px !important;
}
// Skype pane search box more button icon size and color
.swcRecentsHeader__moreButton {
color: var(--dmfo-lightest) !important;
height: initial !important;
}
// Skype pane search box background color (behind actual search box element)
.swcRecentsHeader__searchInput {
background-color: transparent !important;
}
// Skype pane background color
.swc.swc-recents.dark {
background-color: var(--dmfo-darker) !important;
}
.swc.swc-recents.dark {
.swcRecentsHeader__searchInput {
// Skype pane icon color
.swcIcon_cancel,
.swcIcon_search {
color: var(--dmfo-lightest) !important;
}
}
// Skype pane new chat button color
.recentsContainer .swcRecentsHeader__newChatButton {
color: var(--dmfo-lightest) !important;
}
// Skype pane background
.swcRecentsHeader__searchInput {
background-color: initial !important;
}
}
.swc-bubble.list .swc-content {
// Skype more options pane background color
background-color: var(--dmfo-dark) !important;
// Remove Skype more options menu bottom border
ul {
border-bottom: none !important;
// Skype more options pane menu item background color and text color
li {
background-color: var(--dmfo-dark) !important;
color: var(--dmfo-lightest) !important;
// Skype more options pane menu item focus background color and text color
&:focus {
background-color: var(--dmfo-darker) !important;
}
}
}
}
.swc {
// Skype more options pane title color
.swcPageHeader__title {
color: var(--dmfo-lightest) !important;
}
// Skype more options pane back button color and border radius
.swcPageHeader__backButton {
color: var(--dmfo-lightest) !important;
border-radius: var(--dmfo-border-radius) !important;
}
// Skype more options pane back button hover background color
.swcPageHeader__backButton:hover {
background-color: var(--dmfo-dark) !important;
}
}
// Skype more options pane text color
.swcMenuList__item {
color: var(--dmfo-lightest) !important;
// Skype more options pane hover background color
&:hover {
background-color: var(--dmfo-dark) !important;
}
}
/*#endregion*/
/*#region STYLES FOR ONENOTE PANE */
.n-searchBar-inputBox {
@include searchBoxStyles
}
// Onenote pane background
html[dir] .n-side-pane {
background-color: var(--dmfo-darker) !important; // var(--dmfo-dark)
}
// Onenote pane search box focus icon
.n-searchBar-inputBox-searching>.n-searchBarSearchIcon {
color: var(--dmfo-lightest) !important;
}
/*#endregion*/
/*#endregion*/
/*#region STYLES FOR MESSAGE DELETION/MOVEMENT TOOLTIP */
div[style*='min-width: 326px'] {
background-color: var(--dmfo-darker) !important;
border-radius: var(--dmfo-border-radius) var(--dmfo-border-radius) 0 0 !important;
// Message deletion tooltip undo/close button background color
>div:nth-child(2)>button {
background-color: var(--dmfo-darker) !important;
// Message deletion tooltip undo/close button background color
&:hover {
background-color: var(--dmfo-dark) !important;
}
}
}
/*#endregion*/
/*#region STYLES FOR MOBILE SITE (FOR FIREFOX MOBILE) */
/*#region GENERAL STYLES */
// Loading/splash screen logo background color
.logoCont>svg>g>rect {
fill: transparent !important;
}
// Loading/splash screen progress bar background color
.loader {
background-color: transparent !important;
// Loading/splash screen progress bar fill color
&::before {
background-color: var(--dmfo-lightest) !important;
}
}
// Remove top ad
main>div:first-child>div:first-child>div:first-child {
display: none !important;
}
// Header background color (email, calendar)
#app>div:first-child {
>div:first-child>header,
>header {
background: var(--dmfo-darker) !important;
}
}
// Change action bar background color and remove top border (email, calendar)
#app>div:first-child>div:first-child>nav,
#app>div:first-child>nav,
#app>nav {
background: var(--dmfo-darker) !important;
border-top: 0 !important;
}
// Change action bar selected icon color (email, people)
#app>div:first-child>div:first-child>nav>span[aria-label*=Selected],
#app>nav>span[aria-label*=Selected] {
color: var(--dmfo-lightest) !important;
}
// Change action bar selected icon color (calendar)
#app>div:first-child>nav>span[aria-label*=Selected]>div>svg>g>* {
fill: var(--dmfo-lightest) !important;
}
// Sidebar background/text color
#FolderPaneDivId>div[role=navigation] {
background: var(--dmfo-darker) !important;
color: var(--dmfo-lightest) !important;
// Sidebar header text color and border
>div:first-child {
border-bottom: none !important;
>div:first-child {
>i,
>div {
color: var(--dmfo-lightest) !important;
}
}
}
// Remove borders from all sidebar sections
>div {
border-top: none !important;
// Background color of selected list item
>div[class*=_3Q] {
background-color: var(--themeLight) !important;
color: var(--dmfo-lightest) !important;
}
// Folder unread items badge background/text color
>div>label[for*=Folder] {
background-color: var(--dmfo-dark) !important;
color: var(--dmfo-lightest) !important;
}
}
// Sidebar footer text color
>div:last-child {
div[role=link],
div[role=button] {
color: var(--dmfo-lightest) !important;
}
}
}
/*#endregion*/
/*#region STYLES FOR EMAIL LIST */
// Move messages up to fill the space of the hidden ad
main>div:first-child>div:first-child>div {
margin-top: -93px !important;
}
// Message background color
div[role=group]>article {
background: var(--dmfo-darkest) !important;
// Message unread indicator background color
&::before {
background: var(--dmfo-lightest) !important;
}
>div:last-child>div:first-child {
// Message title text color
>div:first-child>div:first-child {
color: var(--dmfo-lightest) !important;
}
// Message subject text color
>div:nth-child(2)>h2:first-child {
color: var(--dmfo-lighter) !important;
}
// Message preview text color
>div:nth-child(3)>div:first-child {
color: var(--dmfo-light) !important;
}
}
}
// Hide Edge bottom banner ad
div[aria-label='Microsoft Edge upsell'] {
display: none !important;
}
/*#endregion*/
/*#region STYLES FOR CALENDAR */
#app>div:first-child>div:nth-child(2) {
// Calendar month labels background color
>div:first-child {
background: var(--dmfo-darker) !important;
}
// Change calendar days labels background color and remove bottom border
>div:nth-child(2) {
background: var(--dmfo-darkest) !important;
border-bottom: 0 !important;
}
}
// Calendar selected day background
.ms-CalendarDay-hoverStyle {
background-color: transparent !important;
color: var(--dmfo-lightest) !important;
}
div[class*="daySelected"] {
background: var(--dmfo-darker) !important;
}
// Calendar agenda background
.agenda-view {
background: var(--dmfo-darkest) !important;
}
// Calendar item title text color
div[data-agendaitem]>div:first-child>div:first-child {
color: var(--dmfo-lightest) !important;
// Calendar item description text color
>div:last-child {
color: var(--dmfo-lighter) !important;
}
}
/*#endregion*/
/*#region STYLES FOR PEOPLE LIST */
// Body background
// TODO: This applies to desktop site as well. Move to different section
body {
// background-color: var(--dmfo-darkest) !important;
}
// Heading text color
#app>div>div>div[role=heading] {
color: var(--dmfo-lightest) !important;
}
// Name text color
.ms-Persona-primaryText {
color: var(--dmfo-lightest) !important;
}
// Email text color
.ms-Persona-secondaryText {
color: var(--dmfo-lighter) !important;
}
/*#endregion*/
/*#region STYLES FOR SIDE PANE */
#PeopleSidePane {
// TODO: WIP
}
/*#endregion*/
/*#endregion*/