flashgrid 1.0.6 → 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5c4a77bcf00c4c1d8f6e1b12d16c5e906a7c1422
4
- data.tar.gz: c43d6491a3c8f30f369308ac8972de5b8f42899f
3
+ metadata.gz: 265aa275bb14bab2af000907aca8c369fb645bfb
4
+ data.tar.gz: 07fc6fc106cd61ff17cc65ed4bf39781ba71914f
5
5
  SHA512:
6
- metadata.gz: 0b5418e0a841b5ae69756a56d9fdabff9833e2c289d8ea7c8a8d484e68187880df8cb33752397befc7d3d523a747f2695c768c6d0a515365b9208d222720a365
7
- data.tar.gz: 010befa9cf3275df112b3358dc140856b56638dbf67ad1f31d8a4eb0dbfbf350fcf0016cd06f44a15e6f17d062b4bed3c38caeda6a0d830d21b6ba77c7509f75
6
+ metadata.gz: 725214c5f033fed6aea05eeb4f2c340822a0f2158913559d3cf607c8e4baa20e3b39d8337e5ae4f6b48f47fdc9383d9903f2997f8b4c039c492af93cca62e5ac
7
+ data.tar.gz: 66b89300260bd8a553be91a91b2a8d10c74b54a0582f9a62620d2e68fc3825edba66b9907df3e7ff9d3ca14d38314e91c40583a231ecb9154899de94f821d45e
data/.gitignore CHANGED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/README.md CHANGED
@@ -45,6 +45,7 @@ Add the CSS files you want to include:
45
45
  *= require map.css
46
46
  *= require modal.css
47
47
  *= require pagination.css
48
+ *= require panel.css
48
49
  *= require placeholder.css
49
50
  *= require popover.css
50
51
  *= require progress.css
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.7"
3
3
  end
@@ -128,7 +128,7 @@ input.btn-block {
128
128
  color: rgba(255,255,255,1);
129
129
  }
130
130
  .btn-white { background: rgba(255,255,255,1); }
131
- .btn-white:hover { background: rgba(236,238,241,1); }
131
+ .btn-white:hover { background: rgba(226,228,231,1); }
132
132
  .btn-white[disabled],
133
133
  .btn-white[disabled]:hover {
134
134
  background: rgba(250,250,250,1);
@@ -0,0 +1,158 @@
1
+ /* Table of Contents
2
+ ==================================================
3
+ #Panel */
4
+
5
+ /* #Panel
6
+ ================================================== */
7
+ .panel {
8
+ background-color: rgba(255,255,255,1);
9
+ border: 1px solid rgba(217,222,225,1);
10
+ border-radius: 3px;
11
+ margin-bottom: 20px;
12
+ }
13
+ .panel-body { padding: 15px; }
14
+ .panel > .list-group { margin-bottom: 0; }
15
+ .panel > .list-group .list-group-item {
16
+ border-radius: 0;
17
+ border-width: 1px 0;
18
+ }
19
+ .panel > .list-group .list-group-item:first-child { border-top: 0; }
20
+ .panel > .list-group .list-group-item:last-child { border-bottom: 0; }
21
+ .panel > .list-group:first-child .list-group-item:first-child {
22
+ border-top-right-radius: 2px;
23
+ border-top-left-radius: 2px;
24
+ }
25
+ .panel > .list-group:last-child .list-group-item:last-child {
26
+ border-bottom-right-radius: 2px;
27
+ border-bottom-left-radius: 2px;
28
+ }
29
+ .panel-header + .list-group .list-group-item:first-child { border-top-width: 0; }
30
+ .panel > .table,
31
+ .panel > .table-responsive > .table { margin-bottom: 0; }
32
+ .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
33
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
34
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
35
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
36
+ .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
37
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
38
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
39
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { border-top-left-radius: 2px; }
40
+ .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
41
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
42
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
43
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
44
+ .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
45
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
46
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
47
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { border-top-right-radius: 2px; }
48
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
49
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
50
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
51
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
52
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
53
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
54
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
55
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { border-bottom-left-radius: 2px; }
56
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
57
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
58
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
59
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
60
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
61
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
62
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
63
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { border-bottom-right-radius: 2px; }
64
+ .panel > .panel-body + .table,
65
+ .panel > .panel-body + .table-responsive { border-top: 1px solid rgba(217,222,225,1); }
66
+ .panel > .table > tbody:first-child th,
67
+ .panel > .table > tbody:first-child td { border-top: 0; }
68
+ .panel > .table-bordered,
69
+ .panel > .table-responsive > .table-bordered { border: 0; }
70
+ .panel > .table-bordered > thead > tr > th:first-child,
71
+ .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
72
+ .panel > .table-bordered > tbody > tr > th:first-child,
73
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
74
+ .panel > .table-bordered > tfoot > tr > th:first-child,
75
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
76
+ .panel > .table-bordered > thead > tr > td:first-child,
77
+ .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
78
+ .panel > .table-bordered > tbody > tr > td:first-child,
79
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
80
+ .panel > .table-bordered > tfoot > tr > td:first-child,
81
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { border-left: 0; }
82
+ .panel > .table-bordered > thead > tr > th:last-child,
83
+ .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
84
+ .panel > .table-bordered > tbody > tr > th:last-child,
85
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
86
+ .panel > .table-bordered > tfoot > tr > th:last-child,
87
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
88
+ .panel > .table-bordered > thead > tr > td:last-child,
89
+ .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
90
+ .panel > .table-bordered > tbody > tr > td:last-child,
91
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
92
+ .panel > .table-bordered > tfoot > tr > td:last-child,
93
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { border-right: 0; }
94
+ .panel > .table-bordered > thead > tr:first-child > th,
95
+ .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
96
+ .panel > .table-bordered > tbody > tr:first-child > th,
97
+ .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th,
98
+ .panel > .table-bordered > tfoot > tr:first-child > th,
99
+ .panel > .table-responsive > .table-bordered > tfoot > tr:first-child > th,
100
+ .panel > .table-bordered > thead > tr:first-child > td,
101
+ .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
102
+ .panel > .table-bordered > tbody > tr:first-child > td,
103
+ .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
104
+ .panel > .table-bordered > tfoot > tr:first-child > td,
105
+ .panel > .table-responsive > .table-bordered > tfoot > tr:first-child > td { border-top: 0; }
106
+ .panel > .table-bordered > thead > tr:last-child > th,
107
+ .panel > .table-responsive > .table-bordered > thead > tr:last-child > th,
108
+ .panel > .table-bordered > tbody > tr:last-child > th,
109
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
110
+ .panel > .table-bordered > tfoot > tr:last-child > th,
111
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th,
112
+ .panel > .table-bordered > thead > tr:last-child > td,
113
+ .panel > .table-responsive > .table-bordered > thead > tr:last-child > td,
114
+ .panel > .table-bordered > tbody > tr:last-child > td,
115
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
116
+ .panel > .table-bordered > tfoot > tr:last-child > td,
117
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td { border-bottom: 0; }
118
+ .panel > .table-responsive {
119
+ border: 0;
120
+ margin-bottom: 0;
121
+ }
122
+ .panel-header {
123
+ background-color: rgba(236,238,241,1);
124
+ border-bottom: 1px solid rgba(217,222,225,1);
125
+ border-top-right-radius: 3px;
126
+ border-top-left-radius: 3px;
127
+ padding: 10px 15px;
128
+ }
129
+ .panel-header > .btn { margin-top: -2px; }
130
+ .panel-header > .dropdown .dropdown-toggle { color: rgba(71,74,84,1); }
131
+ .panel-title {
132
+ color: rgba(71,74,84,1);
133
+ display: inline-block;
134
+ font-size: 17px;
135
+ line-height: 17px;
136
+ margin-bottom: 0;
137
+ margin-top: 0;
138
+ }
139
+ .panel-title > a { color: rgba(71,74,84,1); }
140
+ .panel-title > a:hover { color: rgba(58,144,216,1); }
141
+ .panel-footer {
142
+ background-color: rgba(236,238,241,1);
143
+ border-top: 1px solid rgba(217,222,225,1);
144
+ border-bottom-right-radius: 3px;
145
+ border-bottom-left-radius: 3px;
146
+ padding: 12px 15px 8px 15px;
147
+ }
148
+ .panel-group { margin-bottom: 20px; }
149
+ .panel-group .panel {
150
+ border-radius: 3px;
151
+ margin-bottom: 0;
152
+ overflow: hidden;
153
+ }
154
+ .panel-group .panel + .panel { margin-top: 5px; }
155
+ .panel-group .panel-header { border-bottom: 0; }
156
+ .panel-group .panel-header + .panel-collapse .panel-body { border-top: 1px solid rgba(217,222,225,1); }
157
+ .panel-group .panel-footer { border-top: 0; }
158
+ .panel-group .panel-footer + .panel-collapse .panel-body { border-bottom: 1px solid rgba(217,222,225,1); }
@@ -72,13 +72,16 @@ table {
72
72
  .table-unbordered tbody,
73
73
  .table-unbordered th,
74
74
  .table-unbordered td { border: 0; }
75
+ .table-scrollable {
76
+ height: 200px;
77
+ overflow: auto;
78
+ }
75
79
 
76
80
  /* #Media Queries
77
81
  ================================================== */
78
82
  @media only screen and (max-width: 767px) {
79
83
  .table-responsive {
80
- max-height: 200px;
81
- max-width: 100%;
82
- overflow: scroll;
84
+ height: 200px;
85
+ overflow: auto;
83
86
  }
84
87
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashgrid
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-23 00:00:00.000000000 Z
11
+ date: 2014-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -110,6 +110,7 @@ files:
110
110
  - vendor/assets/stylesheets/map.css.scss
111
111
  - vendor/assets/stylesheets/modal.css.scss
112
112
  - vendor/assets/stylesheets/pagination.css.scss
113
+ - vendor/assets/stylesheets/panel.css.scss
113
114
  - vendor/assets/stylesheets/placeholder.css.scss
114
115
  - vendor/assets/stylesheets/popover.css.scss
115
116
  - vendor/assets/stylesheets/progress.css.scss