romo 0.17.1 → 0.18.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile +6 -3
- data/assets/css/romo/_mixins.scss +190 -60
- data/assets/css/romo/_vars.scss +262 -100
- data/assets/css/romo/base.scss +0 -106
- data/assets/css/romo/buttons.scss +58 -68
- data/assets/css/romo/colors.scss +212 -0
- data/assets/css/romo/datepicker.scss +2 -2
- data/assets/css/romo/grid_table.scss +215 -70
- data/assets/css/romo/labels.scss +39 -13
- data/assets/css/romo/table.scss +151 -51
- data/assets/js/romo/ajax.js +114 -0
- data/assets/js/romo/date.js +310 -0
- data/assets/js/romo/datepicker.js +35 -194
- data/assets/js/romo/dropdown.js +6 -6
- data/assets/js/romo/inline.js +3 -3
- data/assets/js/romo/modal.js +6 -6
- data/assets/js/romo/tooltip.js +9 -9
- data/lib/romo/dassets.rb +3 -1
- data/lib/romo/version.rb +1 -1
- data/test/unit/dassets_tests.rb +3 -1
- metadata +5 -3
- data/assets/js/romo/invoke.js +0 -112
@@ -0,0 +1,212 @@
|
|
1
|
+
@import 'css/romo/vars';
|
2
|
+
@import 'css/romo/mixins';
|
3
|
+
|
4
|
+
/* basics */
|
5
|
+
|
6
|
+
.romo-text-base { @include text-base(!important); }
|
7
|
+
.romo-text-alt { @include text-alt(!important); }
|
8
|
+
.romo-text-muted { @include text-muted(!important); }
|
9
|
+
|
10
|
+
.romo-text-base-hover:hover, a.romo-text-base:hover, a.romo-text-base:focus { @include text-base-hover(!important); }
|
11
|
+
.romo-text-alt-hover:hover, a.romo-text-alt:hover, a.romo-text-alt:focus { @include text-alt-hover(!important); }
|
12
|
+
.romo-text-muted-hover:hover, a.romo-text-muted:hover, a.romo-text-muted:focus { @include text-muted-hover(!important); }
|
13
|
+
|
14
|
+
.romo-bg-base { @include bg-base(!important); }
|
15
|
+
.romo-bg-alt { @include bg-alt(!important); }
|
16
|
+
.romo-bg-muted { @include bg-muted(!important); }
|
17
|
+
|
18
|
+
.romo-bg-base-hover:hover, a.romo-bg-base:hover, a.romo-bg-base:focus { @include bg-base-hover(!important); }
|
19
|
+
.romo-bg-alt-hover:hover, a.romo-bg-alt:hover, a.romo-bg-alt:focus { @include bg-alt-hover(!important); }
|
20
|
+
.romo-bg-muted-hover:hover, a.romo-bg-muted:hover, a.romo-bg-muted:focus { @include bg-muted-hover(!important); }
|
21
|
+
|
22
|
+
.romo-border-base { @include border-base(!important); }
|
23
|
+
.romo-border-alt { @include border-alt(!important); }
|
24
|
+
.romo-border-muted { @include border-muted(!important); }
|
25
|
+
|
26
|
+
.romo-border-muted-hover:hover, a.romo-border-muted:hover, a.romo-border-muted:focus { @include border-muted(!important); }
|
27
|
+
|
28
|
+
/* other */
|
29
|
+
|
30
|
+
.romo-text-border-base { @include text-border-base(!important); }
|
31
|
+
.romo-text-border-alt { @include text-border-alt(!important); }
|
32
|
+
.romo-text-disabled { @include text-disabled(!important); }
|
33
|
+
|
34
|
+
.romo-bg-hover { @include bg-hover(!important); }
|
35
|
+
|
36
|
+
/* emphasis */
|
37
|
+
|
38
|
+
.romo-text-warning { @include text-warning(!important); }
|
39
|
+
.romo-text-danger { @include text-danger(!important); }
|
40
|
+
.romo-text-info { @include text-info(!important); }
|
41
|
+
.romo-text-success { @include text-success(!important); }
|
42
|
+
.romo-text-inverse { @include text-inverse(!important); }
|
43
|
+
|
44
|
+
.romo-text-warning-hover:hover, a.romo-text-warning:hover, a.romo-text-warning:focus { @include text-warning-hover(!important); }
|
45
|
+
.romo-text-danger-hover:hover, a.romo-text-danger:hover, a.romo-text-danger:focus { @include text-danger-hover(!important); }
|
46
|
+
.romo-text-info-hover:hover, a.romo-text-info:hover, a.romo-text-info:focus { @include text-info-hover(!important); }
|
47
|
+
.romo-text-success-hover:hover, a.romo-text-success:hover, a.romo-text-success:focus { @include text-success-hover(!important); }
|
48
|
+
.romo-text-inverse-hover:hover, a.romo-text-inverse:hover, a.romo-text-inverse:focus { @include text-inverse-hover(!important); }
|
49
|
+
|
50
|
+
.romo-bg-warning { @include bg-warning(!important); }
|
51
|
+
.romo-bg-danger { @include bg-danger(!important); }
|
52
|
+
.romo-bg-info { @include bg-info(!important); }
|
53
|
+
.romo-bg-success { @include bg-success(!important); }
|
54
|
+
.romo-bg-inverse { @include bg-inverse(!important); }
|
55
|
+
|
56
|
+
.romo-bg-warning-hover:hover, a.romo-bg-warning:hover, a.romo-bg-warning:focus { @include bg-warning-hover(!important); }
|
57
|
+
.romo-bg-danger-hover:hover, a.romo-bg-danger:hover, a.romo-bg-danger:focus { @include bg-danger-hover(!important); }
|
58
|
+
.romo-bg-info-hover:hover, a.romo-bg-info:hover, a.romo-bg-info:focus { @include bg-info-hover(!important); }
|
59
|
+
.romo-bg-success-hover:hover, a.romo-bg-success:hover, a.romo-bg-success:focus { @include bg-success-hover(!important); }
|
60
|
+
.romo-bg-inverse-hover:hover, a.romo-bg-inverse:hover, a.romo-bg-inverse:focus { @include bg-inverse-hover(!important); }
|
61
|
+
|
62
|
+
.romo-border-warning { @include border-warning(!important); }
|
63
|
+
.romo-border-danger { @include border-danger(!important); }
|
64
|
+
.romo-border-info { @include border-info(!important); }
|
65
|
+
.romo-border-success { @include border-success(!important); }
|
66
|
+
.romo-border-inverse { @include border-inverse(!important); }
|
67
|
+
|
68
|
+
.romo-border-warning-hover:hover, a.romo-border-warning:hover, a.romo-border-warning:focus { @include border-warning(!important); }
|
69
|
+
.romo-border-danger-hover:hover, a.romo-border-danger:hover, a.romo-border-danger:focus { @include border-danger(!important); }
|
70
|
+
.romo-border-info-hover:hover, a.romo-border-info:hover, a.romo-border-info:focus { @include border-info(!important); }
|
71
|
+
.romo-border-success-hover:hover, a.romo-border-success:hover, a.romo-border-success:focus { @include border-success(!important); }
|
72
|
+
.romo-border-inverse-hover:hover, a.romo-border-inverse:hover, a.romo-border-inverse:focus { @include border-inverse(!important); }
|
73
|
+
|
74
|
+
/* emphasis */
|
75
|
+
|
76
|
+
.romo-text-dark-red { @include text-dark-red(!important); }
|
77
|
+
.romo-text-red { @include text-red(!important); }
|
78
|
+
.romo-text-light-red { @include text-light-red(!important); }
|
79
|
+
.romo-text-pastel-red { @include text-pastel-red(!important); }
|
80
|
+
.romo-text-dark-orange { @include text-dark-orange(!important); }
|
81
|
+
.romo-text-orange { @include text-orange(!important); }
|
82
|
+
.romo-text-yellow { @include text-yellow(!important); }
|
83
|
+
.romo-text-pastel-yellow { @include text-pastel-yellow(!important); }
|
84
|
+
.romo-text-purple { @include text-purple(!important); }
|
85
|
+
.romo-text-light-purple { @include text-light-purple(!important); }
|
86
|
+
.romo-text-dark-pink { @include text-dark-pink(!important); }
|
87
|
+
.romo-text-hot-pink { @include text-hot-pink(!important); }
|
88
|
+
.romo-text-pink { @include text-pink(!important); }
|
89
|
+
.romo-text-dark-green { @include text-dark-green(!important); }
|
90
|
+
.romo-text-green { @include text-green(!important); }
|
91
|
+
.romo-text-light-green { @include text-light-green(!important); }
|
92
|
+
.romo-text-pastel-green { @include text-pastel-green(!important); }
|
93
|
+
.romo-text-navy { @include text-navy(!important); }
|
94
|
+
.romo-text-dark-blue { @include text-dark-blue(!important); }
|
95
|
+
.romo-text-blue { @include text-blue(!important); }
|
96
|
+
.romo-text-light-blue { @include text-light-blue(!important); }
|
97
|
+
.romo-text-pastel-blue { @include text-pastel-blue(!important); }
|
98
|
+
|
99
|
+
.romo-text-dark-red-hover:hover, a.romo-text-dark-red:hover, a.romo-text-dark-red:focus { @include text-dark-red-hover(!important); }
|
100
|
+
.romo-text-red-hover:hover, a.romo-text-red:hover, a.romo-text-red:focus { @include text-red-hover(!important); }
|
101
|
+
.romo-text-light-red-hover:hover, a.romo-text-light-red:hover, a.romo-text-light-red:focus { @include text-light-red-hover(!important); }
|
102
|
+
.romo-text-pastel-red-hover:hover, a.romo-text-pastel-red:hover, a.romo-text-pastel-red:focus { @include text-pastel-red-hover(!important); }
|
103
|
+
.romo-text-dark-orange-hover:hover, a.romo-text-dark-orange:hover, a.romo-text-dark-orange:focus { @include text-dark-orange-hover(!important); }
|
104
|
+
.romo-text-orange-hover:hover, a.romo-text-orange:hover, a.romo-text-orange:focus { @include text-orange-hover(!important); }
|
105
|
+
.romo-text-yellow-hover:hover, a.romo-text-yellow:hover, a.romo-text-yellow:focus { @include text-yellow-hover(!important); }
|
106
|
+
.romo-text-pastel-yellow-hover:hover, a.romo-text-pastel-yellow:hover, a.romo-text-pastel-yellow:focus { @include text-pastel-yellow-hover(!important); }
|
107
|
+
.romo-text-purple-hover:hover, a.romo-text-purple:hover, a.romo-text-purple:focus { @include text-purple-hover(!important); }
|
108
|
+
.romo-text-light-purple-hover:hover, a.romo-text-light-purple:hover, a.romo-text-light-purple:focus { @include text-light-purple-hover(!important); }
|
109
|
+
.romo-text-dark-pink-hover:hover, a.romo-text-dark-pink:hover, a.romo-text-dark-pink:focus { @include text-dark-pink-hover(!important); }
|
110
|
+
.romo-text-hot-pink-hover:hover, a.romo-text-hot-pink:hover, a.romo-text-hot-pink:focus { @include text-hot-pink-hover(!important); }
|
111
|
+
.romo-text-pink-hover:hover, a.romo-text-pink:hover, a.romo-text-pink:focus { @include text-pink-hover(!important); }
|
112
|
+
.romo-text-dark-green-hover:hover, a.romo-text-dark-green:hover, a.romo-text-dark-green:focus { @include text-dark-green-hover(!important); }
|
113
|
+
.romo-text-green-hover:hover, a.romo-text-green:hover, a.romo-text-green:focus { @include text-green-hover(!important); }
|
114
|
+
.romo-text-light-green-hover:hover, a.romo-text-light-green:hover, a.romo-text-light-green:focus { @include text-light-green-hover(!important); }
|
115
|
+
.romo-text-pastel-green-hover:hover, a.romo-text-pastel-green:hover, a.romo-text-pastel-green:focus { @include text-pastel-green-hover(!important); }
|
116
|
+
.romo-text-navy-hover:hover, a.romo-text-navy:hover, a.romo-text-navy:focus { @include text-navy-hover(!important); }
|
117
|
+
.romo-text-dark-blue-hover:hover, a.romo-text-dark-blue:hover, a.romo-text-dark-blue:focus { @include text-dark-blue-hover(!important); }
|
118
|
+
.romo-text-blue-hover:hover, a.romo-text-blue:hover, a.romo-text-blue:focus { @include text-blue-hover(!important); }
|
119
|
+
.romo-text-light-blue-hover:hover, a.romo-text-light-blue:hover, a.romo-text-light-blue:focus { @include text-light-blue-hover(!important); }
|
120
|
+
.romo-text-pastel-blue-hover:hover, a.romo-text-pastel-blue:hover, a.romo-text-pastel-blue:focus { @include text-pastel-blue-hover(!important); }
|
121
|
+
|
122
|
+
.romo-bg-dark-red { @include bg-dark-red(!important); }
|
123
|
+
.romo-bg-red { @include bg-red(!important); }
|
124
|
+
.romo-bg-light-red { @include bg-light-red(!important); }
|
125
|
+
.romo-bg-pastel-red { @include bg-pastel-red(!important); }
|
126
|
+
.romo-bg-dark-orange { @include bg-dark-orange(!important); }
|
127
|
+
.romo-bg-orange { @include bg-orange(!important); }
|
128
|
+
.romo-bg-yellow { @include bg-yellow(!important); }
|
129
|
+
.romo-bg-pastel-yellow { @include bg-pastel-yellow(!important); }
|
130
|
+
.romo-bg-purple { @include bg-purple(!important); }
|
131
|
+
.romo-bg-light-purple { @include bg-light-purple(!important); }
|
132
|
+
.romo-bg-dark-pink { @include bg-dark-pink(!important); }
|
133
|
+
.romo-bg-hot-pink { @include bg-hot-pink(!important); }
|
134
|
+
.romo-bg-pink { @include bg-pink(!important); }
|
135
|
+
.romo-bg-dark-green { @include bg-dark-green(!important); }
|
136
|
+
.romo-bg-green { @include bg-green(!important); }
|
137
|
+
.romo-bg-light-green { @include bg-light-green(!important); }
|
138
|
+
.romo-bg-pastel-green { @include bg-pastel-green(!important); }
|
139
|
+
.romo-bg-navy { @include bg-navy(!important); }
|
140
|
+
.romo-bg-dark-blue { @include bg-dark-blue(!important); }
|
141
|
+
.romo-bg-blue { @include bg-blue(!important); }
|
142
|
+
.romo-bg-light-blue { @include bg-light-blue(!important); }
|
143
|
+
.romo-bg-pastel-blue { @include bg-pastel-blue(!important); }
|
144
|
+
|
145
|
+
.romo-bg-dark-red-hover:hover, a.romo-bg-dark-red-hover:hover, a.romo-bg-dark-red-hover:focus { @include bg-dark-red-hover(!important); }
|
146
|
+
.romo-bg-red-hover:hover, a.romo-bg-red-hover:hover, a.romo-bg-red-hover:focus { @include bg-red-hover(!important); }
|
147
|
+
.romo-bg-light-red-hover:hover, a.romo-bg-light-red-hover:hover, a.romo-bg-light-red-hover:focus { @include bg-light-red-hover(!important); }
|
148
|
+
.romo-bg-pastel-red-hover:hover, a.romo-bg-pastel-red-hover:hover, a.romo-bg-pastel-red-hover:focus { @include bg-pastel-red-hover(!important); }
|
149
|
+
.romo-bg-dark-orange-hover:hover, a.romo-bg-dark-orange-hover:hover, a.romo-bg-dark-orange-hover:focus { @include bg-dark-orange-hover(!important); }
|
150
|
+
.romo-bg-orange-hover:hover, a.romo-bg-orange-hover:hover, a.romo-bg-orange-hover:focus { @include bg-orange-hover(!important); }
|
151
|
+
.romo-bg-yellow-hover:hover, a.romo-bg-yellow-hover:hover, a.romo-bg-yellow-hover:focus { @include bg-yellow-hover(!important); }
|
152
|
+
.romo-bg-pastel-yellow-hover:hover, a.romo-bg-pastel-yellow-hover:hover, a.romo-bg-pastel-yellow-hover:focus { @include bg-pastel-yellow-hover(!important); }
|
153
|
+
.romo-bg-purple-hover:hover, a.romo-bg-purple-hover:hover, a.romo-bg-purple-hover:focus { @include bg-purple-hover(!important); }
|
154
|
+
.romo-bg-light-purple-hover:hover, a.romo-bg-light-purple-hover:hover, a.romo-bg-light-purple-hover:focus { @include bg-light-purple-hover(!important); }
|
155
|
+
.romo-bg-dark-pink-hover:hover, a.romo-bg-dark-pink-hover:hover, a.romo-bg-dark-pink-hover:focus { @include bg-dark-pink-hover(!important); }
|
156
|
+
.romo-bg-hot-pink-hover:hover, a.romo-bg-hot-pink-hover:hover, a.romo-bg-hot-pink-hover:focus { @include bg-hot-pink-hover(!important); }
|
157
|
+
.romo-bg-pink-hover:hover, a.romo-bg-pink-hover:hover, a.romo-bg-pink-hover:focus { @include bg-pink-hover(!important); }
|
158
|
+
.romo-bg-dark-green-hover:hover, a.romo-bg-dark-green-hover:hover, a.romo-bg-dark-green-hover:focus { @include bg-dark-green-hover(!important); }
|
159
|
+
.romo-bg-green-hover:hover, a.romo-bg-green-hover:hover, a.romo-bg-green-hover:focus { @include bg-green-hover(!important); }
|
160
|
+
.romo-bg-light-green-hover:hover, a.romo-bg-light-green-hover:hover, a.romo-bg-light-green-hover:focus { @include bg-light-green-hover(!important); }
|
161
|
+
.romo-bg-pastel-green-hover:hover, a.romo-bg-pastel-green-hover:hover, a.romo-bg-pastel-green-hover:focus { @include bg-pastel-green-hover(!important); }
|
162
|
+
.romo-bg-navy-hover:hover, a.romo-bg-navy-hover:hover, a.romo-bg-navy-hover:focus { @include bg-navy-hover(!important); }
|
163
|
+
.romo-bg-dark-blue-hover:hover, a.romo-bg-dark-blue-hover:hover, a.romo-bg-dark-blue-hover:focus { @include bg-dark-blue-hover(!important); }
|
164
|
+
.romo-bg-blue-hover:hover, a.romo-bg-blue-hover:hover, a.romo-bg-blue-hover:focus { @include bg-blue-hover(!important); }
|
165
|
+
.romo-bg-light-blue-hover:hover, a.romo-bg-light-blue-hover:hover, a.romo-bg-light-blue-hover:focus { @include bg-light-blue-hover(!important); }
|
166
|
+
.romo-bg-pastel-blue-hover:hover, a.romo-bg-pastel-blue-hover:hover, a.romo-bg-pastel-blue-hover:focus { @include bg-pastel-blue-hover(!important); }
|
167
|
+
|
168
|
+
.romo-border-dark-red { @include border-dark-red(!important); }
|
169
|
+
.romo-border-red { @include border-red(!important); }
|
170
|
+
.romo-border-light-red { @include border-light-red(!important); }
|
171
|
+
.romo-border-pastel-red { @include border-pastel-red(!important); }
|
172
|
+
.romo-border-dark-orange { @include border-dark-orange(!important); }
|
173
|
+
.romo-border-orange { @include border-orange(!important); }
|
174
|
+
.romo-border-yellow { @include border-yellow(!important); }
|
175
|
+
.romo-border-pastel-yellow { @include border-pastel-yellow(!important); }
|
176
|
+
.romo-border-purple { @include border-purple(!important); }
|
177
|
+
.romo-border-light-purple { @include border-light-purple(!important); }
|
178
|
+
.romo-border-dark-pink { @include border-dark-pink(!important); }
|
179
|
+
.romo-border-hot-pink { @include border-hot-pink(!important); }
|
180
|
+
.romo-border-pink { @include border-pink(!important); }
|
181
|
+
.romo-border-dark-green { @include border-dark-green(!important); }
|
182
|
+
.romo-border-pastel-green { @include border-pastel-green(!important); }
|
183
|
+
.romo-border-green { @include border-green(!important); }
|
184
|
+
.romo-border-light-green { @include border-light-green(!important); }
|
185
|
+
.romo-border-navy { @include border-navy(!important); }
|
186
|
+
.romo-border-dark-blue { @include border-dark-blue(!important); }
|
187
|
+
.romo-border-blue { @include border-blue(!important); }
|
188
|
+
.romo-border-light-blue { @include border-light-blue(!important); }
|
189
|
+
.romo-border-pastel-blue { @include border-pastel-blue(!important); }
|
190
|
+
|
191
|
+
.romo-border-dark-red-hover:hover, a.romo-border-dark-red-hover:hover, a.romo-border-dark-red-hover:focus { @include border-dark-red(!important); }
|
192
|
+
.romo-border-red-hover:hover, a.romo-border-red-hover:hover, a.romo-border-red-hover:focus { @include border-red(!important); }
|
193
|
+
.romo-border-light-red-hover:hover, a.romo-border-light-red-hover:hover, a.romo-border-light-red-hover:focus { @include border-light-red(!important); }
|
194
|
+
.romo-border-pastel-red-hover:hover, a.romo-border-pastel-red-hover:hover, a.romo-border-pastel-red-hover:focus { @include border-pastel-red(!important); }
|
195
|
+
.romo-border-dark-orange-hover:hover, a.romo-border-dark-orange-hover:hover, a.romo-border-dark-orange-hover:focus { @include border-dark-orange(!important); }
|
196
|
+
.romo-border-orange-hover:hover, a.romo-border-orange-hover:hover, a.romo-border-orange-hover:focus { @include border-orange(!important); }
|
197
|
+
.romo-border-yellow-hover:hover, a.romo-border-yellow-hover:hover, a.romo-border-yellow-hover:focus { @include border-yellow(!important); }
|
198
|
+
.romo-border-pastel-yellow-hover:hover, a.romo-border-pastel-yellow-hover:hover, a.romo-border-pastel-yellow-hover:focus { @include border-pastel-yellow(!important); }
|
199
|
+
.romo-border-purple-hover:hover, a.romo-border-purple-hover:hover, a.romo-border-purple-hover:focus { @include border-purple(!important); }
|
200
|
+
.romo-border-light-purple-hover:hover, a.romo-border-light-purple-hover:hover, a.romo-border-light-purple-hover:focus { @include border-light-purple(!important); }
|
201
|
+
.romo-border-dark-pink-hover:hover, a.romo-border-dark-pink-hover:hover, a.romo-border-dark-pink-hover:focus { @include border-dark-pink(!important); }
|
202
|
+
.romo-border-hot-pink-hover:hover, a.romo-border-hot-pink-hover:hover, a.romo-border-hot-pink-hover:focus { @include border-hot-pink(!important); }
|
203
|
+
.romo-border-pink-hover:hover, a.romo-border-pink-hover:hover, a.romo-border-pink-hover:focus { @include border-pink(!important); }
|
204
|
+
.romo-border-dark-green-hover:hover, a.romo-border-dark-green-hover:hover, a.romo-border-dark-green-hover:focus { @include border-dark-green(!important); }
|
205
|
+
.romo-border-green-hover:hover, a.romo-border-green-hover:hover, a.romo-border-green-hover:focus { @include border-green(!important); }
|
206
|
+
.romo-border-light-green-hover:hover, a.romo-border-light-green-hover:hover, a.romo-border-light-green-hover:focus { @include border-light-green(!important); }
|
207
|
+
.romo-border-pastel-green-hover:hover, a.romo-border-pastel-green-hover:hover, a.romo-border-pastel-green-hover:focus { @include border-pastel-green(!important); }
|
208
|
+
.romo-border-navy-hover:hover, a.romo-border-navy-hover:hover, a.romo-border-navy-hover:focus { @include border-navy(!important); }
|
209
|
+
.romo-border-dark-blue-hover:hover, a.romo-border-dark-blue-hover:hover, a.romo-border-dark-blue-hover:focus { @include border-dark-blue(!important); }
|
210
|
+
.romo-border-blue-hover:hover, a.romo-border-blue-hover:hover, a.romo-border-blue-hover:focus { @include border-blue(!important); }
|
211
|
+
.romo-border-light-blue-hover:hover, a.romo-border-light-blue-hover:hover, a.romo-border-light-blue-hover:focus { @include border-light-blue(!important); }
|
212
|
+
.romo-border-pastel-blue-hover:hover, a.romo-border-pastel-blue-hover:hover, a.romo-border-pastel-blue-hover:focus { @include border-pastel-blue(!important); }
|
@@ -45,13 +45,13 @@
|
|
45
45
|
}
|
46
46
|
|
47
47
|
.romo-datepicker-calendar TD.romo-datepicker-day-weekend {
|
48
|
-
background: $
|
48
|
+
background: $altBgColor;
|
49
49
|
}
|
50
50
|
|
51
51
|
.romo-datepicker-calendar .romo-datepicker-prev:hover,
|
52
52
|
.romo-datepicker-calendar .romo-datepicker-next:hover,
|
53
53
|
.romo-datepicker-calendar TD.romo-datepicker-day.romo-datepicker-highlight:not(.disabled) {
|
54
|
-
background: darken($
|
54
|
+
background: darken($altBgColor, 10%);
|
55
55
|
}
|
56
56
|
|
57
57
|
.romo-datepicker-calendar TD.romo-datepicker-day.disabled {
|
@@ -31,15 +31,6 @@ ol.romo-grid-table { @include list-unstyled(!important); }
|
|
31
31
|
.romo-grid-table-striped.romo-grid-table-header.romo-grid-table-striped-alt > .romo-row:nth-child(even) { @include bg-base; }
|
32
32
|
.romo-grid-table-striped.romo-grid-table-striped-alt { @include bg-striped; }
|
33
33
|
|
34
|
-
.romo-grid-table .romo-row.romo-base { @include bg-base(!important); }
|
35
|
-
.romo-grid-table .romo-row.romo-alt { @include bg-alt(!important); }
|
36
|
-
.romo-grid-table .romo-row.romo-muted { @include bg-muted(!important); }
|
37
|
-
.romo-grid-table .romo-row.romo-warning { @include bg-warning(!important); }
|
38
|
-
.romo-grid-table .romo-row.romo-error { @include bg-error(!important); }
|
39
|
-
.romo-grid-table .romo-row.romo-info { @include bg-info(!important); }
|
40
|
-
.romo-grid-table .romo-row.romo-success { @include bg-success(!important); }
|
41
|
-
.romo-grid-table .romo-row.romo-inverse { @include bg-inverse(!important); }
|
42
|
-
|
43
34
|
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row:hover,
|
44
35
|
.romo-grid-table-hover:not(.romo-grid-table-header).romo-grid-table-alt > .romo-row:hover,
|
45
36
|
.romo-grid-table-hover:not(.romo-grid-table-header).romo-grid-table-striped > .romo-row:hover,
|
@@ -47,33 +38,16 @@ ol.romo-grid-table { @include list-unstyled(!important); }
|
|
47
38
|
.romo-grid-table-hover.romo-grid-table-header > .romo-row:not(:first-child):hover,
|
48
39
|
.romo-grid-table-hover.romo-grid-table-header.romo-grid-table-alt > .romo-row:not(:first-child):hover { @include bg-hover; }
|
49
40
|
|
50
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-base:hover,
|
51
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-base:not(:first-child):hover { @include bg-base-hover(!important); }
|
52
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-alt:hover,
|
53
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-alt:not(:first-child):hover { @include bg-alt-hover(!important); }
|
54
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-muted:hover,
|
55
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-muted:not(:first-child):hover { @include bg-muted-hover(!important); }
|
56
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-warning:hover,
|
57
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-warning:not(:first-child):hover { @include bg-warning-hover(!important); }
|
58
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-error:hover,
|
59
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-error:not(:first-child):hover { @include bg-error-hover(!important); }
|
60
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-info:hover,
|
61
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-info:not(:first-child):hover { @include bg-info-hover(!important); }
|
62
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-success:hover,
|
63
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-success:not(:first-child):hover { @include bg-success-hover(!important); }
|
64
|
-
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-inverse:hover,
|
65
|
-
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-inverse:not(:first-child):hover { @include bg-inverse-hover(!important); }
|
66
|
-
|
67
41
|
.romo-grid-table-border,
|
68
|
-
.romo-grid-table-border1 { @include border1;
|
69
|
-
.romo-grid-table-border0 { @include border0;
|
70
|
-
.romo-grid-table-border2 { @include border2;
|
42
|
+
.romo-grid-table-border1 { @include border1; }
|
43
|
+
.romo-grid-table-border0 { @include border0; }
|
44
|
+
.romo-grid-table-border2 { @include border2; }
|
71
45
|
.romo-grid-table-border-none { @include border-style(none); }
|
72
46
|
|
73
47
|
.romo-grid-table.romo-grid-table-border > .romo-row,
|
74
|
-
.romo-grid-table.romo-grid-table-border1 > .romo-row { @include border1-bottom;
|
75
|
-
.romo-grid-table.romo-grid-table-border0 > .romo-row { @include border0-bottom;
|
76
|
-
.romo-grid-table.romo-grid-table-border2 > .romo-row { @include border2-bottom;
|
48
|
+
.romo-grid-table.romo-grid-table-border1 > .romo-row { @include border1-bottom; }
|
49
|
+
.romo-grid-table.romo-grid-table-border0 > .romo-row { @include border0-bottom; }
|
50
|
+
.romo-grid-table.romo-grid-table-border2 > .romo-row { @include border2-bottom; }
|
77
51
|
.romo-grid-table.romo-grid-table-border-none > .romo-row { @include border-style(none); }
|
78
52
|
|
79
53
|
.romo-grid-table.romo-grid-table-border > .romo-row > .romo-span,
|
@@ -85,56 +59,227 @@ ol.romo-grid-table { @include list-unstyled(!important); }
|
|
85
59
|
.romo-grid-table[class*="romo-grid-table-border"] > .romo-row > .romo-span:last-child { @include rm-border-right; }
|
86
60
|
.romo-grid-table[class*="romo-grid-table-border"] > .romo-row:last-child { @include rm-border-bottom; }
|
87
61
|
|
88
|
-
.romo-grid-table-
|
62
|
+
.romo-grid-table.romo-grid-table-pad > .romo-row > .romo-span,
|
63
|
+
.romo-grid-table.romo-grid-table-pad1 > .romo-row > .romo-span { @include pad1; }
|
64
|
+
.romo-grid-table.romo-grid-table-pad0 > .romo-row > .romo-span { @include pad0; }
|
65
|
+
.romo-grid-table.romo-grid-table-pad2 > .romo-row > .romo-span { @include pad2; }
|
66
|
+
.romo-grid-table.romo-grid-table-rm-pad > .romo-row > .romo-span { @include rm-pad; }
|
67
|
+
|
68
|
+
.romo-grid-table.romo-table-pad-top > .romo-row > .romo-span,
|
69
|
+
.romo-grid-table.romo-table-pad1-top > .romo-row > .romo-span { @include pad1-top; }
|
70
|
+
.romo-grid-table.romo-table-pad0-top > .romo-row > .romo-span { @include pad0-top; }
|
71
|
+
.romo-grid-table.romo-table-pad2-top > .romo-row > .romo-span { @include pad2-top; }
|
72
|
+
.romo-grid-table.romo-table-rm-pad-top > .romo-row > .romo-span { @include rm-pad-top; }
|
73
|
+
|
74
|
+
.romo-grid-table.romo-table-pad-right > .romo-row > .romo-span,
|
75
|
+
.romo-grid-table.romo-table-pad1-right > .romo-row > .romo-span { @include pad1-right; }
|
76
|
+
.romo-grid-table.romo-table-pad0-right > .romo-row > .romo-span { @include pad0-right; }
|
77
|
+
.romo-grid-table.romo-table-pad2-right > .romo-row > .romo-span { @include pad2-right; }
|
78
|
+
.romo-grid-table.romo-table-rm-pad-right > .romo-row > .romo-span { @include rm-pad-right; }
|
79
|
+
|
80
|
+
.romo-grid-table.romo-table-pad-bottom > .romo-row > .romo-span,
|
81
|
+
.romo-grid-table.romo-table-pad1-bottom > .romo-row > .romo-span { @include pad1-bottom; }
|
82
|
+
.romo-grid-table.romo-table-pad0-bottom > .romo-row > .romo-span { @include pad0-bottom; }
|
83
|
+
.romo-grid-table.romo-table-pad2-bottom > .romo-row > .romo-span { @include pad2-bottom; }
|
84
|
+
.romo-grid-table.romo-table-rm-pad-bottom > .romo-row > .romo-span { @include rm-pad-bottom; }
|
85
|
+
|
86
|
+
.romo-grid-table.romo-table-pad-left > .romo-row > .romo-span,
|
87
|
+
.romo-grid-table.romo-table-pad1-left > .romo-row > .romo-span { @include pad1-left; }
|
88
|
+
.romo-grid-table.romo-table-pad0-left > .romo-row > .romo-span { @include pad0-left; }
|
89
|
+
.romo-grid-table.romo-table-pad2-left > .romo-row > .romo-span { @include pad2-left; }
|
90
|
+
.romo-grid-table.romo-table-rm-pad-left > .romo-row > .romo-span { @include rm-pad-left; }
|
91
|
+
|
92
|
+
/* emphasis colored rows */
|
93
|
+
|
94
|
+
.romo-grid-table .romo-row.romo-base { @include bg-base(!important); }
|
95
|
+
.romo-grid-table .romo-row.romo-alt { @include bg-alt(!important); }
|
96
|
+
.romo-grid-table .romo-row.romo-muted { @include bg-muted(!important); }
|
97
|
+
.romo-grid-table .romo-row.romo-warning { @include bg-warning(!important); }
|
98
|
+
.romo-grid-table .romo-row.romo-danger { @include bg-danger(!important); }
|
99
|
+
.romo-grid-table .romo-row.romo-info { @include bg-info(!important); }
|
100
|
+
.romo-grid-table .romo-row.romo-success { @include bg-success(!important); }
|
101
|
+
.romo-grid-table .romo-row.romo-inverse { @include bg-inverse(!important); }
|
102
|
+
|
103
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-base:hover,
|
104
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-base:not(:first-child):hover { @include bg-base-hover(!important); }
|
105
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-alt:hover,
|
106
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-alt:not(:first-child):hover { @include bg-alt-hover(!important); }
|
107
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-muted:hover,
|
108
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-muted:not(:first-child):hover { @include bg-muted-hover(!important); }
|
109
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-warning:hover,
|
110
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-warning:not(:first-child):hover { @include bg-warning-hover(!important); }
|
111
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-danger:hover,
|
112
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-danger:not(:first-child):hover { @include bg-danger-hover(!important); }
|
113
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-info:hover,
|
114
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-info:not(:first-child):hover { @include bg-info-hover(!important); }
|
115
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-success:hover,
|
116
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-success:not(:first-child):hover { @include bg-success-hover(!important); }
|
117
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-inverse:hover,
|
118
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-inverse:not(:first-child):hover { @include bg-inverse-hover(!important); }
|
119
|
+
|
120
|
+
/* explicit colored rows */
|
121
|
+
|
122
|
+
.romo-grid-table .romo-row.romo-dark-red { @include bg-dark-red(!important); }
|
123
|
+
.romo-grid-table .romo-row.romo-red { @include bg-red(!important); }
|
124
|
+
.romo-grid-table .romo-row.romo-light-red { @include bg-light-red(!important); }
|
125
|
+
.romo-grid-table .romo-row.romo-pastel-red { @include bg-pastel-red(!important); }
|
126
|
+
.romo-grid-table .romo-row.romo-dark-orange { @include bg-dark-orange(!important); }
|
127
|
+
.romo-grid-table .romo-row.romo-orange { @include bg-orange(!important); }
|
128
|
+
.romo-grid-table .romo-row.romo-yellow { @include bg-yellow(!important); }
|
129
|
+
.romo-grid-table .romo-row.romo-pastel-yellow { @include bg-pastel-yellow(!important); }
|
130
|
+
.romo-grid-table .romo-row.romo-purple { @include bg-purple(!important); }
|
131
|
+
.romo-grid-table .romo-row.romo-light-purple { @include bg-light-purple(!important); }
|
132
|
+
.romo-grid-table .romo-row.romo-dark-pink { @include bg-dark-pink(!important); }
|
133
|
+
.romo-grid-table .romo-row.romo-hot-pink { @include bg-hot-pink(!important); }
|
134
|
+
.romo-grid-table .romo-row.romo-pink { @include bg-pink(!important); }
|
135
|
+
.romo-grid-table .romo-row.romo-dark-green { @include bg-dark-green(!important); }
|
136
|
+
.romo-grid-table .romo-row.romo-green { @include bg-green(!important); }
|
137
|
+
.romo-grid-table .romo-row.romo-light-green { @include bg-light-green(!important); }
|
138
|
+
.romo-grid-table .romo-row.romo-pastel-green { @include bg-pastel-green(!important); }
|
139
|
+
.romo-grid-table .romo-row.romo-navy { @include bg-navy(!important); }
|
140
|
+
.romo-grid-table .romo-row.romo-dark-blue { @include bg-dark-blue(!important); }
|
141
|
+
.romo-grid-table .romo-row.romo-blue { @include bg-blue(!important); }
|
142
|
+
.romo-grid-table .romo-row.romo-light-blue { @include bg-light-blue(!important); }
|
143
|
+
.romo-grid-table .romo-row.romo-pastel-blue { @include bg-pastel-blue(!important); }
|
144
|
+
|
145
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-dark-red:hover,
|
146
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-dark-red:not(:first-child):hover { @include bg-dark-red-hover(!important); }
|
147
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-red:hover,
|
148
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-red:not(:first-child):hover { @include bg-red-hover(!important); }
|
149
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-light-red:hover,
|
150
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-light-red:not(:first-child):hover { @include bg-light-red-hover(!important); }
|
151
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-pastel-red:hover,
|
152
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-pastel-red:not(:first-child):hover { @include bg-pastel-red-hover(!important); }
|
153
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-dark-orange:hover,
|
154
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-dark-orange:not(:first-child):hover { @include bg-dark-orange-hover(!important); }
|
155
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-orange:hover,
|
156
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-orange:not(:first-child):hover { @include bg-orange-hover(!important); }
|
157
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-yellow:hover,
|
158
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-yellow:not(:first-child):hover { @include bg-yellow-hover(!important); }
|
159
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-pastel-yellow:hover,
|
160
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-pastel-yellow:not(:first-child):hover { @include bg-pastel-yellow-hover(!important); }
|
161
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-purple:hover,
|
162
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-purple:not(:first-child):hover { @include bg-purple-hover(!important); }
|
163
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-light-purple:hover,
|
164
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-light-purple:not(:first-child):hover { @include bg-light-purple-hover(!important); }
|
165
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-dark-pink:hover,
|
166
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-dark-pink:not(:first-child):hover { @include bg-dark-pink-hover(!important); }
|
167
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-hot-pink:hover,
|
168
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-hot-pink:not(:first-child):hover { @include bg-hot-pink-hover(!important); }
|
169
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-pink:hover,
|
170
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-pink:not(:first-child):hover { @include bg-pink-hover(!important); }
|
171
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-dark-green:hover,
|
172
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-dark-green:not(:first-child):hover { @include bg-dark-green-hover(!important); }
|
173
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-green:hover,
|
174
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-green:not(:first-child):hover { @include bg-green-hover(!important); }
|
175
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-light-green:hover,
|
176
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-light-green:not(:first-child):hover { @include bg-light-green-hover(!important); }
|
177
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-pastel-green:hover,
|
178
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-pastel-green:not(:first-child):hover { @include bg-pastel-green-hover(!important); }
|
179
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-navy:hover,
|
180
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-navy:not(:first-child):hover { @include bg-navy-hover(!important); }
|
181
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-dark-blue:hover,
|
182
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-dark-blue:not(:first-child):hover { @include bg-dark-blue-hover(!important); }
|
183
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-blue:hover,
|
184
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-blue:not(:first-child):hover { @include bg-blue-hover(!important); }
|
185
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-light-blue:hover,
|
186
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-light-blue:not(:first-child):hover { @include bg-light-blue-hover(!important); }
|
187
|
+
.romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-pastel-blue:hover,
|
188
|
+
.romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-pastel-blue:not(:first-child):hover { @include bg-pastel-blue-hover(!important); }
|
189
|
+
|
190
|
+
/* emphasis colored borders */
|
191
|
+
|
192
|
+
.romo-grid-table-border-muted { @include border-muted; }
|
89
193
|
.romo-grid-table-border-warning { @include border-warning; }
|
90
|
-
.romo-grid-table-border-
|
91
|
-
.romo-grid-table-border-info { @include border-info;
|
194
|
+
.romo-grid-table-border-danger { @include border-danger; }
|
195
|
+
.romo-grid-table-border-info { @include border-info; }
|
92
196
|
.romo-grid-table-border-success { @include border-success; }
|
93
197
|
.romo-grid-table-border-inverse { @include border-inverse; }
|
94
|
-
.romo-grid-table-border-alt { @include border-alt;
|
198
|
+
.romo-grid-table-border-alt { @include border-alt; }
|
95
199
|
|
96
|
-
.romo-grid-table-border-muted > .romo-row { @include border-muted;
|
200
|
+
.romo-grid-table-border-muted > .romo-row { @include border-muted; }
|
97
201
|
.romo-grid-table-border-warning > .romo-row { @include border-warning; }
|
98
|
-
.romo-grid-table-border-
|
99
|
-
.romo-grid-table-border-info > .romo-row { @include border-info;
|
202
|
+
.romo-grid-table-border-danger > .romo-row { @include border-danger; }
|
203
|
+
.romo-grid-table-border-info > .romo-row { @include border-info; }
|
100
204
|
.romo-grid-table-border-success > .romo-row { @include border-success; }
|
101
205
|
.romo-grid-table-border-inverse > .romo-row { @include border-inverse; }
|
102
|
-
.romo-grid-table-border-alt > .romo-row { @include border-alt;
|
206
|
+
.romo-grid-table-border-alt > .romo-row { @include border-alt; }
|
103
207
|
|
104
|
-
.romo-grid-table-border-muted > .romo-row > .romo-span { @include border-muted;
|
208
|
+
.romo-grid-table-border-muted > .romo-row > .romo-span { @include border-muted; }
|
105
209
|
.romo-grid-table-border-warning > .romo-row > .romo-span { @include border-warning; }
|
106
|
-
.romo-grid-table-border-
|
107
|
-
.romo-grid-table-border-info > .romo-row > .romo-span { @include border-info;
|
210
|
+
.romo-grid-table-border-danger > .romo-row > .romo-span { @include border-danger; }
|
211
|
+
.romo-grid-table-border-info > .romo-row > .romo-span { @include border-info; }
|
108
212
|
.romo-grid-table-border-success > .romo-row > .romo-span { @include border-success; }
|
109
213
|
.romo-grid-table-border-inverse > .romo-row > .romo-span { @include border-inverse; }
|
110
|
-
.romo-grid-table-border-alt > .romo-row > .romo-span { @include border-alt;
|
214
|
+
.romo-grid-table-border-alt > .romo-row > .romo-span { @include border-alt; }
|
111
215
|
|
112
|
-
|
113
|
-
.romo-grid-table.romo-grid-table-pad1 > .romo-row > .romo-span { @include pad1; }
|
114
|
-
.romo-grid-table.romo-grid-table-pad0 > .romo-row > .romo-span { @include pad0; }
|
115
|
-
.romo-grid-table.romo-grid-table-pad2 > .romo-row > .romo-span { @include pad2; }
|
116
|
-
.romo-grid-table.romo-grid-table-rm-pad > .romo-row > .romo-span { @include rm-pad; }
|
216
|
+
/* explicit colored borders */
|
117
217
|
|
118
|
-
.romo-grid-table
|
119
|
-
.romo-grid-table
|
120
|
-
.romo-grid-table
|
121
|
-
.romo-grid-table
|
122
|
-
.romo-grid-table
|
218
|
+
.romo-grid-table-border-dark-red { @include border-dark-red; }
|
219
|
+
.romo-grid-table-border-red { @include border-red; }
|
220
|
+
.romo-grid-table-border-light-red { @include border-light-red; }
|
221
|
+
.romo-grid-table-border-pastel-red { @include border-pastel-red; }
|
222
|
+
.romo-grid-table-border-dark-orange { @include border-dark-orange; }
|
223
|
+
.romo-grid-table-border-orange { @include border-orange; }
|
224
|
+
.romo-grid-table-border-yellow { @include border-yellow; }
|
225
|
+
.romo-grid-table-border-pastel-yellow { @include border-pastel-yellow; }
|
226
|
+
.romo-grid-table-border-purple { @include border-purple; }
|
227
|
+
.romo-grid-table-border-light-purple { @include border-light-purple; }
|
228
|
+
.romo-grid-table-border-dark-pink { @include border-dark-pink; }
|
229
|
+
.romo-grid-table-border-hot-pink { @include border-hot-pink; }
|
230
|
+
.romo-grid-table-border-pink { @include border-pink; }
|
231
|
+
.romo-grid-table-border-dark-green { @include border-dark-green; }
|
232
|
+
.romo-grid-table-border-green { @include border-green; }
|
233
|
+
.romo-grid-table-border-light-green { @include border-light-green; }
|
234
|
+
.romo-grid-table-border-pastel-green { @include border-pastel-green; }
|
235
|
+
.romo-grid-table-border-navy { @include border-navy; }
|
236
|
+
.romo-grid-table-border-dark-blue { @include border-dark-blue; }
|
237
|
+
.romo-grid-table-border-blue { @include border-blue; }
|
238
|
+
.romo-grid-table-border-light-blue { @include border-light-blue; }
|
239
|
+
.romo-grid-table-border-pastel-blue { @include border-pastel-blue; }
|
123
240
|
|
124
|
-
.romo-grid-table
|
125
|
-
.romo-grid-table
|
126
|
-
.romo-grid-table
|
127
|
-
.romo-grid-table
|
128
|
-
.romo-grid-table
|
241
|
+
.romo-grid-table-border-dark-red > .romo-row { @include border-dark-red; }
|
242
|
+
.romo-grid-table-border-red > .romo-row { @include border-red; }
|
243
|
+
.romo-grid-table-border-light-red > .romo-row { @include border-light-red; }
|
244
|
+
.romo-grid-table-border-pastel-red > .romo-row { @include border-pastel-red; }
|
245
|
+
.romo-grid-table-border-dark-orange > .romo-row { @include border-dark-orange; }
|
246
|
+
.romo-grid-table-border-orange > .romo-row { @include border-orange; }
|
247
|
+
.romo-grid-table-border-yellow > .romo-row { @include border-yellow; }
|
248
|
+
.romo-grid-table-border-pastel-yellow > .romo-row { @include border-pastel-yellow; }
|
249
|
+
.romo-grid-table-border-purple > .romo-row { @include border-purple; }
|
250
|
+
.romo-grid-table-border-light-purple > .romo-row { @include border-light-purple; }
|
251
|
+
.romo-grid-table-border-dark-pink > .romo-row { @include border-dark-pink; }
|
252
|
+
.romo-grid-table-border-hot-pink > .romo-row { @include border-hot-pink; }
|
253
|
+
.romo-grid-table-border-pink > .romo-row { @include border-pink; }
|
254
|
+
.romo-grid-table-border-dark-green > .romo-row { @include border-dark-green; }
|
255
|
+
.romo-grid-table-border-green > .romo-row { @include border-green; }
|
256
|
+
.romo-grid-table-border-light-green > .romo-row { @include border-light-green; }
|
257
|
+
.romo-grid-table-border-pastel-green > .romo-row { @include border-pastel-green; }
|
258
|
+
.romo-grid-table-border-navy > .romo-row { @include border-navy; }
|
259
|
+
.romo-grid-table-border-dark-blue > .romo-row { @include border-dark-blue; }
|
260
|
+
.romo-grid-table-border-blue > .romo-row { @include border-blue; }
|
261
|
+
.romo-grid-table-border-light-blue > .romo-row { @include border-light-blue; }
|
262
|
+
.romo-grid-table-border-pastel-blue > .romo-row { @include border-pastel-blue; }
|
129
263
|
|
130
|
-
.romo-grid-table
|
131
|
-
.romo-grid-table
|
132
|
-
.romo-grid-table
|
133
|
-
.romo-grid-table
|
134
|
-
.romo-grid-table
|
135
|
-
|
136
|
-
.romo-grid-table
|
137
|
-
.romo-grid-table
|
138
|
-
.romo-grid-table
|
139
|
-
.romo-grid-table
|
140
|
-
.romo-grid-table
|
264
|
+
.romo-grid-table-border-dark-red > .romo-row > .romo-span { @include border-dark-red; }
|
265
|
+
.romo-grid-table-border-red > .romo-row > .romo-span { @include border-red; }
|
266
|
+
.romo-grid-table-border-light-red > .romo-row > .romo-span { @include border-light-red; }
|
267
|
+
.romo-grid-table-border-pastel-red > .romo-row > .romo-span { @include border-pastel-red; }
|
268
|
+
.romo-grid-table-border-dark-orange > .romo-row > .romo-span { @include border-dark-orange; }
|
269
|
+
.romo-grid-table-border-orange > .romo-row > .romo-span { @include border-orange; }
|
270
|
+
.romo-grid-table-border-yellow > .romo-row > .romo-span { @include border-yellow; }
|
271
|
+
.romo-grid-table-border-pastel-yellow > .romo-row > .romo-span { @include border-pastel-yellow; }
|
272
|
+
.romo-grid-table-border-purple > .romo-row > .romo-span { @include border-purple; }
|
273
|
+
.romo-grid-table-border-light-purple > .romo-row > .romo-span { @include border-light-purple; }
|
274
|
+
.romo-grid-table-border-dark-pink > .romo-row > .romo-span { @include border-dark-pink; }
|
275
|
+
.romo-grid-table-border-hot-pink > .romo-row > .romo-span { @include border-hot-pink; }
|
276
|
+
.romo-grid-table-border-pink > .romo-row > .romo-span { @include border-pink; }
|
277
|
+
.romo-grid-table-border-dark-green > .romo-row > .romo-span { @include border-dark-green; }
|
278
|
+
.romo-grid-table-border-green > .romo-row > .romo-span { @include border-green; }
|
279
|
+
.romo-grid-table-border-light-green > .romo-row > .romo-span { @include border-light-green; }
|
280
|
+
.romo-grid-table-border-pastel-green > .romo-row > .romo-span { @include border-pastel-green; }
|
281
|
+
.romo-grid-table-border-navy > .romo-row > .romo-span { @include border-navy; }
|
282
|
+
.romo-grid-table-border-dark-blue > .romo-row > .romo-span { @include border-dark-blue; }
|
283
|
+
.romo-grid-table-border-blue > .romo-row > .romo-span { @include border-blue; }
|
284
|
+
.romo-grid-table-border-light-blue > .romo-row > .romo-span { @include border-light-blue; }
|
285
|
+
.romo-grid-table-border-pastel-blue > .romo-row > .romo-span { @include border-pastel-blue; }
|