Jonathan Starck %!s(int64=3) %!d(string=hai) anos
pai
achega
47cf731090
Modificáronse 3 ficheiros con 33 adicións e 6 borrados
  1. 4 4
      config/config.js
  2. 13 0
      css/custom.css
  3. 16 2
      css/custom.less

+ 4 - 4
config/config.js

@@ -48,11 +48,11 @@ let config = {
 				ignoreModules: ['clock', 'alert', 'MMM-BurnIn'],
 				mode: 'slides',
 				slides: {
-					/*main: ['weather', 'MMM-DWD-WarnWeather', 'MMM-ImageSlideshow', 'MMM-SimpleLogo','MMM-CalendarExt2', 'newsfeed', 'MMM-WiFiPassword'],
+					main: ['weather', 'MMM-DWD-WarnWeather', 'MMM-ImageSlideshow', 'MMM-SimpleLogo','MMM-CalendarExt2', 'newsfeed', 'MMM-WiFiPassword'],
 					"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']
 				}
 			}
 		},
@@ -234,7 +234,7 @@ let config = {
 				tableClass: "large wachenaufgaben",
 				fetchInterval: 30000,
 				maxTitleLength: 50,
-				displaySymbol: true,
+				displaySymbol: false,
 				maximumNumberOfDays: 1,
 				showLocation: true,
 				timeFormat: 'absolute',

+ 13 - 0
css/custom.css

@@ -47,3 +47,16 @@ table.wachenaufgaben tr td.todo_title:before {
   line-height: 1;
   text-rendering: auto;
 }
+table.wachenaufgaben tr td.clean_title:before {
+  font-family: 'Font Awesome 6 Pro';
+  font-weight: 400;
+  padding-right: 10px;
+  content: "\e04d";
+  -moz-osx-font-smoothing: grayscale;
+  -webkit-font-smoothing: antialiased;
+  display: var(--fa-display, inline-block);
+  font-style: normal;
+  font-variant: normal;
+  line-height: 1;
+  text-rendering: auto;
+}

+ 16 - 2
css/custom.less

@@ -40,7 +40,6 @@ table.wachenaufgaben {
         td {
             font-size: 100% !important;
             text-align: left;
-
             &.todo_title {
                 &:before {
                     font-family: 'Font Awesome 6 Pro';
@@ -56,6 +55,21 @@ table.wachenaufgaben {
                     text-rendering: auto;
                 }
             }
+            &.clean_title {
+                &:before {
+                    font-family: 'Font Awesome 6 Pro';
+                    font-weight: 400;
+                    padding-right: 10px;
+                    content: "\e04d";
+                    -moz-osx-font-smoothing: grayscale;
+                    -webkit-font-smoothing: antialiased;
+                    display: var(--fa-display, inline-block);
+                    font-style: normal;
+                    font-variant: normal;
+                    line-height: 1;
+                    text-rendering: auto;
+                }
+            }
         }
     }
-}
+}