openskip-skip_embedded 0.9.17 → 0.9.18
Sign up to get free protection for your applications and to get access to all the features.
@@ -3,24 +3,34 @@
|
|
3
3
|
!base_color ||= #555
|
4
4
|
!base_background_color ||= #fff
|
5
5
|
!base_font_size ||= 12px
|
6
|
-
!small_font_size ||=
|
6
|
+
!small_font_size ||= !base_font_size - 2px
|
7
|
+
!x_small_font_size ||= !small_font_size - 2px
|
8
|
+
!large_font_size ||= !base_font_size + 2px
|
9
|
+
!x_large_font_size ||= !large_font_size + 2px
|
7
10
|
!base_border ||= 1px solid #ccc
|
8
11
|
!base_dashed_border ||= 1px dashed #ccc
|
9
12
|
!base_dotted_border ||= 1px dotted #ccc
|
10
13
|
|
11
14
|
// Mix-in
|
12
15
|
// ------------------------------------------------------------
|
13
|
-
=
|
16
|
+
=text_base(!font_size = !base_font_size, !color = !base_color)
|
14
17
|
:font
|
15
|
-
:size = !
|
18
|
+
:size = !font_size
|
16
19
|
:family Verdana, Arial, sans-serif
|
17
20
|
:weight normal
|
18
|
-
:color = !
|
21
|
+
:color = !color
|
22
|
+
=middle_text(!color = !base_color)
|
23
|
+
+text_base
|
24
|
+
=small_text(!color = !base_color)
|
25
|
+
+text_base(!small_font_size)
|
26
|
+
=x_small_text(!color = !base_color)
|
27
|
+
+text_base(!x_small_font_size)
|
28
|
+
=large_text(!color = !base_color)
|
29
|
+
+text_base(!large_font_size)
|
30
|
+
=x_large_text(!color = !base_color)
|
31
|
+
+text_base(!x_large_font_size)
|
19
32
|
=form_text
|
20
|
-
|
21
|
-
:size = !base_font_size
|
22
|
-
:family Verdana, Arial, sans-serif
|
23
|
-
:color = #000
|
33
|
+
+text_base(!base_font_size, #000)
|
24
34
|
=link_text
|
25
35
|
:text-decoration none
|
26
36
|
:color #0080dd
|
@@ -51,7 +61,7 @@
|
|
51
61
|
:padding 0
|
52
62
|
|
53
63
|
body
|
54
|
-
+
|
64
|
+
+middle_text
|
55
65
|
:position absolute
|
56
66
|
:left 0
|
57
67
|
:margin 0
|
@@ -70,6 +70,32 @@ input
|
|
70
70
|
.invisible
|
71
71
|
:display none
|
72
72
|
|
73
|
+
.middle_text
|
74
|
+
+middle_text
|
75
|
+
.small_text
|
76
|
+
+small_text
|
77
|
+
.x_small_text
|
78
|
+
+x_small_text
|
79
|
+
.large_text
|
80
|
+
+large_text
|
81
|
+
.x_large_text
|
82
|
+
+x_large_text
|
83
|
+
a.middle_text
|
84
|
+
+middle_text
|
85
|
+
+default_link
|
86
|
+
a.small_text
|
87
|
+
+small_text
|
88
|
+
+default_link
|
89
|
+
a.x_small_text
|
90
|
+
+x_small_text
|
91
|
+
+default_link
|
92
|
+
a.large_text
|
93
|
+
+large_text
|
94
|
+
+default_link
|
95
|
+
a.x_large_text
|
96
|
+
+x_large_text
|
97
|
+
+default_link
|
98
|
+
|
73
99
|
// IE対策
|
74
100
|
// ------------------------------------------------------------
|
75
101
|
iframe#ie-select-fix
|
data/lib/skip_embedded.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openskip-skip_embedded
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- MAEDA Naoki
|
@@ -11,7 +11,7 @@ autorequire:
|
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
13
|
|
14
|
-
date: 2009-07-
|
14
|
+
date: 2009-07-31 00:00:00 -07:00
|
15
15
|
default_executable: skip-gen
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
@@ -161,6 +161,7 @@ files:
|
|
161
161
|
- rails/init.rb
|
162
162
|
has_rdoc: false
|
163
163
|
homepage: http://github.com/openskip/skip_embedded/tree/master
|
164
|
+
licenses:
|
164
165
|
post_install_message:
|
165
166
|
rdoc_options:
|
166
167
|
- --title
|
@@ -192,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
192
193
|
requirements: []
|
193
194
|
|
194
195
|
rubyforge_project:
|
195
|
-
rubygems_version: 1.
|
196
|
+
rubygems_version: 1.3.5
|
196
197
|
signing_key:
|
197
198
|
specification_version: 3
|
198
199
|
summary: Utilities to collabolate SKIP, opensource buisiness SNS.
|