calendar_view 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -10,7 +10,7 @@ Plugin was built as Rails 3 Engine plugin.
10
10
  Add to Gemfile of application:
11
11
 
12
12
  ```ruby
13
- gem "calendar_view", "~> 0.0.5"
13
+ gem "calendar_view", "~> 0.0.6"
14
14
  ```
15
15
 
16
16
  than
@@ -1,3 +1,3 @@
1
1
  module CalendarView
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -1,20 +1,27 @@
1
- div.calendar {
2
- margin-bottom: 10px;
3
- background: none repeat scroll 0 0 #FFFFFF;
4
- border-bottom-left-radius: 4px;
5
- border-bottom-right-radius: 4px;
6
- border-top-left-radius: 4px;
7
- border-top-right-radius: 4px;
1
+ .calendar {
2
+ margin: 0 0 15px 0;
3
+ padding-bottom: 1px;
8
4
  }
9
5
 
10
- div.calendar h3 {
11
- background: none repeat scroll 0 0 #5E634E;
12
- border-bottom: 6px solid #DACF77;
13
- color: #FFFFFF;
6
+ .calendar .content {
7
+ padding: 3px;
14
8
  }
15
9
 
16
- div.calendar div.content {
17
- padding: 4px;
10
+ .calendar h3 {
11
+ background: #5E634E;
12
+ color: #FFF;
13
+ border-bottom: 6px solid #DACF77;
14
+ padding: 6px 10px;
15
+ -moz-border-radius-topleft: 5px;
16
+ -webkit-border-top-left-radius: 5px;
17
+ -moz-border-radius-topright: 5px;
18
+ -webkit-border-top-right-radius: 5px;
19
+ }
20
+
21
+ .calendar .content {
22
+ border-bottom-left-radius: 5px;
23
+ border-bottom-right-radius: 5px;
24
+ background-color: white;
18
25
  }
19
26
 
20
27
  div.calendar table {
@@ -39,6 +46,12 @@ div.calendar td.weekend {
39
46
  background-color: #5E634E;
40
47
  }
41
48
 
49
+ div.calendar td.monthnum {
50
+ color: white;
51
+ background-color: #5E634E;
52
+ font-weight: bold;
53
+ }
54
+
42
55
  div.calendar td.outside {
43
56
  background-color: white;
44
57
  }
@@ -55,3 +68,8 @@ div.calendar td.today {
55
68
  font-size: 13px;
56
69
  text-decoration: underline;
57
70
  }
71
+
72
+ .box div.logo {
73
+ margin: 10px;
74
+ text-align: left;
75
+ }
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calendar_view
3
3
  version: !ruby/object:Gem::Version
4
- hash: 21
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 5
10
- version: 0.0.5
9
+ - 6
10
+ version: 0.0.6
11
11
  platform: ruby
12
12
  authors:
13
13
  - Wojciech Todryk