padma-assets 0.0.3 → 0.0.4
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.
Binary file
|
Binary file
|
@@ -0,0 +1,80 @@
|
|
1
|
+
// Place all the styles related to the invoices controller here.
|
2
|
+
// They will automatically be included in application.css.
|
3
|
+
// You can use Sass (SCSS) here: http://sass-lang.com/
|
4
|
+
table.padma-table {
|
5
|
+
overflow:hidden;
|
6
|
+
border-top-width: 1px;
|
7
|
+
border-top-style: solid;
|
8
|
+
border-top-color: #d3d3d3;
|
9
|
+
border-right-width: 2px;
|
10
|
+
border-right-style: solid;
|
11
|
+
border-right-color: #d3d3d3;
|
12
|
+
border-left-width: 1px;
|
13
|
+
border-left-style: solid;
|
14
|
+
border-left-color: #d3d3d3;
|
15
|
+
border-bottom-width: 2px;
|
16
|
+
border-bottom-style: solid;
|
17
|
+
border-bottom-color: #d3d3d3;
|
18
|
+
width:100%;
|
19
|
+
margin:0 auto 0;
|
20
|
+
th {
|
21
|
+
height:10px;
|
22
|
+
padding-top:14px;
|
23
|
+
padding-bottom:6px;
|
24
|
+
padding-left:10px;
|
25
|
+
background:#e8eaeb;
|
26
|
+
color: #4D4D4D;
|
27
|
+
font-family: Arial,Helvetica,sans-serif;
|
28
|
+
font-size: 12px;
|
29
|
+
font-weight: bold;
|
30
|
+
margin: 6px;
|
31
|
+
vertical-align: top;
|
32
|
+
border-right: 1px solid #CFCFCF;
|
33
|
+
border-bottom: 1px solid #CFCFCF;
|
34
|
+
text-align:left;
|
35
|
+
}
|
36
|
+
|
37
|
+
td {
|
38
|
+
height:10px;
|
39
|
+
padding-top:10px;
|
40
|
+
padding-bottom:8px;
|
41
|
+
padding-left:10px;
|
42
|
+
border-top:0px solid #e0e0e0;
|
43
|
+
border-right:1px solid #CFCFCF;
|
44
|
+
color: #4D4D4D;
|
45
|
+
font-family: Arial,Helvetica,sans-serif;
|
46
|
+
font-size: 12px;
|
47
|
+
font-weight: normal;
|
48
|
+
}
|
49
|
+
|
50
|
+
td {
|
51
|
+
background: #FFFFFF;
|
52
|
+
}
|
53
|
+
|
54
|
+
tr:nth-child(odd) td {
|
55
|
+
background: #F2F2F2;
|
56
|
+
}
|
57
|
+
|
58
|
+
th {
|
59
|
+
background: -moz-linear-gradient(100% 100% 90deg, #F1F2F2, #FFFFFF);
|
60
|
+
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#FFFFFF), to(#F1F2F2));
|
61
|
+
}
|
62
|
+
|
63
|
+
input[type="checkbox"] {
|
64
|
+
margin:0px;
|
65
|
+
}
|
66
|
+
|
67
|
+
th .current {
|
68
|
+
padding-right: 40px;
|
69
|
+
background-repeat: no-repeat;
|
70
|
+
background-position: right center;
|
71
|
+
}
|
72
|
+
|
73
|
+
th .asc {
|
74
|
+
background-image: url('arrow_up.png');
|
75
|
+
}
|
76
|
+
|
77
|
+
th .desc {
|
78
|
+
background-image: url('arrow_down.png');
|
79
|
+
}
|
80
|
+
}
|
data/lib/padma-assets/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: padma-assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: railties
|
@@ -34,9 +34,11 @@ executables: []
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
+
- app/assets/images/arrow_down.png
|
37
38
|
- app/assets/images/ie-spacer.gif
|
38
39
|
- app/assets/images/gritter-long-green.png
|
39
40
|
- app/assets/images/gritter-green.png
|
41
|
+
- app/assets/images/arrow_up.png
|
40
42
|
- app/assets/images/gritter-red.png
|
41
43
|
- app/assets/images/gritter-long.png
|
42
44
|
- app/assets/images/gritter-long-red.png
|
@@ -44,6 +46,7 @@ files:
|
|
44
46
|
- app/assets/stylesheets/menubox_w140px.css
|
45
47
|
- app/assets/stylesheets/reset.css
|
46
48
|
- app/assets/stylesheets/pictos.css.scss
|
49
|
+
- app/assets/stylesheets/tables.css.scss
|
47
50
|
- app/assets/stylesheets/footer.css
|
48
51
|
- app/assets/stylesheets/jquery.gritter.css
|
49
52
|
- app/assets/stylesheets/header.css
|