flashgrid 2.3.0 → 3.0.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/lib/flashgrid/version.rb +1 -1
- data/vendor/assets/javascripts/affix.js +2 -2
- data/vendor/assets/javascripts/collapse.js +6 -3
- data/vendor/assets/javascripts/modal.js +3 -3
- data/vendor/assets/javascripts/tooltip.js +9 -4
- data/vendor/assets/stylesheets/ad.css.scss +1 -1
- data/vendor/assets/stylesheets/alert.css.scss +3 -3
- data/vendor/assets/stylesheets/breadcrumb.css.scss +3 -3
- data/vendor/assets/stylesheets/button.css.scss +54 -35
- data/vendor/assets/stylesheets/code.css.scss +56 -56
- data/vendor/assets/stylesheets/datepicker.css.scss +16 -12
- data/vendor/assets/stylesheets/dropdown.css.scss +3 -3
- data/vendor/assets/stylesheets/footer.css.scss +6 -6
- data/vendor/assets/stylesheets/form.css.scss +25 -25
- data/vendor/assets/stylesheets/header.css.scss +8 -8
- data/vendor/assets/stylesheets/image.css.scss +1 -1
- data/vendor/assets/stylesheets/label_and_badge.css.scss +2 -2
- data/vendor/assets/stylesheets/link.css.scss +3 -3
- data/vendor/assets/stylesheets/list.css.scss +4 -4
- data/vendor/assets/stylesheets/map.css.scss +1 -1
- data/vendor/assets/stylesheets/modal.css.scss +4 -4
- data/vendor/assets/stylesheets/nav_and_tab.css.scss +18 -18
- data/vendor/assets/stylesheets/pagination.css.scss +3 -3
- data/vendor/assets/stylesheets/panel.css.scss +9 -9
- data/vendor/assets/stylesheets/placeholder.css.scss +3 -3
- data/vendor/assets/stylesheets/popover.css.scss +7 -7
- data/vendor/assets/stylesheets/progress.css.scss +2 -2
- data/vendor/assets/stylesheets/reset.css.scss +2 -2
- data/vendor/assets/stylesheets/switch.css.scss +10 -10
- data/vendor/assets/stylesheets/table.css.scss +8 -8
- data/vendor/assets/stylesheets/timepicker.css.scss +5 -5
- data/vendor/assets/stylesheets/tooltip.css.scss +5 -5
- data/vendor/assets/stylesheets/trunk.css.scss +1 -1
- data/vendor/assets/stylesheets/typography.css.scss +6 -6
- metadata +2 -2
@@ -12,7 +12,7 @@
|
|
12
12
|
z-index: 1060;
|
13
13
|
}
|
14
14
|
.datepicker:before {
|
15
|
-
border-bottom: 7px solid rgba(
|
15
|
+
border-bottom: 7px solid rgba(245,248,250,1);
|
16
16
|
border-right: 7px solid transparent;
|
17
17
|
border-left: 7px solid transparent;
|
18
18
|
content: '';
|
@@ -20,7 +20,7 @@
|
|
20
20
|
position: absolute;
|
21
21
|
}
|
22
22
|
.datepicker:after {
|
23
|
-
border-bottom: 6px solid rgba(
|
23
|
+
border-bottom: 6px solid rgba(245,248,250,1);
|
24
24
|
border-right: 6px solid transparent;
|
25
25
|
border-left: 6px solid transparent;
|
26
26
|
content: '';
|
@@ -36,14 +36,17 @@
|
|
36
36
|
.datepicker.datepicker-orient-bottom:before {
|
37
37
|
bottom: -7px;
|
38
38
|
border-bottom: 0;
|
39
|
-
border-top: 7px solid rgba(
|
39
|
+
border-top: 7px solid rgba(245,248,250,1);
|
40
40
|
}
|
41
41
|
.datepicker.datepicker-orient-bottom:after {
|
42
42
|
bottom: -6px;
|
43
43
|
border-bottom: 0;
|
44
|
-
border-top: 6px rgba(
|
44
|
+
border-top: 6px rgba(245,248,250,1);
|
45
|
+
}
|
46
|
+
.dow {
|
47
|
+
color: rgba(136,153,166,1);
|
48
|
+
font-weight: bold;
|
45
49
|
}
|
46
|
-
.dow { font-weight: bold; }
|
47
50
|
.datepicker > div { display: none; }
|
48
51
|
.datepicker table {
|
49
52
|
margin: 0;
|
@@ -64,14 +67,14 @@
|
|
64
67
|
width: 20px;
|
65
68
|
}
|
66
69
|
.datepicker td.day:hover {
|
67
|
-
background: rgba(
|
70
|
+
background: rgba(15,135,226,1);
|
68
71
|
border-radius: 500px;
|
69
72
|
color: rgba(255,255,255,1);
|
70
73
|
cursor: pointer;
|
71
74
|
}
|
72
|
-
.datepicker td.day.disabled { color: rgba(
|
75
|
+
.datepicker td.day.disabled { color: rgba(136,153,166,1); }
|
73
76
|
.datepicker td.old,
|
74
|
-
.datepicker td.new { color: rgba(
|
77
|
+
.datepicker td.new { color: rgba(136,153,166,1); }
|
75
78
|
.datepicker td.active,
|
76
79
|
.datepicker td.active:hover,
|
77
80
|
.datepicker td.active:hover:hover,
|
@@ -85,7 +88,7 @@
|
|
85
88
|
.datepicker td.active:hover.disabled,
|
86
89
|
.datepicker td.active[disabled],
|
87
90
|
.datepicker td.active:hover[disabled] {
|
88
|
-
background: rgba(
|
91
|
+
background: rgba(112,169,13,1);
|
89
92
|
border-radius: 500px;
|
90
93
|
color: rgba(255,255,255,1);
|
91
94
|
}
|
@@ -99,7 +102,7 @@
|
|
99
102
|
width: 46px;
|
100
103
|
}
|
101
104
|
.datepicker td span:hover {
|
102
|
-
background: rgba(
|
105
|
+
background: rgba(15,135,226,1);
|
103
106
|
color: rgba(255,255,255,1);
|
104
107
|
cursor: pointer;
|
105
108
|
}
|
@@ -110,7 +113,7 @@
|
|
110
113
|
.datepicker td span.active.active,
|
111
114
|
.datepicker td span.active.disabled,
|
112
115
|
.datepicker td span.active[disabled] {
|
113
|
-
background: rgba(
|
116
|
+
background: rgba(112,169,13,1);
|
114
117
|
color: rgba(255,255,255,1);
|
115
118
|
}
|
116
119
|
.datepicker th.switch {
|
@@ -120,11 +123,12 @@
|
|
120
123
|
.datepicker th.next,
|
121
124
|
.datepicker th.prev { font-size: 17px; }
|
122
125
|
.datepicker thead tr:first-child th:hover {
|
123
|
-
background: rgba(
|
126
|
+
background: rgba(15,135,226,1);
|
124
127
|
border-radius: 2px;
|
125
128
|
color: rgba(255,255,255,1);
|
126
129
|
cursor: pointer;
|
127
130
|
}
|
131
|
+
.datepicker thead tr:first-child th:nth-child(2) { font-weight: bold; }
|
128
132
|
.datepicker-dropdown.dropdown-menu {
|
129
133
|
padding: 0;
|
130
134
|
z-index: 1060;
|
@@ -10,7 +10,7 @@
|
|
10
10
|
.open .dropdown-toggle { outline: 0; }
|
11
11
|
.dropdown-menu {
|
12
12
|
background-clip: padding-box;
|
13
|
-
background: rgba(
|
13
|
+
background: rgba(245,248,250,1);
|
14
14
|
border-radius: 3px;
|
15
15
|
box-shadow: 0 1px 3px rgba(0,0,0,0.3);
|
16
16
|
color: rgba(71,74,84,1);
|
@@ -30,7 +30,7 @@
|
|
30
30
|
right: 0;
|
31
31
|
}
|
32
32
|
.dropdown-menu .divider {
|
33
|
-
background: rgba(
|
33
|
+
background: rgba(225,232,237,1);
|
34
34
|
height: 1px;
|
35
35
|
margin: 5px 0px;
|
36
36
|
overflow: hidden;
|
@@ -50,7 +50,7 @@
|
|
50
50
|
.dropdown-menu > li > a:hover,
|
51
51
|
.dropdown-menu > li > a:focus,
|
52
52
|
.dropdown-submenu:hover > a,
|
53
|
-
.dropdown-submenu:focus > a { color: rgba(
|
53
|
+
.dropdown-submenu:focus > a { color: rgba(15,135,226,1); }
|
54
54
|
.open > .dropdown-menu { display: block; }
|
55
55
|
.pull-right > .dropdown-menu {
|
56
56
|
left: auto;
|
@@ -6,14 +6,14 @@
|
|
6
6
|
/* #Footer
|
7
7
|
================================================== */
|
8
8
|
.footer {
|
9
|
-
background: rgba(
|
10
|
-
border-top: 1px solid rgba(
|
9
|
+
background: rgba(245,248,250,1);
|
10
|
+
border-top: 1px solid rgba(225,232,237,1);
|
11
11
|
color: rgba(158,171,179,1);
|
12
12
|
margin-top: 80px;
|
13
13
|
padding: 50px 0;
|
14
14
|
}
|
15
15
|
.footer a {
|
16
|
-
color: rgba(
|
16
|
+
color: rgba(136,153,166,1);
|
17
17
|
opacity: 0.8;
|
18
18
|
text-decoration: none;
|
19
19
|
}
|
@@ -24,7 +24,7 @@
|
|
24
24
|
}
|
25
25
|
.footer-brand a {
|
26
26
|
background: rgba(255,255,255,1);
|
27
|
-
border: 1px solid rgba(
|
27
|
+
border: 1px solid rgba(225,232,237,1);
|
28
28
|
border-radius: 4px;
|
29
29
|
display: inline-block;
|
30
30
|
font-size: 44px;
|
@@ -36,7 +36,7 @@
|
|
36
36
|
width: 50px;
|
37
37
|
}
|
38
38
|
.footer h6 {
|
39
|
-
color: rgba(
|
39
|
+
color: rgba(136,153,166,1);
|
40
40
|
letter-spacing: 1px;
|
41
41
|
text-transform: uppercase;
|
42
42
|
}
|
@@ -55,5 +55,5 @@
|
|
55
55
|
================================================== */
|
56
56
|
.footer-alt {
|
57
57
|
background: transparent;
|
58
|
-
border-color: rgba(
|
58
|
+
border-color: rgba(225,232,237,1);
|
59
59
|
}
|
@@ -10,7 +10,7 @@
|
|
10
10
|
fieldset { border: 0; }
|
11
11
|
legend {
|
12
12
|
border: 0;
|
13
|
-
border-bottom: 1px solid rgba(
|
13
|
+
border-bottom: 1px solid rgba(225,232,237,1);
|
14
14
|
color: rgba(71,74,84,1);
|
15
15
|
display: block;
|
16
16
|
font-size: 16px;
|
@@ -46,7 +46,7 @@ input[type="color"],
|
|
46
46
|
-webkit-appearance: none;
|
47
47
|
-moz-appearance: none;
|
48
48
|
background: rgba(255,255,255,1);
|
49
|
-
border: 1px solid rgba(
|
49
|
+
border: 1px solid rgba(225,232,237,1);
|
50
50
|
border-radius: 0;
|
51
51
|
-moz-box-sizing: border-box;
|
52
52
|
box-sizing: border-box;
|
@@ -81,7 +81,7 @@ input[type="search"]:focus,
|
|
81
81
|
input[type="tel"]:focus,
|
82
82
|
input[type="color"]:focus,
|
83
83
|
.uneditable-input:focus {
|
84
|
-
border-color: rgba(
|
84
|
+
border-color: rgba(15,135,226,1);
|
85
85
|
outline: 0;
|
86
86
|
outline: thin dotted \9;
|
87
87
|
-webkit-transition: background 150ms linear;
|
@@ -103,7 +103,7 @@ input[type="checkbox"] { width: auto; }
|
|
103
103
|
select {
|
104
104
|
-webkit-appearance: none;
|
105
105
|
-moz-appearance: none;
|
106
|
-
border: 1px solid rgba(
|
106
|
+
border: 1px solid rgba(225,232,237,1);
|
107
107
|
border-radius: 0;
|
108
108
|
-moz-box-sizing: border-box;
|
109
109
|
box-sizing: border-box;
|
@@ -137,34 +137,34 @@ select.datetime {
|
|
137
137
|
}
|
138
138
|
input:-moz-placeholder,
|
139
139
|
textarea:-moz-placeholder {
|
140
|
-
color: rgba(
|
140
|
+
color: rgba(136,153,166,1);
|
141
141
|
font-weight: 200;
|
142
142
|
}
|
143
143
|
input:-ms-input-placeholder,
|
144
144
|
textarea:-ms-input-placeholder {
|
145
|
-
color: rgba(
|
145
|
+
color: rgba(136,153,166,1);
|
146
146
|
font-weight: 200;
|
147
147
|
}
|
148
148
|
input::-webkit-input-placeholder,
|
149
149
|
textarea::-webkit-input-placeholder {
|
150
|
-
color: rgba(
|
150
|
+
color: rgba(136,153,166,1);
|
151
151
|
font-weight: 200;
|
152
152
|
}
|
153
153
|
input:focus:invalid,
|
154
154
|
textarea:focus:invalid,
|
155
155
|
select:focus:invalid {
|
156
|
-
border-color: rgba(
|
157
|
-
color: rgba(
|
156
|
+
border-color: rgba(218,79,46,1);
|
157
|
+
color: rgba(218,79,46,1);
|
158
158
|
}
|
159
159
|
input:focus:invalid:focus,
|
160
160
|
textarea:focus:invalid:focus,
|
161
|
-
select:focus:invalid:focus { border-color: rgba(
|
161
|
+
select:focus:invalid:focus { border-color: rgba(218,79,46,1); }
|
162
162
|
input[disabled],
|
163
163
|
textarea[disabled],
|
164
164
|
select[disabled],
|
165
165
|
.uneditable-input {
|
166
|
-
background: rgba(
|
167
|
-
color: rgba(
|
166
|
+
background: rgba(245,248,250,1);
|
167
|
+
color: rgba(136,153,166,1);
|
168
168
|
cursor: not-allowed;
|
169
169
|
}
|
170
170
|
.uneditable-input { font-weight: normal; }
|
@@ -177,7 +177,7 @@ select.form-input-initial-width {
|
|
177
177
|
/* #Form Components
|
178
178
|
================================================== */
|
179
179
|
.form-header {
|
180
|
-
border-bottom: 1px solid rgba(
|
180
|
+
border-bottom: 1px solid rgba(225,232,237,1);
|
181
181
|
margin-bottom: 30px;
|
182
182
|
padding-bottom: 5px;
|
183
183
|
}
|
@@ -189,15 +189,15 @@ select.form-input-initial-width {
|
|
189
189
|
.form-header h6 { margin-bottom: 0; }
|
190
190
|
.form-error-messages { margin-bottom: 40px; }
|
191
191
|
.form-error-messages h4 {
|
192
|
-
background: rgba(
|
193
|
-
border: 1px solid rgba(
|
192
|
+
background: rgba(235,238,240,1);
|
193
|
+
border: 1px solid rgba(225,232,237,1);
|
194
194
|
margin: 0;
|
195
195
|
padding: 5px 10px;
|
196
196
|
}
|
197
197
|
.form-error-messages ul {
|
198
|
-
border-bottom: 1px solid rgba(
|
199
|
-
border-right: 1px solid rgba(
|
200
|
-
border-left: 1px solid rgba(
|
198
|
+
border-bottom: 1px solid rgba(225,232,237,1);
|
199
|
+
border-right: 1px solid rgba(225,232,237,1);
|
200
|
+
border-left: 1px solid rgba(225,232,237,1);
|
201
201
|
}
|
202
202
|
.form-error-messages li {
|
203
203
|
display: block;
|
@@ -221,11 +221,11 @@ select.form-input-initial-width {
|
|
221
221
|
.form-input-group-addon { display: table-cell; }
|
222
222
|
.form-input-group input { margin: 0; }
|
223
223
|
.form-input-group-addon {
|
224
|
-
background: rgba(
|
225
|
-
border: 1px solid rgba(
|
224
|
+
background: rgba(245,248,250,1);
|
225
|
+
border: 1px solid rgba(225,232,237,1);
|
226
226
|
-moz-box-sizing: border-box;
|
227
227
|
box-sizing: border-box;
|
228
|
-
color: rgba(
|
228
|
+
color: rgba(136,153,166,1);
|
229
229
|
font-size: 16px;
|
230
230
|
line-height: 0;
|
231
231
|
padding: 0 13px;
|
@@ -245,7 +245,7 @@ select.form-input-initial-width {
|
|
245
245
|
.form-text-inline { margin-top: 13px; }
|
246
246
|
.form-select-inline { margin-top: 0; }
|
247
247
|
.form-help-block {
|
248
|
-
color: rgba(
|
248
|
+
color: rgba(136,153,166,1);
|
249
249
|
display: block;
|
250
250
|
font-size: 12px;
|
251
251
|
margin-bottom: 15px;
|
@@ -257,18 +257,18 @@ select.form-input-initial-width {
|
|
257
257
|
}
|
258
258
|
.form-btn-group > .btn {
|
259
259
|
background: transparent;
|
260
|
-
border-color: rgba(
|
260
|
+
border-color: rgba(225,232,237,1);
|
261
261
|
color: rgba(174,182,192,1);
|
262
262
|
}
|
263
263
|
.form-btn-group > .btn:active,
|
264
264
|
.form-btn-group > .btn.active,
|
265
265
|
.form-btn-group > .btn:hover,
|
266
266
|
.form-btn-group > .btn:focus {
|
267
|
-
background: rgba(
|
267
|
+
background: rgba(245,248,250,1);
|
268
268
|
color: rgba(43,50,53,1);
|
269
269
|
}
|
270
270
|
.form-footer {
|
271
|
-
border-top: 1px solid rgba(
|
271
|
+
border-top: 1px solid rgba(225,232,237,1);
|
272
272
|
margin-top: 30px;
|
273
273
|
padding: 20px 0 0 0;
|
274
274
|
}
|
@@ -8,7 +8,7 @@
|
|
8
8
|
/* #Header
|
9
9
|
================================================== */
|
10
10
|
.header {
|
11
|
-
background: rgba(
|
11
|
+
background: rgba(15,135,226,1);
|
12
12
|
height: 86px;
|
13
13
|
margin-bottom: 40px;
|
14
14
|
width: 100%;
|
@@ -73,7 +73,7 @@
|
|
73
73
|
.header-user a:hover { color: rgba(255,255,255,1); }
|
74
74
|
.header-user img,
|
75
75
|
.header-user-placeholder {
|
76
|
-
background: rgba(
|
76
|
+
background: rgba(176,193,206,1);
|
77
77
|
color: rgba(255,255,255,1);
|
78
78
|
border-radius: 500px;
|
79
79
|
display: inline-block;
|
@@ -106,15 +106,15 @@
|
|
106
106
|
/* #Header Alternate
|
107
107
|
================================================== */
|
108
108
|
.header-alt { background: none; }
|
109
|
-
.header-alt .header-brand a { color: rgba(
|
110
|
-
.header-alt .header-brand a:hover { color: rgba(
|
109
|
+
.header-alt .header-brand a { color: rgba(176,193,206,1); }
|
110
|
+
.header-alt .header-brand a:hover { color: rgba(136,153,166,1); }
|
111
111
|
.header-alt .header-nav > li.bordered > a {
|
112
|
-
border-color: rgba(
|
113
|
-
color: rgba(
|
112
|
+
border-color: rgba(215,222,227,1);
|
113
|
+
color: rgba(176,193,206,1);
|
114
114
|
}
|
115
115
|
.header-alt .header-nav > li.bordered > a:hover {
|
116
|
-
border-color: rgba(
|
117
|
-
color: rgba(
|
116
|
+
border-color: rgba(195,202,207,1);
|
117
|
+
color: rgba(136,153,166,1);
|
118
118
|
}
|
119
119
|
|
120
120
|
/* #Media Queries
|
@@ -6,8 +6,8 @@
|
|
6
6
|
================================================== */
|
7
7
|
.label,
|
8
8
|
.badge {
|
9
|
-
background: rgba(
|
10
|
-
border: 1px solid rgba(
|
9
|
+
background: rgba(245,248,250,1);
|
10
|
+
border: 1px solid rgba(225,232,237,1);
|
11
11
|
border-radius: 2px;
|
12
12
|
color: rgba(71,74,84,1);
|
13
13
|
display: inline-block;
|
@@ -14,8 +14,8 @@ a {
|
|
14
14
|
/* #Link Color
|
15
15
|
================================================== */
|
16
16
|
.link-black { color: rgba(71,74,84,1); }
|
17
|
-
.link-blue { color: rgba(
|
17
|
+
.link-blue { color: rgba(15,135,226,1); }
|
18
18
|
.link-gray { color: rgba(158,171,179,1); }
|
19
|
-
.link-green { color: rgba(
|
20
|
-
.link-red { color: rgba(
|
19
|
+
.link-green { color: rgba(112,169,13,1); }
|
20
|
+
.link-red { color: rgba(218,79,46,1); }
|
21
21
|
.link-white { color: rgba(255,255,255,1); }
|
@@ -37,23 +37,23 @@ ol { padding-left: 23px; }
|
|
37
37
|
padding: 0;
|
38
38
|
}
|
39
39
|
.list-bordered > li {
|
40
|
-
border: 1px solid rgba(
|
40
|
+
border: 1px solid rgba(225,232,237,1);
|
41
41
|
border-bottom: none;
|
42
42
|
padding: 9px 10px 6px 10px;
|
43
43
|
}
|
44
|
-
.list-bordered > li:last-child { border-bottom: 1px solid rgba(
|
44
|
+
.list-bordered > li:last-child { border-bottom: 1px solid rgba(225,232,237,1); }
|
45
45
|
.list-inline > li {
|
46
46
|
display: inline-block;
|
47
47
|
margin-right: 10px;
|
48
48
|
}
|
49
49
|
.list-inline > li:last-child { margin-right: 0; }
|
50
50
|
.list-lined > li {
|
51
|
-
border-top: 1px solid rgba(
|
51
|
+
border-top: 1px solid rgba(225,232,237,1);
|
52
52
|
padding: 9px 0 6px 0;
|
53
53
|
}
|
54
54
|
.list-lined > li:first-child { border: none; }
|
55
55
|
.list-striped > li { padding: 9px 10px 6px 10px; }
|
56
|
-
.list-striped > li:nth-child(odd) { background: rgba(
|
56
|
+
.list-striped > li:nth-child(odd) { background: rgba(245,248,250,1); }
|
57
57
|
.list-bordered.list-small > li,
|
58
58
|
.list-lined.list-small > li,
|
59
59
|
.list-striped.list-small > li { padding: 5px 5px 3px 5px; }
|
@@ -53,8 +53,8 @@
|
|
53
53
|
text-transform: uppercase;
|
54
54
|
}
|
55
55
|
.modal-body {
|
56
|
-
border-bottom: 1px solid rgba(
|
57
|
-
border-top: 1px solid rgba(
|
56
|
+
border-bottom: 1px solid rgba(225,232,237,1);
|
57
|
+
border-top: 1px solid rgba(225,232,237,1);
|
58
58
|
max-height: 300px;
|
59
59
|
overflow-y: scroll;
|
60
60
|
padding: 15px 18px;
|
@@ -76,7 +76,7 @@ input[type="submit"].modal-footer-btn {
|
|
76
76
|
border: none;
|
77
77
|
-moz-box-sizing: border-box;
|
78
78
|
box-sizing: border-box;
|
79
|
-
color: rgba(
|
79
|
+
color: rgba(15,135,226,1);
|
80
80
|
cursor: pointer;
|
81
81
|
float: left;
|
82
82
|
font-size: 13px;
|
@@ -103,7 +103,7 @@ input[type="submit"].modal-footer-btn[disabled] {
|
|
103
103
|
}
|
104
104
|
.modal-footer-dual > .modal-footer-btn,
|
105
105
|
.modal-footer-dual > input[type="submit"].modal-footer-btn {
|
106
|
-
border-right: 1px solid rgba(
|
106
|
+
border-right: 1px solid rgba(225,232,237,1);
|
107
107
|
width: 50%;
|
108
108
|
}
|
109
109
|
.modal-footer-dual > .modal-footer-btn:last-child,
|