aboutsummaryrefslogtreecommitdiffstats
path: root/demos/controlgroup
Commit message (Expand)AuthorAgeFilesLines
* Controlgroup: Fix rendering of labelsAlexander Schmitz2016-05-261-1/+1
* Controlgroup: Fix quote style in demoScott González2016-02-161-1/+1
* Controlgroup: Update toolbar demo to warn about "this is just a demo"Jörn Zaefferer2015-10-081-2/+3
* Controlgroup: Address review commentsAlexander Schmitz2015-10-081-9/+10
* Controlgroup: Fixes for spinnerAlexander Schmitz2015-10-081-2/+0
* Controlgroup: fixup for spinner and labelAlexander Schmitz2015-10-081-2/+4
* Controlgroup: Add controlgroup labelsAlexander Schmitz2015-10-082-228/+256
* Controlgroup: Add spinner to widgets controlgroup works withAlexander Schmitz2015-10-081-1/+4
* Controlgroup: Fix headers and demosAlexander Schmitz2015-10-083-25/+37
* Controlgroup: Add missing entry to demos bootstrapAlexander Schmitz2015-10-083-36/+6
* Controlgroup: Inital commit of new widgetAlexander Schmitz2015-10-074-98/+90
* Checkboxradio: Initial commit of new widgetAlexander Schmitz2015-10-074-0/+421
mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
class AddNewsCommentsCount < ActiveRecord::Migration[4.2]
  def self.up
    add_column :news, :comments_count, :integer, :default => 0, :null => false
  end

  def self.down
    remove_column :news, :comments_count
  end
end