mirror of
https://github.com/zhigang1992/rmq.git
synced 2026-01-12 22:51:53 +08:00
14 lines
290 B
Ruby
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
|