Welcome to the DFO World Wiki. With many major updates since the release of DFO, many items are missing. Visit Item Database Project to learn more.
Please remember to click "show preview" before saving the page.
Thanks for the updated logo snafuPop!

User:Dfoplayer/TestSemantics.css

From DFO World Wiki
Jump to: navigation, search

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
/* Format tables for Semantics sorting.
Base css from User:Everspace/CssTomfoolery.css */

.table-classSkillNavSmw {
        margin-top:1em;
        margin-bottom:1em;

        border-collapse:collapse;
        text-align:center;
        border-radius:0.5em;
    }

    /*All cell display*/
    .table-classSkillNavSmw th,
    .table-classSkillNavSmw td {
        border:1px solid #AAA;
        padding:0.3em;

        /*Force breathing room for data*/
        min-width: 2em;
    }

    .table-classSkillNavSmw tr th {
        background-color:#E0E0E0;
    }

    .table-classSkillNavSmw tr:first-child th {
        background-color: #D6D6D6;
    }


    /*Rounded corners*/
    .table-classSkillNavSmw tr:first-child th {
        /*No border on the first row's top*/
        border-top:none;
    }
    .table-classSkillNavSmw tr th:first-child {
        border-left:none;
    }
    .table-classSkillNavSmw tr th:last-child {
        border-right:none;
    }
    .table-classSkillNavSmw tr:first-child th:first-child {
        padding-left: 2em;

    }
    .table-classSkillNavSmw tr:first-child th:last-child {


    }

    /*Row hover highlighting*/
    .table-classSkillNavSmw tr:not(:first-child):hover td{
      background-color:#EEE;
    }