refinerycms-minimalbackend 1.0.1 → 1.0.2
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.
- data/README.md +14 -2
- data/app/assets/stylesheets/refinerycms-minimal.css.erb +38 -5
- metadata +1 -1
data/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Minimal Theme for Refinery CMS backend v1
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A minimal backend theme for RefineryCMS.
|
|
4
|
+
|
|
5
|
+

|
|
4
6
|
|
|
5
7
|
## How to use this with a Refinery CMS project
|
|
6
8
|
|
|
@@ -21,5 +23,15 @@ Then, on your /config/initializers/refinery/core settings add:
|
|
|
21
23
|
## TODO
|
|
22
24
|
|
|
23
25
|
Add custom icons.
|
|
24
|
-
|
|
26
|
+
Reduce use of !important in CSS.
|
|
27
|
+
Improve documentation inside CSS.
|
|
28
|
+
Improve consistency in screens.
|
|
25
29
|
Fully test on IE.
|
|
30
|
+
|
|
31
|
+
## CHANGES
|
|
32
|
+
|
|
33
|
+
1.0.2
|
|
34
|
+
Improved comments, added more styles.
|
|
35
|
+
|
|
36
|
+
1.0.1
|
|
37
|
+
Initial version
|
|
@@ -20,15 +20,36 @@ a:hover{
|
|
|
20
20
|
}
|
|
21
21
|
.errorExplanation p, .errorExplanation li{color:#fff}
|
|
22
22
|
|
|
23
|
+
/* top bar */
|
|
24
|
+
#site_bar{
|
|
25
|
+
background:#22A7DB;
|
|
26
|
+
}
|
|
27
|
+
#editor_switch a, #editor_switch span {
|
|
28
|
+
border-radius: 1px;
|
|
29
|
+
-moz-border-radius: 1px;
|
|
30
|
+
-webkit-border-radius: 1px;
|
|
31
|
+
}
|
|
32
|
+
#editor_switch a, #editor_switch a:hover {
|
|
33
|
+
color: white;
|
|
34
|
+
background: #e7682c;
|
|
35
|
+
background-image:none;
|
|
36
|
+
border-bottom: 0px none;
|
|
37
|
+
border:none;
|
|
38
|
+
}
|
|
39
|
+
#editor_switch a:hover{
|
|
40
|
+
background:#444;
|
|
41
|
+
}
|
|
42
|
+
|
|
23
43
|
/* menu */
|
|
24
|
-
|
|
25
|
-
background:#
|
|
44
|
+
.jcarousel-clip {
|
|
45
|
+
background:#33495E;
|
|
26
46
|
}
|
|
27
47
|
#menu a{
|
|
48
|
+
font-size: 14px;
|
|
28
49
|
border-top-left-radius: 0px !important;
|
|
29
50
|
border-top-right-radius: 0px !important;
|
|
30
51
|
background:none;
|
|
31
|
-
color:#
|
|
52
|
+
color:#eee;
|
|
32
53
|
padding: 11px 13px;
|
|
33
54
|
margin-top: 0px;
|
|
34
55
|
margin-right:0;
|
|
@@ -40,6 +61,9 @@ a:hover{
|
|
|
40
61
|
#menu a:hover{
|
|
41
62
|
color:#282B3F;
|
|
42
63
|
}
|
|
64
|
+
#menu a#menu_reorder, header #menu a#menu_reorder_done {
|
|
65
|
+
margin-top: 5px;
|
|
66
|
+
}
|
|
43
67
|
|
|
44
68
|
/* container */
|
|
45
69
|
#page_container{
|
|
@@ -88,7 +112,12 @@ legend{
|
|
|
88
112
|
.nested-fields .remover{
|
|
89
113
|
float:left;
|
|
90
114
|
}
|
|
91
|
-
|
|
115
|
+
.links{
|
|
116
|
+
clear:both;
|
|
117
|
+
margin-bottom:20px;
|
|
118
|
+
margin-top:20px;
|
|
119
|
+
}
|
|
120
|
+
|
|
92
121
|
/* editing area */
|
|
93
122
|
|
|
94
123
|
.form-actions{
|
|
@@ -153,6 +182,10 @@ input.button.close_dialog:hover, a.button.close_dialog:hover, #content a.button.
|
|
|
153
182
|
text-transform:uppercase;
|
|
154
183
|
border: 1px solid #7BC1A1;
|
|
155
184
|
}
|
|
185
|
+
.actions a:hover{
|
|
186
|
+
background:none!important;
|
|
187
|
+
}
|
|
188
|
+
|
|
156
189
|
#actions li a:hover{
|
|
157
190
|
background-color:#444 !important;
|
|
158
191
|
border: 1px solid #444;
|
|
@@ -199,5 +232,5 @@ input.button.close_dialog:hover, a.button.close_dialog:hover, #content a.button.
|
|
|
199
232
|
border: none;
|
|
200
233
|
border-bottom:none !important;
|
|
201
234
|
}
|
|
202
|
-
|
|
235
|
+
|
|
203
236
|
|