pyk 0.0.6 → 0.0.7
Sign up to get free protection for your applications and to get access to all the features.
- data/app/assets/images/logo-captcha.jpg +0 -0
- data/app/assets/images/logo-sq.png +0 -0
- data/app/assets/images/logo.png +0 -0
- data/app/assets/images/logo_big.png +0 -0
- data/app/assets/images/scrollup.png +0 -0
- data/app/assets/stylesheets/pyk/bootstrap.css.scss +1 -5
- data/app/assets/stylesheets/pyk/global.css.scss +1 -5
- data/app/assets/stylesheets/pyk/navbar.css.scss +21 -15
- metadata +7 -2
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,10 +1,6 @@
|
|
1
1
|
|
2
2
|
/* BOOTSTRAP CUSTOMIZATIONS */
|
3
3
|
|
4
|
-
ul.nav.nav-tabs.nav-stacked{
|
5
|
-
a{border-left: #f4f4f4 solid 6px; padding: 6px; }
|
6
|
-
a:hover{border-left: #08C solid 6px; background-color: #f4f4f4; }
|
7
|
-
li.active{a{border-left: #08C solid 6px; background-color: #f4f4f4; color: #08C;}}}
|
8
4
|
|
9
5
|
ul.nav.nav-pills{
|
10
6
|
li.active{
|
@@ -20,7 +16,7 @@ ul.nav.nav-pills{
|
|
20
16
|
.alert.alert-success{background-color: #FCFDDD; border: 1px solid #BDBDBD; color: #2E2E2E;}
|
21
17
|
.well{background-color: #EFEFEF;border: none; }
|
22
18
|
ul.breadcrumb{border: none; background: none; margin: 0px; padding: 0xp; a{color: gray;} color: lightgray; li{padding: 0px 6px 0px 0px;}}
|
23
|
-
|
19
|
+
|
24
20
|
.help-block{font-size: 11px; color: #A4967D;}
|
25
21
|
.simple_form_search_bar{background-color: white; border: 1px lightgray solid;}
|
26
22
|
|
@@ -1,8 +1,4 @@
|
|
1
|
-
body{font-family: ProximaNova, 'Helvetica Neue', helvetica, arial, sans-serif; margin: 0px; padding: 0px; width: 100%;}
|
2
|
-
|
3
|
-
body.post_login{background-color: white; font-family: ProximaNova, 'Helvetica Neue', helvetica, arial, sans-serif; font-size: 11px;
|
4
|
-
a.blue{color: #08C; text-decoration: none; text-shadow: white 1px 1px; }
|
5
|
-
}
|
1
|
+
body{background-color: white; font-family: ProximaNova, 'Helvetica Neue', helvetica, arial, sans-serif; margin: 0px; padding: 0px; width: 100%; font-size: 12px;}
|
6
2
|
|
7
3
|
.footer{width: 100%;bottom: 0px; display: block; position: absolute; left: 0px; margin: 0px; padding: 10px 0px; background-color: #DEDCD6; text-align: center; font-size: 11px; color: black;}
|
8
4
|
|
@@ -2,37 +2,44 @@
|
|
2
2
|
#navwrapper{
|
3
3
|
background-color: #2D2D2D;
|
4
4
|
width: 100%;
|
5
|
-
height:
|
5
|
+
height: 31px;
|
6
6
|
font-family: Arial, Helvetica, sans-serif;
|
7
|
-
font-size:11px;
|
7
|
+
font-size: 11px;
|
8
8
|
|
9
9
|
ul{
|
10
|
-
padding: 0;margin: 0;list-style: none;
|
11
|
-
|
10
|
+
padding: 0; margin: 0; list-style: none;
|
11
|
+
|
12
|
+
a{display:block; padding:5px 0px; color:#ccc; text-decoration:none; margin: 0px 10px;}
|
13
|
+
|
12
14
|
a.dmenu:hover{color:#3366CC !important; background-color: #fff !important;}
|
13
|
-
|
14
|
-
|
15
|
-
a.current{color:#fff;font-weight:bold;background:#2D2D2D;text-decoration:none;border-top:4px solid #2986C4;padding-top:2px; /*--removing 2px border from 7px padding--*/}
|
15
|
+
|
16
|
+
a:hover { background-color: #606060 !important; color: #FFFFFF !important; }
|
16
17
|
|
17
|
-
|
18
|
+
/*--the selected, current item in the navigation menu--*/
|
19
|
+
|
20
|
+
a.current{color:#fff;font-weight:bold;background:#2D2D2D;text-decoration:none;border-top:2px solid #2986C4;padding-top:3px; margin: 0px 10px;}
|
18
21
|
|
19
|
-
|
22
|
+
a.current:hover{padding-top: 3px;}
|
23
|
+
|
24
|
+
li:hover a, a:focus, a:active {padding: 5px 0px; margin: 0px 10px; color:#fff; background:#444; text-decoration:none; }
|
20
25
|
|
21
26
|
li ul, ul li {width: 10em;}
|
22
27
|
|
23
28
|
/*--drop down menu styling is different from main nav, strict rule--*/
|
24
29
|
ul li a {color: #3366CC !important;border-right: 0; }
|
30
|
+
|
25
31
|
li {position: relative; position: static; width: auto;}
|
32
|
+
|
26
33
|
ul li a:hover {color:#3366CC !important;background-color: #eef3fb !important;border-right: 0;}
|
34
|
+
|
27
35
|
li:hover ul {display: block;}
|
28
|
-
li:hover ul a{color: #000000;background-color: transparent;}
|
29
36
|
|
37
|
+
li:hover ul a{color: #000000;background-color: transparent;}
|
30
38
|
|
31
39
|
li {float: left;
|
32
40
|
|
33
|
-
ul{position: absolute;display: none;margin-left:-1px;padding-bottom:10px;background-color: #FFFFFF;border: 1px solid #bbb;border-top:none
|
41
|
+
ul{ position: absolute; display: none; margin-left:-1px; padding-bottom:10px; background-color: #FFFFFF; border: 1px solid #bbb; border-top:none; -moz-box-shadow: 0 0 5px #ddd; -webkit-box-shadow: 0 0 5px #ddd; box-shadow: 0 0 5px #ddd; z-index:5000;
|
34
42
|
}
|
35
|
-
|
36
43
|
}
|
37
44
|
|
38
45
|
}
|
@@ -49,6 +56,5 @@
|
|
49
56
|
|
50
57
|
/*--for the right options navigation menu--*/
|
51
58
|
.floatright{float:right;}
|
52
|
-
|
53
|
-
|
54
|
-
.clear{clear:both;}
|
59
|
+
|
60
|
+
.clear{clear:both;}
|
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 0
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 0.0.
|
8
|
+
- 7
|
9
|
+
version: 0.0.7
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Pykih Software LLP
|
@@ -113,6 +113,11 @@ files:
|
|
113
113
|
- app/assets/images/desc.gif
|
114
114
|
- app/assets/images/id_card-shadow.png
|
115
115
|
- app/assets/images/id_card.png
|
116
|
+
- app/assets/images/logo-captcha.jpg
|
117
|
+
- app/assets/images/logo-sq.png
|
118
|
+
- app/assets/images/logo.png
|
119
|
+
- app/assets/images/logo_big.png
|
120
|
+
- app/assets/images/scrollup.png
|
116
121
|
- app/assets/images/sort-bg.gif
|
117
122
|
- app/assets/images/sprites/contacts.png
|
118
123
|
- app/assets/images/sprites/file-icons-16-px.png
|