MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    organization of the text next to the icon.

    Custom CSS
    3
    48
    3275
    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.
    • I
      iorifly @doubleT last edited by iorifly

      @doubleT said in organization of the text next to the icon.:

      x t-align

      MMM-homeassistant-sensors

      hitting the text did not appear the line either.

      1 Reply Last reply Reply Quote 0
      • D
        doubleT Module Developer last edited by doubleT

        In that case the css should work. And the css file is named custom.css? Exactly like that? And you restarted the mirror?

        Since we’re already working directly in the code: In the module js there’s a line
        var tableElement = document.createElement("table");

        You can write a line directly after that:
        tableElement.className = "homeassistant-table";

        Then you should be able to address the table in the cusom.css like this:

        .homeassistant-table tr td:nth-of-type(2) {
            text-align: left;
        }
        .homeassistant-table tr:nth-of-type(3) td,
        .homeassistant-table tr:nth-of-type(6) td {
            border-bottom: 1px solid white;
        }
        .homeassistant-table {
            border-spacing: 0;
        }
        

        Is the text brighter now?

        EDIT: tableElement, not table.Element

        I 1 Reply Last reply Reply Quote 0
        • I
          iorifly last edited by

          @doubleT said in organization of the text next to the icon.:

          .homeassistant-table tr td:nth-of-type(2) {
          text-align: left;
          }
          .homeassistant-table tr:nth-of-type(3) td,
          .homeassistant-table tr:nth-of-type(6) td {
          border-bottom: 1px solid white;
          }
          .homeassistant-table {
          border-spacing: 0;
          }

          do I delete the text from what was in the custom? or leave and put this?

          1 Reply Last reply Reply Quote 0
          • D
            doubleT Module Developer last edited by

            Delete the previous code in custom.css if you added that className line in the module’s js.

            1 Reply Last reply Reply Quote 0
            • I
              iorifly @doubleT last edited by

              @doubleT

              If I put this line:

              table.Element.className = "homeassistant-table";
              

              after

              var tableElement = document.createElement("table");
              

              the module does not load

              Another thing the text is still gray.

              1 Reply Last reply Reply Quote 0
              • D
                doubleT Module Developer last edited by

                Oh, sorry, “tableElement” – remove the dot. Sorry.

                1 Reply Last reply Reply Quote 0
                • I
                  iorifly last edited by

                  The module loaded but without the lines yet.

                  Before you get tired LOL … please tell me how to make the text of the module more alive!

                  1 Reply Last reply Reply Quote 0
                  • D
                    doubleT Module Developer last edited by

                    Remove the “dimmed” in line 38 of the code.

                    1 Reply Last reply Reply Quote 0
                    • 1
                    • 2
                    • 3
                    • 4
                    • 5
                    • 5 / 5
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy