classiccms 0.5.17 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -23,6 +23,7 @@
|
|
23
23
|
:color #fff
|
24
24
|
:font-family AllerRegular
|
25
25
|
:overflow auto
|
26
|
+
:z-index 10000
|
26
27
|
label, label a
|
27
28
|
:font-family AllerBold
|
28
29
|
:font-size 12px
|
@@ -33,7 +34,7 @@
|
|
33
34
|
:background-color #000
|
34
35
|
@include opacity(70)
|
35
36
|
:position fixed
|
36
|
-
:z-index
|
37
|
+
:z-index 10000
|
37
38
|
|
38
39
|
#logo
|
39
40
|
:width 203px
|
@@ -42,19 +43,19 @@
|
|
42
43
|
:top 20px
|
43
44
|
:left 30px
|
44
45
|
:background-image url('/cms/images/briljandtCMS.png')
|
45
|
-
:z-index
|
46
|
+
:z-index 10100
|
46
47
|
#error, #login
|
47
48
|
:width 315px
|
48
49
|
:height 315px
|
49
50
|
:position absolute
|
50
|
-
:z-index
|
51
|
+
:z-index 10000
|
51
52
|
:left 40%
|
52
53
|
:top 30%
|
53
54
|
#error
|
54
55
|
:width 315px
|
55
56
|
:height 315px
|
56
57
|
:position absolute
|
57
|
-
:z-index
|
58
|
+
:z-index 10000
|
58
59
|
:left 40%
|
59
60
|
:top 30%
|
60
61
|
:background-image url('/cms/images/error.png')
|
@@ -89,7 +90,7 @@
|
|
89
90
|
:position absolute
|
90
91
|
:bottom 30px
|
91
92
|
:right 30px
|
92
|
-
:z-index
|
93
|
+
:z-index 10000
|
93
94
|
:font-weight bold
|
94
95
|
:cursor pointer
|
95
96
|
|
@@ -107,7 +108,7 @@
|
|
107
108
|
:top 0
|
108
109
|
:left 50%
|
109
110
|
:margin-left -352px
|
110
|
-
:z-index
|
111
|
+
:z-index 10000
|
111
112
|
.nav.top
|
112
113
|
:margin-bottom 10px
|
113
114
|
:margin-top -10px
|
@@ -223,7 +224,7 @@
|
|
223
224
|
.dropdown1
|
224
225
|
:margin-left 5px
|
225
226
|
:position relative
|
226
|
-
:z-index
|
227
|
+
:z-index 10000
|
227
228
|
:width 677px
|
228
229
|
:height auto
|
229
230
|
:float left
|
@@ -11,12 +11,24 @@ body .cke_dialog{
|
|
11
11
|
}
|
12
12
|
.cke_skin_kama .cke_dialog_body{
|
13
13
|
z-index:1;
|
14
|
+
border:solid 1px #ddd;
|
15
|
+
padding:5px;
|
16
|
+
background-color:#fff;
|
17
|
+
-moz-border-radius:5px;
|
18
|
+
-webkit-border-radius:5px;
|
19
|
+
border-radius:5px;
|
14
20
|
position:relative;
|
15
21
|
}
|
16
22
|
.cke_skin_kama .cke_dialog_tl,.cke_skin_kama .cke_dialog_tr,.cke_skin_kama .cke_dialog_tc,.cke_skin_kama .cke_dialog_bl,.cke_skin_kama .cke_dialog_br,.cke_skin_kama .cke_dialog_bc,.cke_skin_kama .cke_dialog_ml,.cke_skin_kama .cke_dialog_mr{
|
17
23
|
display:none;
|
18
24
|
}
|
19
25
|
.cke_skin_kama .cke_dialog_title{
|
26
|
+
font-weight:bold;
|
27
|
+
font-size:14px;
|
28
|
+
padding:3px 3px 8px;
|
29
|
+
cursor:move;
|
30
|
+
position:relative;
|
31
|
+
border-bottom:1px solid #eee;
|
20
32
|
}
|
21
33
|
.cke_skin_kama .cke_browser_iequirks .cke_dialog_title,.cke_skin_kama .cke_browser_ie6 .cke_dialog_title,.cke_skin_kama .cke_browser_ie7 .cke_dialog_title{
|
22
34
|
margin-bottom:22px;
|
@@ -27,8 +39,30 @@ margin-bottom:10px;
|
|
27
39
|
|
28
40
|
}
|
29
41
|
.cke_skin_kama .cke_dialog_contents{
|
42
|
+
background-color:#ebebeb;
|
43
|
+
border:solid 1px #fff;
|
44
|
+
border-bottom:none;
|
45
|
+
overflow:auto;
|
46
|
+
padding:17px 10px 5px 10px;
|
47
|
+
-moz-border-radius-topleft:5px;
|
48
|
+
-moz-border-radius-topright:5px;
|
49
|
+
-webkit-border-top-left-radius:5px;
|
50
|
+
-webkit-border-top-right-radius:5px;
|
51
|
+
border-top-left-radius:5px;
|
52
|
+
border-top-right-radius:5px;
|
53
|
+
margin-top:22px;
|
30
54
|
}
|
31
55
|
.cke_skin_kama .cke_dialog_footer{
|
56
|
+
text-align:right;
|
57
|
+
background-color:#ebebeb;
|
58
|
+
border:solid 1px #fff;
|
59
|
+
border-bottom:none;
|
60
|
+
-moz-border-radius-bottomleft:5px;
|
61
|
+
-moz-border-radius-bottomright:5px;
|
62
|
+
-webkit-border-bottom-left-radius:5px;
|
63
|
+
-webkit-border-bottom-right-radius:5px;
|
64
|
+
border-bottom-left-radius:5px;
|
65
|
+
border-bottom-right-radius:5px;
|
32
66
|
}
|
33
67
|
.cke_skin_kama .cke_rtl .cke_dialog_footer{
|
34
68
|
text-align:left;
|
@@ -513,8 +547,7 @@ margin-bottom:10px;
|
|
513
547
|
width:260px;
|
514
548
|
}
|
515
549
|
.cke_skin_kama .cke_dialog_contents a.colorChooser{
|
550
|
+
display:block;margin-top:6px;margin-left:10px;width:80px;
|
516
551
|
}
|
517
552
|
.cke_skin_kama .cke_rtl .cke_dialog_contents a.colorChooser{
|
518
553
|
margin-right:10px;}
|
519
|
-
|
520
|
-
|
@@ -1,3 +1,6 @@
|
|
1
1
|
module Classiccms
|
2
2
|
set :session_secret, 'a6d49bfcafc6ac1cae95c0b55c1069f6cc57b7866b6a6b7c1ed23dd09ad4c8c1'
|
3
|
+
$app = Dragonfly[:file].configure_with(:imagemagick)
|
4
|
+
$app.define_macro_on_include(Mongoid::Document, :file_accessor)
|
5
|
+
$app.server.url_format = '/files/:job/:basename.:format'
|
3
6
|
end
|
data/lib/classiccms/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: classiccms
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
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-
|
12
|
+
date: 2012-10-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|