Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7599937
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:47:09+00:00 2026-05-30T22:47:09+00:00

I am working on a Rails 3.1 app and need a solution for dynamically

  • 0

I am working on a Rails 3.1 app and need a solution for dynamically compiling css. In my app I am allowing users to set the colors and would like to conditionally use „live compilation” on the one SCSS file that controls all of the colors, all of my other SCSS files still need to be precompiled. After some searching I am stumped on how to procede. Any suggestions would be helpful.

Thanks in advance fou all of your ideas.

Devin

p.s. – I should also mention that I need to use instance variable in the SCSS also.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T22:47:11+00:00Added an answer on May 30, 2026 at 10:47 pm

    You can preprocess your Sass file with ERb. That would allow you to use instance variables set in the controller or view within the .scss file. The file itself could just be treated as normal view, rendered by a controller as part of an action.

    This code is untested, but it should give you a place to start. It assumes you store the user’s color preferences as part of the User model itself.

    First define your custom action on the UsersController:

    # config/routes.rb
    match '/users/:id/styles' => 'users#styles', :as => :user_styles
    

    Link to the “stylesheet” in your layout:

    # app/views/layouts/application.html.erb
    = stylesheet_link_tag 'application', user_styles_path(current_user, :format => 'css')
    

    Define the action in your controller. You could do whatever you want to retrieve the user’s preferences here:

    # app/controllers/users_controller.rb
    class UsersController < ApplicationController
      def styles
        @colors = User.find(params[:id]).colors
      end
    end
    

    That action will automatically render this view:

    # app/views/users/styles.css.scss.erb
    $background-color: <%= @colors[:background] %>;
    
    body {
      background-color: $background-color;
    }
    

    Adapt as needed.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on a Rails app that existing users can invite additional members to
I am working on a Rails 3 app, and I need to return back
I have resque-scheduler working fine in a rails app. Now I need to be
I'm working on a Rails app and am looking to include some functionality from
I'm working on a rails app that has a whole bunch of before filters
I'm working on a Rails app that sends data through a form. I want
I am working on a Rails app that allows you to create a configuration
I'm working on a Rails app that will contain information on a bunch of
So I'm working on a Rails app to get the feeling for the whole
I've been working on a rails app that uses the restful authentication plugin. It

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.