• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
MagicMirror Forum
  • Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.

custom.css

Scheduled Pinned Locked Moved Troubleshooting
10 Posts 5 Posters 7.7k Views 4 Watching
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    strawberry 3.141 Project Sponsor Module Developer
    last edited by Aug 29, 2016, 8:24 PM

    a proper solution would be to do your changes in the custom.css only, so you’ll not lose your modification by an update

    in general you do the following rule

    .MODULE_NAME .CLASS_TO_CHANGE {
        /*CSS RULE*/
    }
    
    .compliments .xlarge {
        font-weight: bold;
    }
    

    this will only affect your compliments module

    Please create a github issue if you need help, so I can keep track

    1 Reply Last reply Reply Quote 3
    • I Offline
      ianperrin
      last edited by Aug 29, 2016, 8:31 PM

      @yo-less said in custom.css:

      I’m not aware of any way to change global css styles (such as: “xlarge”) for only a specific module using the custom.css file. Does anyone else have any idea whether that can be done?

      Each of the modules are wrapped in a div element with a class corresponding to the name you use to define the module in the config file e.g.

      <div class="module compliments">
      ...
      </div>
      

      So to change the styles of a particular module, you can use the following in the custom.css file

      .compliments .xlarge {
          font-size: 10pt;
      }
      

      "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

      1 Reply Last reply Reply Quote 2
      • I Offline
        ianperrin
        last edited by Aug 29, 2016, 8:34 PM

        Looks like @strawberry-3-141 beat me to the reply ;)

        "Live as if you were to die tomorrow. Learn as if you were to live forever." - Mahatma Gandhi

        S 1 Reply Last reply Aug 29, 2016, 8:36 PM Reply Quote 0
        • S Offline
          strawberry 3.141 Project Sponsor Module Developer @ianperrin
          last edited by Aug 29, 2016, 8:36 PM

          @ianperrin maybe i was quicker, but I learned it out of your contribution to my module ;)

          Please create a github issue if you need help, so I can keep track

          1 Reply Last reply Reply Quote 1
          • Y Offline
            yo-less Module Developer
            last edited by Aug 29, 2016, 9:51 PM

            @ianperrin Thanks for the clarification. I could swear I tried using “.compliments .xlarge” before posting as my own module css files use the same syntax and it looked like it didn’t work, but I’ve just tried it again and it’s working as it should :). Great to know.

            1 Reply Last reply Reply Quote 1
            • M Offline
              MichMich Admin
              last edited by Aug 31, 2016, 2:27 PM

              Totally off topic, but it’s so freaking awesome to see you guys discuss stuff I just made up on the fly … 😂

              1 Reply Last reply Reply Quote 2
              • 1 / 1
              1 / 1
              • First post
                9/10
                Last post
              Enjoying MagicMirror? Please consider a donation!
              MagicMirror created by Michael Teeuw.
              Forum managed by Sam, technical setup by Karsten.
              This forum is using NodeBB as its core | Contributors
              Contact | Privacy Policy