Roundcube Community Forum

News and Announcements => News & Announcements => Topic started by: ElasticUser on November 15, 2018, 05:49:50 PM

Title: _variables.less
Post by: ElasticUser on November 15, 2018, 05:49:50 PM
"/* Here you can re-define any of variables from variables.less, colors.less and fontawesome.less */"

I changed (#fff) to (#fff000) in 3 (_variables.less) places as a test, and cleared out the cache, but I don't see the (fff000) color changes.  The re-define sentence is very easy for me to catch on to, but I appear to be missing something.   8)

// Layout elements
@color-layout-border:               @color-black-shade-border;
@color-layout-header:               @color-font;
@color-layout-sidebar-background:   #FFF000;
@color-layout-list-background:      #FFF000;
@color-layout-content-background:   #FFF000;
@color-layout-header-background:    #f4f4f4;
@color-layout-footer-background:    #fff;
Title: Re: _variables.less
Post by: SKaero on November 15, 2018, 06:32:03 PM
.less files need to be complied into actual css files.
Title: Re: _variables.less
Post by: ElasticUser on November 15, 2018, 07:18:25 PM
So I should change (_variables.less) to (_variables.css)?   8)
Title: Re: _variables.less
Post by: SKaero on November 15, 2018, 07:27:59 PM
No that wont work since less isn't valid css. There are directions on how to compile the less files in the README in the elastic skin folder https://github.com/roundcube/roundcubemail/blob/master/skins/elastic/README.md
Title: Re: _variables.less
Post by: ElasticUser on November 15, 2018, 08:00:39 PM
Otay   8)