Jonathan Starck il y a 3 ans
Parent
commit
bef8b0b879
3 fichiers modifiés avec 20 ajouts et 5 suppressions
  1. 3 3
      config/config.js
  2. 5 0
      css/custom.css
  3. 12 2
      css/custom.less

+ 3 - 3
config/config.js

@@ -29,11 +29,11 @@ let config = {
 				ignoreModules: ['clock', 'alert', 'MMM-BurnIn'],
 				mode: 'slides',
 				slides: {
-					/*main: ['weather', 'MMM-DWD-WarnWeather', 'MMM-ImageSlideshow', 'MMM-SimpleLogo','MMM-CalendarExt2', 'newsfeed'],
+					main: ['weather', 'MMM-DWD-WarnWeather', 'MMM-ImageSlideshow', 'MMM-SimpleLogo','MMM-CalendarExt2', 'newsfeed'],
 					"Slide 2": ['MMM-SimpleLogo', 'calendar'],
 					"Slide 3": ['MMM-EasyPix'],
-					"Slide 4": ['compliments', 'MMM-SimpleLogo']*/
-					main: ['MMM-SimpleLogo', 'calendar']
+					"Slide 4": ['compliments', 'MMM-SimpleLogo']
+					/*main: ['MMM-SimpleLogo', 'calendar']*/
 				}
 			}
 		},

+ 5 - 0
css/custom.css

@@ -38,4 +38,9 @@ table.wachenaufgaben tr td {
 }
 table.wachenaufgaben tr td.symbol {
   display: table-cell;
+  color: #fff;
+}
+table.wachenaufgaben tr td.symbol span.fa {
+  font-family: 'Font Awesome 6 Pro';
+  font-weight: 400;
 }

+ 12 - 2
css/custom.less

@@ -37,13 +37,23 @@ table.wachenaufgaben {
     tr {
         opacity: 1 !important;
         font-size: 100% !important;
+
         td {
             font-size: 100% !important;
             text-align: left;
-            border-bottom: 5px solid #999!important;
+            border-bottom: 5px solid #999 !important;
+
             &.symbol {
                 display: table-cell;
+                color: #fff;
+
+                span {
+                    &.fa {
+                        font-family: 'Font Awesome 6 Pro';
+                        font-weight: 400;
+                    }
+                }
             }
         }
     }
-}
+}