openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

openrat-diff.less (585B)


      1 .or {
      2     &-diff {
      3         &-line {
      4             text-align: right;
      5         }
      6 
      7         &-text {
      8 
      9             /* unchanged */
     10             &--equal {
     11             }
     12 
     13             /* removed */
     14             &--old {
     15                 background-color: #f88989;
     16                 color: black;
     17             }
     18 
     19             /* new */
     20             &--new {
     21                 background-color: #7bad7b;
     22                 color: black;
     23             }
     24 
     25             /* changed */
     26             &--notequal {
     27                 background-color: #cbcb16;
     28                 color: black;
     29             }
     30         }
     31     }
     32 }