email-client

A gtk4 Email Client
git clone git://archive.git.mtrnord.blog/erooster-mail/email-client.git
Log | Files | Refs | LICENSE

style.css (510B)


      1 .sidebar {
      2     background-color: grey;
      3 }
      4 
      5 .main {
      6     background-color: green;
      7 }
      8 
      9 .expander title {
     10     border-radius: 0px;
     11     padding: 4px;
     12 }
     13 
     14 .expander title:hover {
     15     background-color: #ececec;
     16 }
     17 
     18 /*
     19 In reality we apply this in code when expanded since gtk doesn't allow this inside of css
     20 
     21 
     22 .expander title {
     23   background-color: #3584e4;
     24   color: white;
     25 }
     26 */
     27 .tree-item {
     28     background-color: transparent;
     29     border-radius: 0px;
     30     padding: 4px;
     31 }
     32 
     33 .tree-item:hover {
     34     background-color: #ececec;
     35 }