Files
rmq/app/stylesheets/table_controller_stylesheet.rb

14 lines
290 B
Ruby

class TableControllerStylesheet < ApplicationStylesheet
include TableCellStylesheet
def setup
# Add stylesheet specific setup stuff here.
# Add application specific setup stuff in application_stylesheet.rb
end
def table(st)
st.background_color = color.gray
end
end